/* Snow Effect */

/* Snow scrolls with page content */
body {
    position: relative;
}

#snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    /* Height is set dynamically by JavaScript to cover full page */
    opacity: 0;
    animation: fadeInSnow 2s ease-in forwards;
}

@keyframes fadeInSnow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Ensure content appears above snow (without changing their position property) */
#page-container,
.page-wrap,
.footer-dark {
    position: relative;
    z-index: 10;
}

/* Menu stays fixed as it was originally */
#menu-island-container {
    z-index: 50;
}

.snow {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(100vh);
    }
}
