        :root {
            --soft-green: #97A87A;
            --bright-teal: #4B9DA9;
            --cute-pink: #FDB5CE;
            --deep-blue: #16476A;
            --white: #FFFFFF;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Girassol', serif;
            color: var(--deep-blue);
            background: var(--white);
            overflow-x: hidden;
            scroll-behavior: smooth;
            line-height: 1.4;
        }

        /* FIXED HERO SECTION */
        .hero {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        /* Background slider full cover - FIXED */
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-slider .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-slider .slide.active {
            opacity: 1;
            z-index: 1;
        }

        /* Dark overlay for readability */
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 2;
        }

        /* Content above everything */
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 6rem;
            line-height: 1;
        }

        .hero p {
            font-size: 1.8rem;
            margin-top: 20px;
        }

        .floating-icon {
            position: absolute;
            z-index: 3;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(15deg); }
        }
        h1, h2, h3, h4 { font-weight: 400; text-transform: uppercase; }
        p { font-size: 1.1rem; }

        /* --- Header & Navigation --- */
        header {
            position: fixed; top: 20px; left: 5%; width: 90%;
            padding: 15px 30px;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000;
        }

.logo-bubble {
    color: var(--deep-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.logo-bubble:hover {
    transform: scale(1.05);
}

/* Logo Image */
.logo-img {
    height: 120px;
    width: auto;
    display: block;
}
        .menu-trigger {
            width: 50px; height: 50px;
            background: var(--cute-pink);
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: grid; place-items: center;
            transition: var(--transition);
        }
        .menu-trigger:hover { transform: scale(1.1) rotate(90deg); }

        #full-menu {
            position: fixed; inset: 0;
            background: var(--bright-teal);
            z-index: 2000;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
        }

        .menu-item {
            font-size: 4rem;
            margin: 15px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .menu-item:hover { transform: scale(1.2); color: var(--cute-pink); }


        .hero h1 { font-size: 6rem; line-height: 0.9; margin-bottom: 20px; }
        .hero p { font-size: 1.8rem; max-width: 700px; }

        .floating-icon {
            position: absolute; opacity: 0.6;
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(15deg); }
        }

        .btn-pill {
            background: var(--cute-pink);
            color: var(--deep-blue);
            border: none;
            padding: 20px 50px;
            border-radius: 100px;
            font-size: 1.5rem;
            font-family: 'Girassol', serif;
            cursor: pointer;
            margin-top: 40px;
            transition: var(--transition);
            box-shadow: 0 10px 0 #e08ba8;
        }
        .btn-pill:hover { transform: translateY(-5px); box-shadow: 0 15px 0 #e08ba8; }
        .btn-pill:active { transform: translateY(5px); box-shadow: 0 0 0 #e08ba8; }

        /* --- Layout Dividers --- */
        .wave-container { line-height: 0; width: 100%; fill: var(--white); }
        .wave-container.teal { fill: var(--bright-teal); }
        .wave-container.pink { fill: var(--cute-pink); }
        .wave-container.green { fill: var(--soft-green); }

        /* --- Programs Section --- */
        .programs { background: var(--bright-teal); padding: 100px 10%; color: white; }
        .grid-adventure {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .prog-card {
            background: white;
            padding: 40px;
            border-radius: 40px;
            color: var(--deep-blue);
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }
        .prog-card:nth-child(even) { transform: rotate(3deg); }
        .prog-card:nth-child(odd) { transform: rotate(-3deg); }
        .prog-card:hover { transform: rotate(0deg) scale(1.05); }

        .prog-icon {
            width: 80px; height: 80px;
            background: var(--cute-pink);
            border-radius: 50%;
            margin: -70px auto 20px;
            display: grid; place-items: center;
            border: 5px solid white;
        }

        /* --- Interactive Orbit --- */
        .orbit-section { padding: 150px 10%; text-align: center; position: relative; }
        .orbit-container {
            width: 500px; height: 500px;
            margin: 50px auto;
            border: 2px dashed #ddd;
            border-radius: 50%;
            position: relative;
            display: flex; justify-content: center; align-items: center;
        }
        .orbit-center {
            width: 200px; height: 200px;
            background: var(--bright-teal);
            border-radius: 50%;
            color: white;
            display: flex; flex-direction: column; justify-content: center;
            font-size: 1.8rem;
            z-index: 5;
        }
        .orbit-card {
            position: absolute;
            width: 120px; height: 120px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            display: grid; place-items: center;
            animation: orbit-animation 20s linear infinite;
        }

        @keyframes orbit-animation {
            from { transform: rotate(0deg) translateX(250px) rotate(0deg); }
            to { transform: rotate(360deg) translateX(250px) rotate(-360deg); }
        }

        /* --- Activities Section --- */
        .activities { background: var(--cute-pink); padding: 100px 10%; }
        .asym-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 30px;
            margin-top: 50px;
        }
        .big-act { background: white; border-radius: 40px; padding: 50px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 500px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
        .act-stack { display: flex; flex-direction: column; gap: 30px; }
        .small-act { background: white; border-radius: 30px; padding: 25px; flex: 1; display: flex; align-items: center; gap: 20px; }
        
        .glow-border { border: 4px solid transparent; animation: border-glow 3s infinite; }
        @keyframes border-glow {
            0%, 100% { border-color: var(--bright-teal); }
            50% { border-color: white; }
        }

        /* --- Auth & Modals --- */
        #auth-modal, #quick-modal {
            position: fixed; inset: 0; background: rgba(22, 71, 106, 0.9);
            z-index: 3000; display: none; align-items: center; justify-content: center;
            padding: 20px;
        }
        .modal-box {
            background: white; padding: 50px; border-radius: 40px;
            width: 100%; max-width: 500px; position: relative;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }
        .input-group { margin-bottom: 20px; }
        .input-group label { display: block; margin-bottom: 8px; color: var(--deep-blue); }
        .input-group input {
            width: 100%; padding: 15px; border-radius: 15px; border: 3px solid #eee;
            font-family: inherit; font-size: 1.1rem; outline: none;
        }
        .input-group input:focus { border-color: var(--bright-teal); }

        /* --- Parents Section --- */
        .parents { background: var(--soft-green); padding: 120px 10%; color: white; display: flex; align-items: center; gap: 80px; flex-wrap: wrap; }
        .blob-img { width: 100%; max-width: 500px; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; overflow: hidden; border: 10px solid var(--white); }

        /* --- Footer --- */
        footer { background: var(--bright-teal); padding: 100px 10% 40px; color: white; position: relative; border-radius: 100px 100px 0 0; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; }
        .footer-link { display: block; margin-bottom: 10px; text-decoration: none; color: white; opacity: 0.8; transition: 0.3s; }
        .footer-link:hover { opacity: 1; transform: translateX(5px); }

        /* Transitions */
        .page { display: none; }
        .page.active { display: block; }
        .reveal { opacity: 0; transform: translateY(30px); transition: 0.8s; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* HERO */
.programs-hero {
    background: linear-gradient(135deg, var(--bright-teal), var(--deep-blue));
    padding: 180px 10% 120px;
    color: white;
}

.programs-hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
}

.programs-hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin-bottom: 50px;
}

/* FILTER TABS */
.filter-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tabs button {
    padding: 12px 28px;
    border-radius: 40px;
    border: none;
    background: white;
    color: var(--deep-blue);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.filter-tabs button.active,
.filter-tabs button:hover {
    background: var(--soft-green);
    color: white;
}

/* STATS */
.program-stats {
    display: flex;
    justify-content: space-around;
    padding: 60px 10%;
    background: white;
    text-align: center;
}

.program-stats h2 {
    font-size: 3rem;
    color: var(--deep-blue);
}

/* GRID WRAPPER */
.programs-wrapper {
    padding: 100px 10%;
}

/* FEATURED */
.featured-program {
    display: flex;
    gap: 60px;
    padding: 120px 10%;
    background: var(--pastel-bg);
    align-items: center;
    flex-wrap: wrap;
}

.featured-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 40px;
}

.featured-content {
    flex: 1;
    min-width: 300px;
}

.featured-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* LEARNING PATH */
.learning-path {
    padding: 120px 10%;
    background: var(--deep-blue);
    color: white;
    text-align: center;
}

.learning-path h2 {
    font-size: 3rem;
    margin-bottom: 60px;
}

.path-steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.path-steps div {
    max-width: 250px;
}

.path-steps span {
    font-size: 3rem;
    font-weight: bold;
    color: var(--bright-teal);
}

/* ACTIVITIES PAGE */

.activities-hero {
    background: linear-gradient(135deg, var(--cute-pink), var(--bright-teal));
    padding: 180px 10% 120px;
    text-align: center;
    color: white;
}

.activities-hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
}

.activities-hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: auto;
}

