/* =========================================
   LES FRÈRES MAWEM — nav.css
   Navigation commune à toutes les pages
   ========================================= */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,217,255,0.12);
  height: auto;
}

.nav-logo { text-decoration: none; }
.nav-logo img,
nav > a > img { height: 46px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color .2s;
  opacity: 1;
}
.nav-links a:hover,
.nav-links a.active { color: #00d9ff; }

/* CTA bouton Réserver — classe .nav-cta et .btn-reserve */
.nav-cta,
.btn-reserve {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000 !important;
  background: #00d9ff;
  padding: 10px 24px;
  text-decoration: none;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background .2s;
  display: inline-block;
  border: none;
}
.nav-cta:hover,
.btn-reserve:hover { background: #00ffff; }

/* Dropdown — classe .nav-dropdown et .dropdown */
.nav-dropdown,
.dropdown { position: relative; }

.nav-dropdown > a,
.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown > a::after,
.dropdown > a::after {
  content: '▾';
  font-size: 10px;
  color: #00d9ff;
  transition: transform .2s;
  margin-left: 2px;
}
.nav-dropdown:hover > a::after,
.dropdown:hover > a::after { transform: rotate(180deg); }

.dropdown-menu {
  display: block !important;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-top: 2px solid #00d9ff;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
  z-index: 200;
  padding: 0;
}
.nav-dropdown:hover .dropdown-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none;
  border-bottom: 1px solid #2a2a2a;
  transition: all .2s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover {
  color: #00d9ff !important;
  background: #1f1f1f;
  padding-left: 22px;
}
.dropdown-menu a span { width: 2px; height: 16px; background: #00d9ff; flex-shrink: 0; }

/* Mobile */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
}
