﻿/* ================= Start Body Section CSS ================= */
    img {
        max-width: 100%;
        display: block;
    }
    
    body {
        background: #ffffff;
        color: #111827;
    }

/* ================= END Body Section CSS ================= */

/* ================= Start hero Section CSS ================= */

    .hero-section {
        position: relative;
        min-height: 600px;
        background: url('https://sunrisedreamworldresort.com/Content/event/event3%20-.jpeg') center / cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 3.2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 16px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 1.2rem;
        max-width: 640px;
        color: #e5e7eb;
        line-height: 1.7;
    }

/* ================= MOBILE FIX ================= */

    @media (max-width: 768px) {
    
        .hero-section {
            min-height: auto;
            padding: 90px 16px 70px;
            text-align: center;
        }
    
        .hero-content {
            max-width: 100%;
        }
    
        .hero-content h1 {
            font-size: 1.9rem;
            line-height: 1.3;
        }
    
        .hero-content p {
            font-size: 1rem;
            max-width: 100%;
            margin: 0 auto;
        }
    }

/* ================= End hero Section CSS ================= */

/* ================= Start Event Section CSS ================= */

    .event-category {
        padding: 50px 20px;
        background: #ffffff;
    }

    .event-category.alt-bg {
        background: #f9fafb;
    }

    .container {
        max-width: 1200px;
        margin: auto;
    }

/* ================= HEADER ================= */

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2.4rem;
        color: #111827;
        margin-bottom: 10px;
    }

    .section-header p {
        color: #6b7280;
        max-width: 800px;
        margin: auto;
        line-height: 1.7;
    }

/* ================= EVENT LIST ================= */

    .event-list-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px;
        margin-bottom: 50px;
    }

    .event-list {
        list-style: none;
        margin: 0;
        padding: 28px;
        background: #ffffff;
        border-radius: 14px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    }

    .event-list li {
        display: block; 
        width: 100%;
        padding: 12px 0 12px 30px;
        position: relative;
        font-size: 1rem;
        color: #374151;
        border-bottom: 1px solid #e5e7eb;
        line-height: 1.6;
        white-space: normal;
    }

    .event-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 12px;
        color: #16a34a;
        font-weight: bold;
        font-size: 1.05rem;
    }

    .event-list li:last-child {
        border-bottom: none;
    }
    
/* ================= GALLERY ================= */

    .image-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
    
    .gallery-item {
        height: 260px;
        overflow: hidden;
        border-radius: 16px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 14px 35px rgba(0,0,0,0.08);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-item:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 22px 45px rgba(0,0,0,0.12);
    }

/* ================= MOBILE FIX ================= */

    @media (max-width: 768px) {
    
        .hero-section {
            min-height: 420px;
        }
    
        .hero-content h2 {
            font-size: 2rem;
        }
    
        .hero-content p {
            font-size: 1rem;
        }
    
        .event-category {
            padding: 50px 14px;
        }
    
        .section-header h2 {
            font-size: 1.8rem;
        }
    
        .section-header p {
            font-size: 0.95rem;
        }
    
        .event-list-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    
        .event-list {
            padding: 22px;
        }
    
        .image-gallery {
            grid-template-columns: 1fr;
        }
    
        .gallery-item {
            height: 220px;
        }
    
    }
    
    @media (max-width: 480px) {
    
        .hero-content h2 {
            font-size: 1.7rem;
        }

    }

/* ================= END Event Section CSS ================= */
