/*
 * Thème Festif Pâques
 * Animations et décorations pour Pâques
 */

.easter-eggs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.easter-egg {
    position: absolute;
    top: -10px;
    font-size: 1.5em;
    font-family: Arial, sans-serif;
    animation: fall-egg linear infinite;
    opacity: 0.9;
}

@keyframes fall-egg {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg);
    }
    100% {
        top: 110%;
        transform: translateX(80px) rotate(360deg);
    }
}

.easter-badge {
    position: fixed;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f7e7ce 0%, #ffe5b4 100%);
    color: #a0522d;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(247, 231, 206, 0.4);
    z-index: 9997;
    animation: pulse-easter 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.easter-badge:hover {
    transform: translateX(-50%) scale(1.1) rotate(-5deg);
}

@keyframes pulse-easter {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(247, 231, 206, 0.4);
    }
    50% {
        box-shadow: 0 5px 25px rgba(247, 231, 206, 0.8);
    }
}

.easter-garland {
    position: fixed;
    top: 45px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #ffe5b4 0%, #f7e7ce 100%);
    background-size: 200% 100%;
    animation: shimmer-easter 3s linear infinite;
    z-index: 9998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.easter-garland::before {
    content: '🥚 🐣 🐰 🌷 🥕 🐇 🥚 🐣 🐰 🌷 🥕 🐇 🥚 🐣 🐰 🌷 🥕 🐇';
    position: absolute;
    width: 200%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 18px;
    animation: scroll-garland-easter 20s linear infinite;
    padding: 0 20px;
    white-space: nowrap;
}

@keyframes shimmer-easter {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

@keyframes scroll-garland-easter {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
