/* =========================================================
   BOUTON BURGER
   ========================================================= */

.burger-btn {
  position: fixed;
  top: 14px;
  left: 14px;

  width: 44px;
  height: 44px;

  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 3000; /* toujours au-dessus */
}

/* Barres */
.burger-btn span {
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Placement des barres */
.burger-btn span:nth-child(1) { transform: translateY(-6px); }
.burger-btn span:nth-child(2) { transform: translateY(0); }
.burger-btn span:nth-child(3) { transform: translateY(6px); }

/* =========================================================
   MOBILE : visibilité garantie, fond discret
   ========================================================= */

@media (max-width: 768px) {
  .burger-btn {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 10px;
  }

  .burger-btn span {
    background-color: #ffffff;
  }
}

/* =========================================================
   MENU LATÉRAL
   ========================================================= */

.burger-menu {
  position: fixed;
  top: 0;
  left: -260px; /* caché par défaut */
  width: 260px;
  height: 100%;

  background: #fffaf3;
  box-shadow: 2px 0 10px rgba(0,0,0,0.15);
  padding-top: 80px;

  transition: left 0.3s ease;
  z-index: 2500;
}

.burger-menu.open {
  left: 0;
}

/* Contenu du menu */
.burger-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.burger-menu li {
  padding: 12px 20px;
}

.burger-menu a {
  display: block;
  text-decoration: none;
  color: #4a2e1e;
  font-weight: 500;
}

.burger-menu a:hover {
  color: #e67e22;
}

.burger-menu .separator {
  border-top: 1px solid #e0d4c4;
  margin: 10px 0;
}

/* =========================================================
   OVERLAY
   ========================================================= */

.burger-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 2400;
}

.burger-overlay.show {
  display: block;
}

/* =========================================================
   SÉCURITÉ STRUCTURE
   ========================================================= */

header {
  position: relative;
  z-index: 1000;
}

