/* Styles pour le header sticky */
.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Crée un espace pour éviter le saut de contenu quand le header devient fixe */
.sticky-wrapper {
  height: auto;
  transition: height 0.3s ease;
}

