.hero-bg {
    background-image: linear-gradient(rgba(140, 26, 16, 0.85), rgba(140, 26, 16, 0.6)), url('https://cocospastry.com/images/cocos%20pastry.jpg');
    background-size: cover;
    background-position: center;
}

.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes floatSubtle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.animate-float-subtle {
    animation: floatSubtle 4s ease-in-out infinite;
}

.animate-float-subtle-delayed {
    animation: floatSubtle 5s ease-in-out infinite reverse;
}

.animate-fade-in-up {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 8s ease-in-out infinite reverse; /* Durée différente et direction inversée pour le contraste */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-scroll {
    animation: scroll 30s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

/* New Breathing Animation */
@keyframes breathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.animate-pulse-subtle {
    animation: breathe 4s ease-in-out infinite;
}

.animate-pulse-subtle-delayed {
    animation: breathe 5s ease-in-out infinite reverse;
}