/* Falling petals background animation */
.petals-container {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    height: calc(100vh + 200px);
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.falling-petal {
    position: absolute;
    width: 75px;
    height: 75px;
    background-image: url('/static/daisy.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: petalFall 8s linear infinite;
    opacity: 0.8;
    transform: rotate(var(--rotation, 0deg));
}

@keyframes petalFall {
    0% {
        transform: translateY(-100px) translateX(0px) rotate(var(--rotation, 0deg));
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(50vh) translateX(-20px) rotate(calc(var(--rotation, 0deg) + 180deg));
        opacity: 0.6;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(110vh) translateX(-40px) rotate(calc(var(--rotation, 0deg) + 360deg));
        opacity: 0;
    }
}

/* Mobile responsive - smaller petals */
@media (max-width: 768px) {
    .falling-petal {
        width: 45px;
        height: 45px;
    }
} 