.wind-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 35px;
    height: 35px;
    opacity: 0;
    transform-origin: center;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.leaf-1 {
    animation: leafSwirl1 4s ease-out;
}

.leaf-2 {
    animation: leafSwirl2 4.2s ease-out;
}

.leaf-3 {
    animation: leafSwirl3 3.8s ease-out;
}

.leaf-4 {
    animation: leafSwirl4 4.5s ease-out;
}

.leaf-5 {
    animation: leafSwirl5 4.1s ease-out;
}

.leaf-6 {
    animation: leafSwirl6 3.9s ease-out;
}

@keyframes leafSwirl1 {
    0% {
        transform: translateX(-100px) translateY(0px) rotate(0deg);
        opacity: 0;
    }
    15% {
        transform: translateX(-50px) translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
    30% {
        transform: translateX(50px) translateY(-10px) rotate(360deg);
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(20px) rotate(540deg);
        opacity: 0;
    }
}

@keyframes leafSwirl2 {
    0% {
        transform: translateX(-120px) translateY(0px) rotate(45deg);
        opacity: 0;
    }
    20% {
        transform: translateX(-60px) translateY(-30px) rotate(225deg);
        opacity: 0.9;
    }
    35% {
        transform: translateX(80px) translateY(-15px) rotate(405deg);
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 120px)) translateY(15px) rotate(585deg);
        opacity: 0;
    }
}

@keyframes leafSwirl3 {
    0% {
        transform: translateX(-80px) translateY(0px) rotate(-30deg);
        opacity: 0;
    }
    18% {
        transform: translateX(-30px) translateY(-25px) rotate(150deg);
        opacity: 0.7;
    }
    32% {
        transform: translateX(70px) translateY(-5px) rotate(330deg);
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 80px)) translateY(25px) rotate(510deg);
        opacity: 0;
    }
}

@keyframes leafSwirl4 {
    0% {
        transform: translateX(-110px) translateY(0px) rotate(90deg);
        opacity: 0;
    }
    22% {
        transform: translateX(-55px) translateY(-35px) rotate(270deg);
        opacity: 0.8;
    }
    38% {
        transform: translateX(90px) translateY(-20px) rotate(450deg);
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 110px)) translateY(10px) rotate(630deg);
        opacity: 0;
    }
}

@keyframes leafSwirl5 {
    0% {
        transform: translateX(-90px) translateY(0px) rotate(-45deg);
        opacity: 0;
    }
    16% {
        transform: translateX(-40px) translateY(-15px) rotate(135deg);
        opacity: 0.9;
    }
    30% {
        transform: translateX(60px) translateY(0px) rotate(315deg);
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 90px)) translateY(30px) rotate(495deg);
        opacity: 0;
    }
}

@keyframes leafSwirl6 {
    0% {
        transform: translateX(-100px) translateY(0px) rotate(120deg);
        opacity: 0;
    }
    19% {
        transform: translateX(-45px) translateY(-40px) rotate(300deg);
        opacity: 0.6;
    }
    33% {
        transform: translateX(75px) translateY(-25px) rotate(480deg);
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(5px) rotate(660deg);
        opacity: 0;
    }
}

