/* Page-specific styles for ae.html - fonts loaded via base.css */
:root {
    --off_black: #040302;
    --darkest_brown: #242011;
    --dark_olive: #484B28;
    --light_olive: #6F714C;
    --plaster: #E4E2D4;
    --dark_concrete: #969481;
    --light_concrete: #C4C0AB;
    --metc_red: #DE240A;
    --metc_gold: #D59341;

    --davys-gray: #555051ff;
    --tiffany-blue: #B3DBCEff;
    --baby-powder: #F6F7F2ff;
    --khaki: #B1A280ff;
    --celadon: #B3D9C6ff;
    --tiffany-blue-2: #9AD4C0ff;
    --tiffany-blue-3: #88CEB5ff;
    --slate-gray: #6B7F94ff;
    --olivine: #7FB67Cff;

    /* Vibrant banner-inspired colors */
    --banner-teal: #2A9D8F;
    --banner-teal-dark: #1A7A6E;
    --banner-teal-light: #5BC0B5;
    --banner-yellow: #FFD93D;
    --banner-gold: #F4A100;
    --banner-cream: #FFF8E7;
    --banner-navy: #264653;
    --banner-coral: #E76F51;
    --banner-peach: #F4A261;

    /* Navbar/Dropdown theming */
    --navbar-bg: var(--banner-teal);
    --dropdown-bg: var(--banner-teal-dark);
    --dropdown-text: white;
}

/* ========================================
   PLAYFUL FONT FAMILIES - BOLD & FUN
   ======================================== */
.text_montserrat {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-weight: 500;
}

.text_dancing {
    font-family: 'Baloo 2', "Dancing Script", cursive;
    font-weight: 700;
}

.text_fredoka {
    font-family: 'Fredoka', sans-serif;
}

.text_baloo {
    font-family: 'Baloo 2', cursive;
}

.text_nunito {
    font-family: 'Nunito', sans-serif;
}

body {
    width: 100%;
    height: 100%;
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-weight: 400;
    color: var(--banner-navy);
}

/* Apply playful fonts throughout - BOLDER */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    color: var(--banner-navy);
}

.card-title {
    font-family: 'Baloo 2', cursive !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    color: var(--banner-teal-dark) !important;
}

p, li, .card-text {
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--banner-navy);
}

/* Playful links throughout the page */
a {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    color: var(--banner-teal-dark);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--banner-coral);
    transform: scale(1.02);
}

/* Bold text styling */
strong, b {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    color: var(--banner-teal-dark);
}

/* Form elements */
input, button, select, textarea {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
}

/* ========================================
   HIGH CONTRAST SECTIONS
   ======================================== */
.navbar {
    background-color: var(--banner-teal) !important;
}

.navbar .nav-link {
    color: white !important;
    font-weight: 600 !important;
}

.navbar-brand span {
    color: var(--banner-yellow) !important;
    -webkit-text-fill-color: var(--banner-yellow) !important;
    text-shadow: 2px 2px 0 var(--banner-navy);
}

#home-section {
    background: linear-gradient(135deg, var(--banner-cream) 0%, #fff 100%);
}

#mission-section {
    background: linear-gradient(135deg, var(--banner-teal) 0%, var(--banner-teal-dark) 100%);
    color: white;
}

#about-section {
    background: linear-gradient(180deg, var(--banner-peach) 0%, var(--banner-cream) 100%);
    padding-top: 75px;
}

#media-section {
    background: var(--banner-cream);
}

#social-section {
    background: linear-gradient(135deg, var(--banner-navy) 0%, #1d3a47 100%);
    color: white;
}

#banner-section {
    background: linear-gradient(180deg, var(--banner-teal-light) 0%, var(--banner-teal) 100%);
    padding: 2rem 0;
}

#program-section {
    padding-top: 75px;
    background: linear-gradient(180deg, var(--banner-cream) 0%, #fff 50%, var(--banner-cream) 100%);
}

.curve {
	width: 25%;
	height: auto;
	float: left;
	margin-right:2rem;
	shape-outside:circle();
}

#mc-embedded-subscribe {
    background-color: var(--baby-powder);
}

#link-ad-top{
    color: var(--dark_olive);
}

.card_background{
    background-color: var(--slate-gray);
}

.card1{
    background-color: var(--celadon);
    border-color: var(--tiffany-blue);
}

.card2{
    background-color: var(--baby-powder);
}

