﻿/* ================= ACTIVITIES PAGE ================= */


/* ================= Start hero Section CSS ================= */

    .hero-section {
        position: relative;
        min-height: 600px;
        background: url('https://sunrisedreamworldresort.com/Content/offer/outing.jpg') 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;
        margin-bottom: 400px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
        font-weight: 800;
        color: #ffffff;
        text-align:center;
        margin-bottom: 16px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 1.2rem;
        /*max-width: 640px;*/
        text-align: center;
        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 ================= */

/* ================= SUBHEADER / INTRO ================= */

    #subheader {
        padding: 70px 0 50px;
        background: #ffffff; /* no-bg safe */
    }

    #subheader .container {
        max-width: 780px;
    }

    /* small heading */
    #subheader h4 {
        font-size: 0.95rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #54999d;
        font-weight: 600;
        margin-bottom: 10px;
    }

    /* main heading */
    #subheader h2 {
        font-size: 2.3rem;
        font-weight: 700;
        color: #111827;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    /* description */
    #subheader p {
        font-size: 1.05rem;
        color: #6b7280;
        line-height: 1.7;
        margin: 0 auto;
    }

/* ================= MOBILE ================= */

    @media (max-width: 768px) {
    
        #subheader {
            padding: 55px 0 40px;
        }
    
            #subheader h2 {
                font-size: 1.85rem;
            }
    
            #subheader p {
                font-size: 1rem;
            }
    }

    @media (max-width: 480px) {
    
        #subheader h2 {
            font-size: 1.6rem;
        }
    
        #subheader h4 {
            font-size: 0.85rem;
        }
    }


/* ---------- HERO ---------- */
    .activities-hero {
        position: relative;
        min-height: 600px;
        background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('https://sunrisedreamworldresort.com/Content/offer/outing.jpg') center / cover no-repeat;
        display: flex;
        align-items: center;
        color: #fff;
    }
    
    .activities-hero-content {
        max-width: 1200px;
        margin: auto;
        padding: 0 20px;
    }

    .activities-hero-content h1 {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .activities-hero-content p {
        font-size: 1.2rem;
        max-width: 620px;
        line-height: 1.8;
        color: #f3f4f6;
    }

/* ---------- SUB HEADER ---------- */
    .activities-intro {
        padding: 70px 0 40px;
        text-align: center;
    }

    .activities-intro h4 {
        font-size: 1rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #54999d;
        margin-bottom: 8px;
    }

    .activities-intro h2 {
        font-size: 2.3rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 12px;
    }

    .activities-intro p {
        font-size: 1.05rem;
        max-width: 680px;
        margin: auto;
        color: #6b7280;
        line-height: 1.7;
    }

/* ---------- ACTIVITY GRID ---------- */
    .activities-section {
        padding: 40px 0 80px;
    }
    
    .activity-card {
        border: none;
        border-radius: 22px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 20px 45px rgba(0,0,0,0.12);
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .activity-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 65px rgba(0,0,0,0.18);
    }

    /* image */
    .activity-card img {
        height: 210px;
        object-fit: cover;
    }

    /* content */
    .activity-card .card-body {
        padding: 20px;
    }

    .activity-card .card-title {
        font-size: 1.15rem;
        font-weight: 600;
        color: #111827;
        margin-bottom: 8px;
    }

    .activity-card .card-text {
        font-size: 0.95rem;
        color: #6b7280;
        line-height: 1.6;
    }

/* ---------- MOBILE ---------- */
    @media (max-width: 768px) {
    
        .activities-hero {
            min-height: 420px;
        }
    
        .activities-hero-content h1 {
            font-size: 2.2rem;
        }
    
        .activities-intro h2 {
            font-size: 1.8rem;
        }
    
        .activity-card img {
            height: 190px;
        }
    }
    
    @media (max-width: 480px) {
    
        .activities-hero-content h1 {
            font-size: 1.9rem;
        }
    
        .activity-card img {
            height: 170px;
        }
    }
