/* Header de base */
.header-dynamique {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 999;

padding: 25px 0;
background: white;

transition: all 0.3s ease;
}

/* État après scroll */
.header-dynamique.header-scroll {
padding: 12px 0;

background: rgba(255, 255, 255, 0.7);

backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);

box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Logo */
.header-dynamique img {
max-height: 80px;
transition: all 0.3s ease;
}

.header-dynamique.header-scroll img {
max-height: 50px;
}

/* RETIRER LE SOULIGNEMENT AU SURVOL DES BOUTONS */
.elementor-button,
.elementor-button:hover,
.elementor-button:focus {
text-decoration: none !important;
}