.small_font{
    font-size: .85em;
}

/* ========================================
   AVALEURS D'ÉTOILES - MAGICAL FALLING STARS
   ======================================== */
.stars-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1000;
}

.star {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: fall linear infinite, twinkle ease-in-out infinite;
}

/* Yellow stars - matching the banner stars */
.star {
    background: linear-gradient(135deg, #ffd93d, #ffb800);
    box-shadow: 0 0 10px rgba(255, 217, 61, 0.9),
                0 0 20px rgba(255, 184, 0, 0.6),
                0 0 30px rgba(255, 217, 61, 0.5);
}

/* Slight variations in brightness for visual interest */
.star:nth-child(odd) {
    background: linear-gradient(135deg, #ffe066, #ffc800);
    box-shadow: 0 0 12px rgba(255, 224, 102, 0.95),
                0 0 24px rgba(255, 200, 0, 0.7),
                0 0 35px rgba(255, 224, 102, 0.5);
}

.star:nth-child(3n) {
    background: linear-gradient(135deg, #ffd93d, #e6a800);
    box-shadow: 0 0 10px rgba(255, 217, 61, 0.9),
                0 0 20px rgba(230, 168, 0, 0.6),
                0 0 30px rgba(255, 217, 61, 0.4);
}

/* Star positions and timings - larger sizes for visibility */
.star:nth-child(1) { left: 10%; animation-duration: 8s, 2s; animation-delay: 0s; width: 6px; height: 6px; }
.star:nth-child(2) { left: 20%; animation-duration: 12s, 1.5s; animation-delay: 1s; width: 10px; height: 10px; }
.star:nth-child(3) { left: 30%; animation-duration: 10s, 2.5s; animation-delay: 2s; width: 8px; height: 8px; }
.star:nth-child(4) { left: 40%; animation-duration: 14s, 1.8s; animation-delay: 0.5s; width: 6px; height: 6px; }
.star:nth-child(5) { left: 50%; animation-duration: 9s, 2.2s; animation-delay: 3s; width: 12px; height: 12px; }
.star:nth-child(6) { left: 60%; animation-duration: 11s, 1.6s; animation-delay: 1.5s; width: 10px; height: 10px; }
.star:nth-child(7) { left: 70%; animation-duration: 13s, 2.8s; animation-delay: 2.5s; width: 6px; height: 6px; }
.star:nth-child(8) { left: 80%; animation-duration: 10s, 1.4s; animation-delay: 0.8s; width: 8px; height: 8px; }
.star:nth-child(9) { left: 90%; animation-duration: 15s, 2.1s; animation-delay: 4s; width: 12px; height: 12px; }
.star:nth-child(10) { left: 15%; animation-duration: 11s, 1.9s; animation-delay: 3.5s; width: 8px; height: 8px; }
.star:nth-child(11) { left: 25%; animation-duration: 9s, 2.4s; animation-delay: 1.2s; width: 6px; height: 6px; }
.star:nth-child(12) { left: 35%; animation-duration: 13s, 1.7s; animation-delay: 2.8s; width: 10px; height: 10px; }
.star:nth-child(13) { left: 45%; animation-duration: 10s, 2.6s; animation-delay: 0.3s; width: 12px; height: 12px; }
.star:nth-child(14) { left: 55%; animation-duration: 12s, 1.3s; animation-delay: 4.5s; width: 8px; height: 8px; }
.star:nth-child(15) { left: 65%; animation-duration: 14s, 2.3s; animation-delay: 1.8s; width: 6px; height: 6px; }
.star:nth-child(16) { left: 75%; animation-duration: 8s, 1.5s; animation-delay: 3.2s; width: 10px; height: 10px; }
.star:nth-child(17) { left: 85%; animation-duration: 11s, 2.7s; animation-delay: 0.6s; width: 12px; height: 12px; }
.star:nth-child(18) { left: 95%; animation-duration: 10s, 1.8s; animation-delay: 2.2s; width: 8px; height: 8px; }
.star:nth-child(19) { left: 5%; animation-duration: 13s, 2.0s; animation-delay: 5s; width: 6px; height: 6px; }
.star:nth-child(20) { left: 88%; animation-duration: 9s, 1.6s; animation-delay: 1.4s; width: 10px; height: 10px; }

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(0vh) rotate(36deg) scale(1);
    }
    50% {
        transform: translateY(50vh) rotate(180deg) scale(1.1);
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(110vh) rotate(360deg) scale(0.8);
        opacity: 0;
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.6;
        filter: brightness(1.5);
    }
}

/* ========================================
   AE PAGE ENHANCEMENTS
   ======================================== */

/* Page-specific glow */
:root {
    --shadow-glow-teal: 0 0 25px rgba(154, 212, 192, 0.4);
}

/* Hero enhancement */
.hero-ae {
    position: relative;
    z-index: 1;
}

.hero-ae::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(179, 217, 198, 0.1),
        rgba(136, 206, 181, 0.15)
    );
    pointer-events: none;
}

