/* Style du menu */
/* Bouton burger */
#burger-button {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1001;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Panneau du menu */
#menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  padding: 40px 20px;
}

/* Liste du menu */
#menu-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* Liens */
#menu-panel a {
  text-decoration: none;
  color: black;
  font-size: 1.2rem;
}

/* Fond cliquable */
#menu-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 999;
}

/* Scroll bloqué quand menu ouvert */
body.menu-open {
  overflow: hidden;
}
@media (max-width: 600px) {
  #menu-panel ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
