@import url('https://fonts.googleapis.com/css2?family=Mountains+of+Christmas:wght@400;700&family=Poppins:wght@300;400;600;800&display=swap');

/* --- Snow Animation Engine --- */
.snowflake {
    position: fixed;
    top: -10px;
    z-index: 9999;
    color: #3fa2ff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    /* text-shadow: 0 0 5px #000; */
    user-select: none;
    pointer-events: none;
    animation-name: snowfall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes snowfall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* --- Festive Utilities --- */
.font-christmas { font-family: 'Mountains of Christmas', cursive; }
.font-poppins { font-family: 'Poppins', sans-serif; }

/* Custom Gradient Background */
.bg-christmas-gradient {
    background: radial-gradient(circle at center, #d4d6db 0%, #e4e8e9 100%);
}


/* Button Jingle Animation */
@keyframes jingle {
    0% { transform: rotate(0); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0); }
}

.animate-jingle:hover {
    animation: jingle 0.5s ease-in-out infinite;
    box-shadow: 0 0 20px #dc2626;
}

/* Floating Image Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}