/**
 * Holiday Overlay Styles
 * Non-intrusive overlay that doesn't interfere with site functionality
 */

#holiday-overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999999;
    overflow: hidden;
}

.holiday-particle {
    position: absolute;
    pointer-events: none;
    user-select: none;
    will-change: transform, opacity;
}

/* Heart Animation */
.holiday-particle.heart {
    color: #ff1744;
    font-size: 50px; /* Larger hearts */
    animation: fall-heart linear infinite;
}

@keyframes fall-heart {
    0% {
        transform: translateY(-300px) translateX(0) rotate(0deg);
        opacity: 0.8;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Snowflake Animation */
.holiday-particle.snowflake {
    color: #ffffff;
    font-size: 16px;
    animation: fall-snowflake linear infinite;
}

@keyframes fall-snowflake {
    0% {
        transform: translateY(-100px) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) translateX(30px) rotate(360deg);
        opacity: 0;
    }
}

/* Ghost Animation */
.holiday-particle.ghost {
    color: #ffffff;
    font-size: 24px;
    animation: fall-ghost linear infinite;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

@keyframes fall-ghost {
    0% {
        transform: translateY(-100px) translateX(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(calc(50vh)) translateX(20px);
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) translateX(-20px);
        opacity: 0;
    }
}

/* Easter Egg Animation */
.holiday-particle.egg {
    color: #ffd700;
    font-size: 36px; /* 100% bigger than original 18px */
    animation: fall-egg linear infinite;
}

@keyframes fall-egg {
    0% {
        transform: translateY(-100px) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) translateX(40px) rotate(180deg);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .holiday-particle {
        font-size: 14px;
    }
    
    .holiday-particle.heart {
        font-size: 40px; /* Larger hearts for mobile */
    }
    
    .holiday-particle.ghost {
        font-size: 20px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .holiday-particle {
        animation: none;
        opacity: 0;
    }
}
