/* ================================================================
   SCROLL ANIMATIONS - AR CONSEIL
   ================================================================ */

/* --- SMOOTH SCROLL BEHAVIOR --- */
html {
    scroll-behavior: smooth;
}

/* --- REDUCED MOTION ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- HERO SECTION FADE-IN ON PAGE LOAD --- */
.background_header_accueil,
.background_header_cabinet,
.background_header_actualite,
.background_header_services,
.background_header_contact {
    animation: fade-in-header 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes fade-in-header {
    from {
        opacity: 0;
        filter: blur(5px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* --- BUTTON HOVER TRANSITIONS --- */
.btn_rdv,
.btn_services,
.btn_contact_footer,
.simulator-button {
    transition: all 0.3s ease;
}

.btn_rdv:hover,
.btn_services:hover,
.btn_contact_footer:hover,
.simulator-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
