.t4-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.t4-header.is-sticky {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* Masquer le menu horizontal sur les écrans mobiles */
@media (max-width: 992px) {
  #t4-section-1 {
    display: none !important;
  }
}
/* Forcer le menu principal à s'afficher horizontalement */
.navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center; /* ou space-around, selon ton goût */
  align-items: center;
}

/* Espacement entre les éléments du menu */
.navbar-nav > li {
  margin: 0 10px;
}
#t4-section-1.t4-sticky {
    z-index: 9999 !important;
    position: sticky;
    top: 0;
    background: white;
}
.site-slogan {
    font-size: 1.2rem; /* augmente la taille */
    font-weight: 400; /* optionnel : un peu plus épais */
    letter-spacing: 0.4px; /* optionnel : espace élégant */
}



