﻿/* RESET */
img {
    max-width: 100%;
    display: block;
}

/* ================= HERO ================= */
.hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://sunrisedreamworldresort.com/Content/event/event3%20-.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        max-width: 600px;
    }

/* SECTIONS */
.event-category {
    padding: 70px 20px;
    background: #0f0f0f;
    color: #fff;
}

    .event-category.alt-bg {
        background: #0a0a0a;
    }

.container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

    .section-header h2 {
        font-size: 2.3rem;
    }

    .section-header p {
        color: #bbb;
        max-width: 800px;
        margin: auto;
    }

/* LIST */
.event-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.event-list {
    list-style: none;
    padding: 25px;
    background: #1a1a1a;
    border-radius: 10px;
}

    .event-list li {
        padding: 10px 0;
        border-bottom: 1px solid #333;
        font-size: 1rem;
    }

        .event-list li:last-child {
            border-bottom: none;
        }

/* GALLERY */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 260px;
    overflow: hidden;
    border-radius: 12px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* CTA */
.cta-section {
    padding: 80px 20px;
    background: #000;
    text-align: center;
}

.btn-cta {
    display: inline-block;
    padding: 14px 40px;
    background: #fff;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .event-hero-image {
        aspect-ratio: 4 / 5;
    }

    .event-hero-content h1 {
        font-size: 1.6rem;
    }

    .event-hero-content p {
        font-size: 0.95rem;
    }

    .event-list-grid {
        grid-template-columns: 1fr;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 220px;
    }
}
