﻿.layer {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

/* ❄️ Стиль і анімація для снігопаду */
.snowfall-active .snowflake {
    animation: fall linear infinite;
}

.snowflake {
    position: absolute;
    top: -10px;
    fill: #92e4ff;
    opacity: 0.8;
    transform-origin: center;
}

/* ❤️ Стиль і анімація для сердечок */
.hearts-active .heart {
    animation: floatUp ease-in-out infinite;
}

.heart {
    position: absolute;
    bottom: -10px;
    fill: red;
    opacity: 0.8;
    transform-origin: center;
}

/* ❄️ Стиль і анімація на Halloween */
.halloween-active .halloween {
    animation: fall linear infinite;
}

.halloween {
    position: absolute;
    top: -10px;
    fill: #92e4ff;
    opacity: 0.8;
    transform-origin: center;
}


/* Глибший шар */
.layer--background .snowflake, .layer--background .heart, layer--background .halloween {
    opacity: 0.5;
}

/* Анімації */

/*top: -10px;*/
@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/*bottom: -10px;*/
@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}