
/* Animation personnalisée */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Étoiles remplies pour les témoignages */
.fill-current {
    fill: currentColor;
}

/* Focus states améliorés */
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgb(220 38 38);
    outline-offset: 2px;
}

/* Animation des cartes au survol */
.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Transitions globales */
* {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Style pour les boutons au survol */
button:hover {
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

/* Responsive améliorer pour mobile */
@media (max-width: 768px) {
    .animate-float {
        animation: none;
    }
    
    .scale-105 {
        transform: scale(1);
    }
}

/* Style pour le menu mobile */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Amélioration de la lisibilité */
body {
    line-height: 1.6;
}

/* Style pour les liens de navigation */
nav a {
    position: relative;
}

nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(220 38 38);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(220 38 38);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Styles pour l'effet ripple */
button,
.ripple-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Brique 5 — CSS minimal */
.top-nav a {
    margin: 0 8px;
    font-weight: 600;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    background: #f3f3f3;
}

.footer-col {
    flex: 1 1 200px;
    padding: 10px;
}

.breadcrumb {
    font-size: .9rem;
    margin-bottom: 8px;
}
