.btn-orange {
  background: linear-gradient(135deg, #F39C12, #e67e22);
  color: white !important;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Fixer la barre de menu en haut */
.site-header, 
#masthead, 
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff; /* Assure un fond opaque */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Ombre légère */
}

/* Empêcher que le contenu passe sous le menu */
body {
    padding-top: 80px; /* Ajuste selon la hauteur de ta barre */
}