/* Enhanced cards for AE page */
.ae-card {
    background: var(--celadon);
    backdrop-filter: var(--glass-blur-md);
    -webkit-backdrop-filter: var(--glass-blur-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal),
                box-shadow var(--transition-normal);
    overflow: hidden;
}

.ae-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-teal);
}

/* Program section cards */
.program-card {
    position: relative;
    overflow: hidden;
}

.program-card .card-img-wrapper {
    aspect-ratio: 3/4;
}

/* Button style for AE page */
.btn-ae {
    background: linear-gradient(135deg, var(--tiffany-blue-2), var(--olivine));
    border: none;
    border-radius: var(--radius-md);
    padding: 0.875rem 1.75rem;
    font-weight: 500;
    color: var(--metc-black);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.btn-ae:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
    color: var(--metc-black);
}

/* ========================================
   PLAYFUL NAVBAR FOR FAMILIES
   ======================================== */
.navbar {
    background: var(--banner-teal) !important;
    border-bottom: 4px solid var(--banner-yellow);
    box-shadow: 0 4px 20px rgba(38, 70, 83, 0.3);
}

.navbar-brand span {
    font-family: 'Baloo 2', cursive !important;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--banner-yellow) !important;
    -webkit-text-fill-color: var(--banner-yellow) !important;
    text-shadow: 2px 2px 0 var(--banner-navy);
}

.navbar .nav-link {
    font-family: 'Baloo 2', cursive !important;
    font-weight: 600;
    font-size: 1.05rem;
    color: white !important;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem !important;
}

.navbar .nav-link:hover {
    background: var(--banner-yellow);
    color: var(--banner-navy) !important;
    transform: translateY(-2px) scale(1.05);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--banner-coral);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after {
    width: 80%;
}

/* Ensure content is above stars */
main, .navbar, footer {
    position: relative;
    z-index: 1;
}

/* ========================================
   PLAYFUL NEWSLETTER SECTION
   ======================================== */
.newsletter-section-ae {
    background: linear-gradient(
        135deg,
        var(--banner-coral) 0%,
        var(--banner-peach) 50%,
        var(--banner-gold) 100%
    );
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

/* Floating decorative stars */
.newsletter-section-ae::before,
.newsletter-section-ae::after {
    position: absolute;
    font-size: 3.5rem;
    opacity: 0.6;
    animation: floatNewsletter 5s ease-in-out infinite;
}

.newsletter-section-ae::before {
    content: '⭐';
    top: 15%;
    left: 8%;
}

.newsletter-section-ae::after {
    content: '🌟';
    bottom: 15%;
    right: 8%;
    animation-delay: 2.5s;
}

@keyframes floatNewsletter {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

.newsletter-card-ae {
    background: white;
    border: 4px solid var(--banner-teal);
    border-radius: 30px;
    padding: var(--space-xl);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 15px 50px rgba(38, 70, 83, 0.25),
                8px 8px 0 var(--banner-navy);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.newsletter-card-ae:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 0 25px 60px rgba(38, 70, 83, 0.3),
                12px 12px 0 var(--banner-teal-dark);
}

.newsletter-title-ae {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--banner-teal-dark);
    margin-bottom: var(--space-sm);
    text-shadow: 2px 2px 0 var(--banner-yellow);
}

.newsletter-title-ae::before {
    content: '✉️ ';
}

.newsletter-subtitle-ae {
    font-family: 'Fredoka', sans-serif;
    color: var(--banner-navy);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.newsletter-form-ae {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 576px) {
    .newsletter-form-ae {
        flex-direction: row;
        align-items: stretch;
    }
}

.newsletter-input-ae {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 3px solid var(--banner-teal);
    border-radius: 20px;
    background: var(--banner-cream);
    color: var(--banner-navy);
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-input-ae::placeholder {
    color: var(--banner-teal-dark);
    opacity: 0.7;
}

.newsletter-input-ae:focus {
    outline: none;
    border-color: var(--banner-coral);
    background: white;
    box-shadow: 0 0 0 4px rgba(231, 111, 81, 0.2);
    transform: scale(1.02);
}

.newsletter-btn-ae {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--banner-teal), var(--banner-teal-dark));
    color: white;
    border: none;
    border-radius: 20px;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(42, 157, 143, 0.4),
                4px 4px 0 var(--banner-navy);
    letter-spacing: 0.5px;
}

.newsletter-btn-ae:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(42, 157, 143, 0.5),
                6px 6px 0 var(--banner-teal-dark);
    background: linear-gradient(135deg, var(--banner-coral), var(--banner-peach));
}

