:root {
    /* Cheerful Color Palette (Disney Style) */
    --color-sky-blue: #1e90ff;
    --color-deep-blue: #0A2463;
    --color-grass-green: #32CD32;
    --color-sun-yellow: #FFD700;
    --color-orange: #FF8C00;
    --color-pink: #FF69B4;
    --color-white: #FFFFFF;
    --color-text-dark: #333333;
    --color-text-light: #666666;
    
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: #f4faff; /* Very light blue */
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.text-center { text-align: center; }

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mt-2 { margin-top: 1rem; }

/* Seals / Badges */
.seal {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    border: 3px dashed rgba(255,255,255,0.5);
}
.blue-seal { background-color: var(--color-sky-blue); color: white; }
.orange-seal { background-color: var(--color-orange); color: white; margin-top: 1.5rem; transform: rotate(2deg); }
.white-seal { background-color: white; color: var(--color-deep-blue); border-color: var(--color-sky-blue); }

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}
.badge.blue { background-color: var(--color-sky-blue); }
.badge.pink { background-color: var(--color-pink); }
.badge.yellow { background-color: var(--color-orange); }
.badge.green { background-color: var(--color-grass-green); }

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 0px rgba(0,0,0,0.15); /* 3D Button effect */
}
.btn:active {
    transform: translateY(6px) !important;
    box-shadow: 0 2px 0px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: var(--color-sun-yellow);
    color: var(--color-deep-blue);
    padding: 15px 40px;
    font-size: 1.5rem;
    border: 3px solid white;
}
.btn-primary:hover {
    background-color: #ffeb5c;
    transform: translateY(-2px);
}

.btn-huge {
    padding: 20px 50px;
    font-size: 1.8rem;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.pulse-anim {
    animation: pulse 2s infinite ease-in-out;
}

/* 1. Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: url('./assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(10, 36, 99, 0.8) 0%, rgba(10, 36, 99, 0.4) 100%);
}
.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}
.hero-content {
    flex: 1.5;
    color: white;
}
.main-title {
    font-size: 3.5rem;
    color: var(--color-sun-yellow);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}
.main-title span {
    color: white;
    font-size: 2.8rem;
}
.sub-headline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-callout {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border: 4px solid var(--color-sun-yellow);
}
.hero-callout h3 {
    font-size: 1.8rem;
    color: var(--color-deep-blue);
    margin-bottom: 1rem;
    text-align: center;
}
.callout-list {
    list-style: none;
}
.callout-list li {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-dark);
}
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
}
.blue-icon { background: #e0f2fe; color: #0284c7; }
.pink-icon { background: #fce7f3; color: #db2777; }
.yellow-icon { background: #fef9c3; color: #ca8a04; }
.green-icon { background: #dcfce7; color: #16a34a; }

/* 2. Problem/Solution */
.problem-solution {
    padding: 5rem 20px;
    text-align: center;
    max-width: 800px;
}
.problem-solution h2 {
    font-size: 2.5rem;
    color: var(--color-deep-blue);
    margin-bottom: 1.5rem;
}
.problem-solution p {
    font-size: 1.3rem;
    color: var(--color-text-light);
}

/* 3. Features & Benefits */
.features-bg {
    background-color: var(--color-deep-blue);
    padding: 5rem 0;
    background-image: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 40%);
}
.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 3rem;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
.bg-blue { background: #e0f2fe; }
.bg-pink { background: #fce7f3; }
.bg-yellow { background: #fef9c3; }
.bg-green { background: #dcfce7; }

.feature-card p {
    font-size: 1.1rem;
    color: var(--color-text-dark);
}
.feature-card p strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-deep-blue);
    margin-bottom: 5px;
}

/* 4. Activities Spotlight */
.activities {
    padding: 6rem 20px;
}
.activities-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 3px solid #e0f2fe;
}
.activities-text {
    flex: 1;
}
.activities-text h2 {
    font-size: 2.5rem;
    color: var(--color-deep-blue);
    margin: 1.5rem 0;
}
.activities-text p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}
.activities-visual {
    flex: 1;
}
.activities-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 5px solid white;
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}
.activities-visual img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* 5. Pricing */
.pricing {
    background: linear-gradient(135deg, var(--color-orange), #ff6b00);
    padding: 5rem 20px;
    text-align: center;
}
.pricing-card {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 5px solid var(--color-sun-yellow);
}
.pricing-card h2 {
    color: var(--color-deep-blue);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}
.price-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}
.old-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 700;
}
.new-price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-grass-green);
    font-weight: 800;
}
.small-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 10px;
}

/* 6. Testimonials */
.testimonials {
    padding: 6rem 20px;
}
.testimonials h2 {
    font-size: 2.5rem;
    color: var(--color-deep-blue);
    margin-bottom: 3rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--color-sky-blue);
}
.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}
.parent-profile {
    font-weight: 700;
    color: var(--color-deep-blue);
}

/* 8. Final CTA */
.final-cta {
    background-color: var(--color-sky-blue);
    padding: 5rem 20px;
    text-align: center;
    color: white;
}
.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.final-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* 7. Footer Banner */
.footer-banner {
    background-color: var(--color-deep-blue);
    color: white;
    text-align: center;
    padding: 2rem 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

/* Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        padding-top: 3rem;
        text-align: center;
    }
    .callout-list li {
        justify-content: center;
    }
    .activities-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .main-title {
        font-size: 2.5rem;
    }
    .main-title span {
        font-size: 2rem;
    }
    .pricing-card h2 {
        font-size: 2rem;
    }
    .btn-huge {
        font-size: 1.3rem;
        padding: 15px 20px;
    }
}