.activities-filter {
    padding: 50px 10%;
    text-align: center;
}

.activities-filter button {
    padding: 12px 28px;
    border-radius: 40px;
    border: none;
    margin: 10px;
    background: var(--soft-green);
    color: white;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.activities-filter button.active,
.activities-filter button:hover {
    background: var(--deep-blue);
}

.activities-wrapper {
    padding: 80px 10%;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.activity-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-10px);
}

/* FEATURED */
.featured-activity {
    display: flex;
    gap: 60px;
    padding: 120px 10%;
    background: var(--pastel-bg);
    align-items: center;
    flex-wrap: wrap;
}

.feat-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 40px;
}

.feat-content {
    flex: 1;
    min-width: 300px;
}

/* BOARD */
.activity-board {
    padding: 120px 10%;
    background: var(--deep-blue);
    color: white;
    text-align: center;
}

.board-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.board-grid div {
    background: var(--bright-teal);
    padding: 40px;
    border-radius: 30px;
}

        @media (max-width: 800px) {
            .hero h1 { font-size: 3.5rem; }
            .asym-grid { grid-template-columns: 1fr; }
            .orbit-container { transform: scale(0.6); }
        }
        /* FOOTER MODAL */
#footer-modal {
    position: fixed;
    inset: 0;
    background: rgba(22, 71, 106, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    padding: 20px;
}

.footer-modal-box {
    background: white;
    max-width: 700px;
    width: 100%;
    padding: 50px;
    border-radius: 40px;
    position: relative;
    animation: popupFade 0.4s ease;
}

.footer-modal-box h2 {
    margin-bottom: 20px;
    color: var(--deep-blue);
}

.footer-modal-box p {
    margin-bottom: 15px;
    color: var(--deep-blue);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: var(--cute-pink);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

@keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