.newsletter-btn-ae:active {
    transform: translateY(-2px) scale(1.02);
}

/* ========================================
   PLAYFUL FOOTER FOR FAMILIES
   ======================================== */
.footer-ae {
    background: linear-gradient(
        180deg,
        var(--banner-navy) 0%,
        #1a3640 100%
    );
    padding: var(--space-2xl) 0 var(--space-lg);
    color: white;
    --footer-accent: var(--banner-yellow);
    position: relative;
    overflow: hidden;
}

/* Decorative top border */
.footer-ae::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--banner-yellow),
        var(--banner-gold),
        var(--celadon),
        var(--tiffany-blue-2),
        var(--olivine)
    );
}

.footer-ae a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Fredoka', sans-serif;
}

.footer-ae a:hover {
    color: var(--banner-yellow);
    transform: translateX(4px);
}

.footer-ae .footer-col h3 {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    color: var(--banner-yellow);
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
}

.footer-ae .footer-col h3::after {
    content: ' ⭐';
    font-size: 0.8em;
}

.footer-ae .footer-col p {
    font-family: 'Fredoka', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 400;
}

.footer-ae .footer-col a {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
}

.footer-ae .footer-social-base a {
    background: var(--banner-teal);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.3rem;
}

.footer-ae .footer-social-base a:hover {
    background: var(--banner-yellow);
    color: var(--banner-navy);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 25px rgba(255, 217, 61, 0.5);
}

.footer-ae .footer-bottom-base {
    border-top: 3px dashed var(--banner-teal);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
}

.footer-ae .footer-bottom-base p {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Fredoka', sans-serif;
}

.footer-ae .footer-bottom-base p::before {
    content: '⭐ ';
}

.footer-ae .footer-bottom-base p::after {
    content: ' ⭐';
}

/* ========================================
   PLAYFUL PROGRAM CARDS FOR FAMILIES
   ======================================== */
#program-section .card {
    background: white;
    border: 4px solid var(--banner-teal);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(38, 70, 83, 0.15),
                8px 8px 0 var(--banner-yellow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    overflow: hidden;
    position: relative;
}

/* Make card rows stretch to equal height */
#program-section .card > .row {
    min-height: 100%;
}

#program-section .card .row.g-0 {
    display: flex;
    flex-wrap: wrap;
}

/* Make all columns stretch to full height */
#program-section .card .row.g-0 > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Playful bounce on hover */
#program-section .card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(38, 70, 83, 0.2),
                12px 12px 0 var(--banner-gold);
    border-color: var(--banner-coral);
}

/* Wiggle animation on hover */
#program-section .card:hover .img-fluid {
    animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg) scale(1.02); }
    75% { transform: rotate(2deg) scale(1.02); }
}

/* Card images - more rounded and fun */
#program-section .card .img-fluid {
    border-radius: 16px;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--banner-cream);
}

#program-section .card-title {
    color: var(--banner-teal-dark) !important;
    position: relative;
    font-size: 1.4rem !important;
}

/* Fun star decoration after titles */
#program-section .card-title::after {
    content: ' ⭐';
    font-size: 0.8em;
}

/* Card body fills entire column */
#program-section .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Middle column (tickets section) - gradient background */
#program-section .card .col-lg-3:not(:first-child) {
    background: linear-gradient(180deg, white 0%, var(--banner-cream) 100%);
}

/* Right column (description) - different gradient, fills full height */
#program-section .card .col-lg-6 {
    background: linear-gradient(135deg, var(--banner-cream) 0%, white 50%, var(--banner-cream) 100%);
    display: flex;
    align-items: center;
}

