* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #fef9f3 0%, #fdf4e7 100%);
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Cursor Trail */
.trail {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 50%, #A8E6CF 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "★ ✿ ★ ✿ ★ ✿ ★ ✿ ★ ✿ ★ ✿ ★ ✿ ★";
    position: absolute;
    top: 20px;
    width: 100%;
    font-size: 2em;
    opacity: 0.3;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.8em;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}


.section-title {
    text-align: center;
    font-size: 2.5em;
    background: linear-gradient(135deg, #FF6B9D, #FFD93D, #A8E6CF);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    color: #4545c7;
    background-clip: text;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #e75555;
    margin-bottom: 40px;
}

.section {
    padding: 60px 15%;
    text-align: center;
}

/* Programs Section */
.programs {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 80px 5%;
    position: relative;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.program-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.program-card:hover::before {
    left: 100%;
}

.program-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.program-icon {
    font-size: 65px;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.program-card h3 {
    font-size: 24px;
    color: #667eea;
    margin-bottom: 15px;
    font-weight: 700;
}

.program-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* ================= IMAGES ================= */
.blog-post {
    background: white;
    border-radius: 30px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
    border: 5px solid #FFD93D;
}

/* Image Collage */
.image-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.collage-item {
    height: 250px;
    border-radius: 15px;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.large {
    grid-row: span 2;
    height: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .section-title {
        font-size: 2em;
    }

    .section-subtitle {
        font-size: 1.1em;
        font-weight: bold;
    }

    .blog-post {
        padding: 20px;
        border-radius: 20px;
    }

    .blog-post h3 {
        font-size: 1.4em;
    }

    .blog-image {
        height: 250px;
        margin: 20px 0;
    }

    .blog-content {
        font-size: 1em;
    }

    .image-collage {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .collage-item {
        height: 200px;
    }

    .large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .fun-list li {
        font-size: 1em;
        padding-left: 50px;
    }

    .fun-list li::before {
        font-size: 1.5em;
        left: 15px;
    }

    .cta-button {
        font-size: 1em;
        padding: 15px 30px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-header {
        padding: 25px;
    }

    .event-date {
        font-size: 2.5em;
    }

    .event-month {
        font-size: 1.1em;
    }

    .event-body {
        padding: 20px;
    }

    .event-body h3 {
        font-size: 1.4em;
    }

    .container {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6em;
    }

    .hero::before {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1.6em;
    }

    .blog-post {
        border-width: 3px;
    }

    .navbar-placeholder,
    .footer-placeholder {
        font-size: 12px;
        padding: 15px;
    }
}


/* ================= FOOTER ================= */
.kid-footer {
    position: relative;
    background: linear-gradient(135deg, #bde0fe, #caffbf);
    padding: 120px 8% 40px;
    overflow: hidden;
}

.footer-cloud {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #fff;
    border-bottom-left-radius: 100% 60%;
    border-bottom-right-radius: 100% 60%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.footer-box h3 {
    font-size: 26px;
    margin-bottom: 18px;
    font-family: 'Fredoka', sans-serif;
    color: #5a4a7d;
}

.footer-box h4 {
    font-size: 20px;
    margin-bottom: 18px;
    font-family: 'Fredoka', sans-serif;
    color: #5a4a7d;
}

.footer-box p,
.footer-box a {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-box a:hover {
    color: #ff6b6b;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2) rotate(10deg);
}

.footer-animals {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 3;
}

.animal {
    font-size: 60px;
    transform: translateY(40%);
    transition: transform 0.4s ease;
    cursor: pointer;
    animation: animalBounce 4s ease-in-out infinite;
}

.animal:hover {
    transform: translateY(0);
}

.animal:nth-child(2) {
    animation-delay: 1s;
}

.animal:nth-child(3) {
    animation-delay: 2s;
}

.animal:nth-child(4) {
    animation-delay: 3s;
}

@keyframes animalBounce {

    0%,
    100% {
        transform: translateY(40%);
    }

    50% {
        transform: translateY(30%);
    }
}

.footer-bottom {
    margin-top: 60px;
    text-align: center;
    padding-top: 20px;
    border-top: 2px dashed rgba(0, 0, 0, 0.15);
}

.footer-bottom p {
    font-size: 14px;
    color: #555;
}

.creator {
    margin-bottom: 4vh;
}


/* ================= BACK TO TOP BUTTON ================= */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.7);
}