/* ========== EASTER THEME OVERLAY ========== */
/* Temporary seasonal theme - remove after Easter */

:root {
    --easter-pink: #FFB6C1;
    --easter-lavender: #E6E6FA;
    --easter-mint: #98FB98;
    --easter-yellow: #FFFACD;
    --easter-peach: #FFDAB9;
    --easter-sky: #87CEEB;
    --easter-lilac: #DDA0DD;
}

/* ---- Pastel gradient hero ---- */
.hero {
    background: linear-gradient(135deg, #FFB6C1 0%, #E6E6FA 35%, #98FB98 65%, #87CEEB 100%) !important;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 6px 8px at 10% 20%, #FFD700 0%, #FFD700 40%, transparent 41%),
        radial-gradient(ellipse 5px 7px at 25% 60%, #FF69B4 0%, #FF69B4 40%, transparent 41%),
        radial-gradient(ellipse 7px 10px at 40% 15%, #87CEEB 0%, #87CEEB 40%, transparent 41%),
        radial-gradient(ellipse 5px 7px at 55% 75%, #98FB98 0%, #98FB98 40%, transparent 41%),
        radial-gradient(ellipse 6px 9px at 70% 30%, #DDA0DD 0%, #DDA0DD 40%, transparent 41%),
        radial-gradient(ellipse 5px 7px at 85% 65%, #FFDAB9 0%, #FFDAB9 40%, transparent 41%),
        radial-gradient(ellipse 8px 11px at 15% 80%, #FFD700 0%, #FFD700 40%, transparent 41%),
        radial-gradient(ellipse 6px 8px at 90% 10%, #FF69B4 0%, #FF69B4 40%, transparent 41%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.hero h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
}

.hero h1 span {
    color: #FF69B4 !important;
    text-shadow: none;
}

.hero-tagline {
    color: #fff !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* ---- Easter banner ---- */
.easter-banner {
    background: linear-gradient(90deg, var(--easter-pink), var(--easter-lavender), var(--easter-mint), var(--easter-yellow));
    text-align: center;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #6B4C6E;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    letter-spacing: 1px;
}

/* Push header down to accommodate banner */
header {
    top: 38px !important;
}

.hero {
    padding-top: 198px !important;
}

/* ---- Pastel buttons ---- */
.btn-primary {
    background: linear-gradient(135deg, #FF69B4, #FFB6C1) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF1493, #FF69B4) !important;
}

.btn-secondary {
    border-color: #fff !important;
    background: rgba(255,255,255,0.3) !important;
}

/* ---- Stats section Easter style ---- */
.stats {
    background: linear-gradient(135deg, #E6E6FA 0%, #FFB6C1 50%, #FFFACD 100%) !important;
}

.stats .stat-item h4 {
    color: #6B4C6E !important;
}

/* ---- Activity cards pastel borders ---- */
.activity-card {
    border-top: 4px solid var(--easter-pink) !important;
}

.activity-card.choir {
    border-top-color: var(--easter-lavender) !important;
}

/* ---- Floating Easter eggs ---- */
.easter-egg {
    position: fixed;
    font-size: 1.8rem;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    animation: floatUp 6s ease-in forwards;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translateY(-10vh) rotate(15deg) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translateY(-85vh) rotate(340deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(360deg) scale(0.5);
    }
}

/* ---- Easter confetti on section headers ---- */
.section-header h2::before,
.mission-content h2::before {
    content: '\1F430 ';
}

.section-header h2::after,
.mission-content h2::after {
    content: ' \1F430';
}

/* ---- Footer Easter touch ---- */
footer {
    background: linear-gradient(180deg, #333 0%, #4A3750 100%) !important;
}

.footer-bottom {
    border-top-color: var(--easter-pink) !important;
}

/* ---- Partners section ---- */
.partners {
    position: relative;
}

.partners::before {
    content: '\1F338 \1F337 \1F33C \1F338 \1F337 \1F33C';
    display: block;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 15px;
    margin-bottom: -10px;
    padding-top: 10px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .easter-banner {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    header {
        top: 34px !important;
    }

    .hero {
        padding-top: 180px !important;
    }
}
