/* --- Corrige le header sticky pour la page "Nos Réalisations" --- */
/* Remplace l'ID ci-dessous par celui de ta page : page-id-1234 */
body.post_id=6539 {
  padding-top: 100px !important; /* Laisse de la place pour le header sticky */
}

/* Si tu veux supprimer tout espace et le gérer directement dans ton HTML : 
   mets plutôt padding-top: 0; */

/* --- Forcer le header du thème à rester collé en haut --- */
.site-header,
#masthead,
.header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: #fff !important; /* évite la transparence quand on scrolle */
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* --- S'assure qu'il n'y a pas d'espace fantôme au-dessus du header --- */
body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* --- Optionnel : améliore la transition visuelle si le thème applique des ombres --- */
.site-header.is-sticky,
.header.is-sticky {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}