/* Christmas Theme Styles */

/* Snow Canvas */
#snow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    /* Ensure it's on top of everything but doesn't block clicks */
}

/* Festive Accents - Example Overrides */
/* You can adjust these selectors based on the actual site structure */

:root {
    --christmas-red: #D42426;
    --christmas-green: #165B33;
    --christmas-gold: #F8B229;
}

/* Scrollbar festive colors */
::-webkit-scrollbar-thumb {
    background: var(--christmas-red) !important;
}

::-webkit-scrollbar-track {
    background: var(--christmas-green) !important;
}

/* Selection color */
::selection {
    background: var(--christmas-red);
    color: #fff;
}

/* Optional: Add a subtle festive border to the header or nav if appropriate */
.navbar,
header {
    border-bottom: 2px solid var(--christmas-red);
}

/* Reindeer Animation */
#reindeer-container {
    position: fixed;
    bottom: 20px;
    left: -150px;
    /* Start off-screen */
    width: 450px;
    /* Adjust size as needed */
    height: auto;
    z-index: 9998;
    pointer-events: none;
    /* Let clicks pass through */
    animation: runReindeer 20s linear infinite;
}

#reindeer-container img {
    width: 100%;
    height: auto;
    /* Optional: Add a slight bounce or rock if needed, but simple run is fine */
}

@keyframes runReindeer {
    0% {
        left: -150px;
    }

    100% {
        left: 100%;
    }
}