/* Activities Page Specific Styles */

body {
    background-color: var(--primary-red);
    color: #fff;
}

/* --- Hero Section --- */
.activities-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-red);
    height: 95vh;
}

.hero-label-our-wrapper {
    position: absolute;
    top: -45px;
    left: 48%;
    transform: translateX(-50%) rotate(-5deg);
    z-index: 10;
    display: flex;
    align-items: center;
}

.hero-label-our {
    font-family: 'Montserrat';
    font-weight: 900;
    background: #282828;
    color: #fff;
    padding: 8px 15px;
    font-size: 1.8rem;
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 5% 100%);
}

.hero-label-chili {
    width: 40px;
    height: auto;
    margin-left: -10px;
    margin-top: -10px;
    filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.2));
}

.hero-title {
    font-family: 'Montserrat';
    font-size: 10.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    line-height: 0.85;
    color: #fff;
    /* Simulate stroke with shadows to avoid internal path artifacts */
    text-shadow:
        -4px -4px 0 #282828,
        4px -4px 0 #282828,
        -4px 4px 0 #282828,
        4px 4px 0 #282828,
        10px 10px 0 #282828;
    letter-spacing: -3px;
    paint-order: stroke fill;
}

.hero-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto;
}

.hero-desc {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 500;
    color: #fff;
    margin: 0;
    padding: 0 40px;
}

.hero-info-capsule {
    display: flex;
    flex-direction: column;
    background: #282828;
    color: #fff;
    padding: 30px 60px;
    border-radius: 15px;
    width: fit-content;
    margin: 40px auto 0;
    gap: 15px;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
    clip-path: polygon(0% 0%, 100% 5%, 98% 100%, 2% 95%);
}

.capsule-date {
    font-family: 'Montserrat';
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.capsule-location {
    font-family: 'Montserrat';
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.capsule-location i {
    color: var(--primary-red);
}

/* --- Activities List --- */
.activities-list {
    padding: 100px 0;
    background-color: var(--primary-red);
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}

.list-bg-deco {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    opacity: 0.9;
}

.bg-burst-1 {
    top: 5%;
    left: -10%;
    width: 800px;
    height: 800px;
    background-image: url('assets/decoration/black-splash.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(15deg);
}

.bg-burst-2 {
    bottom: 30%;
    right: -15%;
    width: 900px;
    height: 900px;
    background-image: url('assets/decoration/black-splash.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-20deg);
}

.cards-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.activity-card {
    background: #fff;
    color: #282828;
    border: 5px solid #282828;
    border-radius: 25px;
    padding: 40px;
    max-width: 850px;
    width: 90%;
    margin: 0 auto;
    min-height: auto;
    box-shadow: 15px 15px 0 #282828;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translate(-5px, -5px) scale(1.02);
    box-shadow: 20px 20px 0 #282828;
}

/* Alternating Rotations */
.card-left {
    transform: rotate(-2deg);
}

.card-right {
    transform: rotate(2deg);
}

.card-deco {
    position: absolute;
    z-index: 10;
    width: 120px;
    filter: drop-shadow(6px 6px 0 rgba(0, 0, 0, 0.2));
}

.deco-top-right {
    top: -40px;
    right: -40px;
    transform: rotate(15deg);
}

.deco-mid-left {
    top: 50%;
    left: -60px;
    transform: translateY(-50%) rotate(-15deg);
}

.deco-bottom-right {
    bottom: -30px;
    right: -50px;
    transform: rotate(-10deg);
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.act-title {
    font-family: 'Montserrat';
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.title-icon {
    font-size: 2.5rem;
}

.act-desc {
    text-align: justify;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 30px;
    max-width: 95%;
}

.act-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.act-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.act-date {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 1.4rem;
    color: #666;
}

.act-time-pill {
    background: var(--primary-red);
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.act-image-placeholder {
    width: 280px;
    height: 240px;
    aspect-ratio: 4/3;
    border-radius: 10px;
    border: none;
}

/* --- Footer --- */
/* Global footer styling from style.css handles these elements now */

/* --- Location Section --- */
.location-section {
    background: #1a1a1a;
    /* Darker background */
    color: #fff;
    padding: 120px 0 80px;
    margin-top: -80px;
    /* Overlap with previous section for slant */
    position: relative;
    z-index: 5;
    clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 100%);
}

.location-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1100px !important;
    margin: 0 auto;
}

.location-text {
    flex: 1;
    text-align: left;
}

.loc-date {
    font-family: 'Montserrat';
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.loc-title {
    font-family: 'Montserrat';
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.loc-desc {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ccc;
    max-width: 400px;
}

.loc-sub {
    font-size: 1.2rem;
    font-weight: 500;
    color: #888;
}

.location-map {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 16/10;
    background: #fff;
    border-radius: 10px;
    border: 8px solid #fff;
    /* White border for map */
    box-shadow: 20px 20px 0 #282828;
    overflow: hidden;
    position: relative;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.w-100 {
    width: 100%;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
        -webkit-text-stroke: 2px #282828;
        text-shadow: 4px 4px 0 #282828;
        display: flex;
        justify-content: center;
    }

    .hero-container {
        width: 100%;
    }

    .hero-label-our {
        font-size: 1.2rem;
        top: -15px;
        padding: 5px 12px;
    }

    .hero-info-capsule {
        width: 100%;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .capsule-date {
        font-size: 1.6rem;
    }

    .capsule-location {
        font-size: 1.2rem;
    }

    .activities-list {
        padding: 60px 0;
    }

    .activity-card {
        padding: 25px;
        width: 95%;
    }

    .act-title {
        font-size: 2.2rem;
    }

    .act-desc {
        font-size: 1.1rem;
        text-align: justify;
    }

    .act-details {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .act-image-placeholder {
        width: 100%;
        max-width: 400px;
    }

    .category-deco {
        width: 80px;
        right: -20px;
        top: -20px;
    }

    .bg-burst-1,
    .bg-burst-2 {
        width: 300px;
        height: 300px;
    }

    .location-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
        width: 100%;
    }

    .location-text {
        text-align: center;
    }

    .loc-date,
    .loc-title {
        justify-content: center;
        font-size: 2rem;
    }

    .loc-desc {
        max-width: 100%;
        font-size: 1.2rem;
    }

    .location-section {
        padding: 100px 0 60px;
        clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
    }

    .location-map {
        max-width: 100%;
        border-width: 5px;
        box-shadow: 10px 10px 0 #282828;
    }
}