/* Description card-body - centered and consistent */
#program-section .card .col-lg-6 .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
}

/* Consistent description text styling */
#program-section .card .col-lg-6 .card-text,
#program-section .card .col-lg-6 p {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--banner-navy);
    text-align: justify;
    margin: 0;
}

/* Image column - centered */
#program-section .card .col-lg-3:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#program-section .card a {
    color: var(--banner-teal-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
}

#program-section .card a:hover {
    color: white;
    background: var(--banner-coral);
    transform: translateX(4px);
}

/* Age badge styling */
.age-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--banner-coral), var(--banner-peach));
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(231, 111, 81, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Ticket link styling - make it look like a fun button */
#program-section .card .border-bottom {
    border-bottom: 3px dashed var(--banner-teal-light) !important;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

#program-section .card hr {
    border-color: var(--banner-teal-light);
    border-width: 2px;
    border-style: dashed;
}

/* ========================================
   PLAYFUL BANNER SECTION
   ======================================== */
#banner-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--banner-teal-light) 0%, var(--banner-teal) 100%);
}

/* Decorative floating elements around banner */
#banner-section::before,
#banner-section::after {
    content: '⭐';
    position: absolute;
    font-size: 2.5rem;
    color: var(--banner-yellow);
    text-shadow: 0 0 10px rgba(255, 217, 61, 0.6);
    animation: floatStar 4s ease-in-out infinite;
}

#banner-section::before {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

#banner-section::after {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes floatStar {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(20deg);
        opacity: 1;
    }
}

#banner-section .rounded-pill {
    box-shadow: 0 15px 50px rgba(38, 70, 83, 0.4),
                0 0 0 6px var(--banner-yellow);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.3s ease;
    border-radius: 50px;
}

#banner-section .rounded-pill:hover {
    transform: scale(1.03) rotate(-0.5deg);
    box-shadow: 0 25px 60px rgba(107, 127, 148, 0.35),
                0 0 0 5px rgba(127, 182, 124, 0.4);
}

/* ========================================
   PLAYFUL HOME SECTION
   ======================================== */
#home-section {
    position: relative;
    padding: 3rem 0;
}

#home-section h1 {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 2rem;
    color: var(--banner-teal-dark);
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 0 var(--banner-yellow);
}

#home-section h1::before {
    content: '⭐';
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

#home-section h1::after {
    content: '⭐';
    margin-left: 0.75rem;
    font-size: 1.5rem;
}

#home-section p {
    font-family: 'Fredoka', sans-serif;
    color: var(--banner-navy);
    line-height: 1.9;
    font-size: 1.15rem;
    font-weight: 400;
}

/* ========================================
   WHIMSICAL MISSION SECTION
   ======================================== */
#mission-section {
    background: linear-gradient(
        135deg,
        var(--banner-teal) 0%,
        var(--banner-teal-dark) 100%
    );
    position: relative;
    padding: 3rem 0;
}

#mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--banner-yellow),
        var(--banner-gold),
        var(--banner-coral),
        var(--banner-gold),
        var(--banner-yellow)
    );
}

#mission-section h2 {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    color: var(--banner-yellow);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
    font-size: 2rem;
    text-shadow: 2px 2px 0 var(--banner-navy);
}

#mission-section h2::before {
    content: '🌟 ';
}

#mission-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--banner-yellow), var(--banner-coral));
    border-radius: 4px;
}

#mission-section li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
}

#mission-section li:hover {
    transform: translateX(10px);
}

#mission-section li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--banner-yellow);
    font-size: 1.2rem;
    animation: twinkleStar 2s ease-in-out infinite;
}

#mission-section li:nth-child(odd)::before {
    animation-delay: 0.5s;
}

@keyframes twinkleStar {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

#mission-section p {
    color: white;
    line-height: 1.8;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
}

/* ========================================
   ABOUT SECTION (VIDEO) ENHANCEMENT
   ======================================== */
#about-section {
    position: relative;
    background: linear-gradient(180deg, var(--banner-peach) 0%, var(--banner-cream) 100%);
}

#about-section .ratio {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(38, 70, 83, 0.3),
                8px 8px 0 var(--banner-teal);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    border: 4px solid var(--banner-navy);
}

#about-section .ratio:hover {
    transform: scale(1.02) rotate(-0.5deg);
    box-shadow: 0 25px 60px rgba(38, 70, 83, 0.35),
                12px 12px 0 var(--banner-coral);
}