/* Surcharge pour le menu de navigation - Correction des couleurs */

/* 1. Menu Principal (Desktop) */
.nav-link {
  color: #2c2c2c !important; /* Gris foncé / Noir */
  background-color: transparent !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active {
  color: #8b7355 !important; /* Beige/Doré au survol */
  background-color: rgba(139, 115, 85, 0.08) !important; /* Fond très léger */
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Suppression des effets parasites potentiels (pseudo-éléments) */
.nav-link::before,
.nav-link::after {
  display: none !important;
  content: none !important;
}

/* 2. Menu Mobile Toggle (Burger) */
.mobile-menu-toggle {
  border-color: #e8e8e8 !important; /* Bordure grise par défaut */
}

.burger-line,
.toggle-bar {
  background-color: #2c2c2c !important; /* Barres noires */
  display: block !important;
}

/* 3. Overlay Mobile */
.mobile-menu-overlay {
  background: rgba(0, 0, 0, 0.5) !important;
}

/* 4. Marque / Logo (Helene Riu) - Fix couleur UNIFIÉE */
.brand-link,
.brand-link:visited,
.brand-name {
  color: #8b7355 !important; /* Doré/Beige imposé partout */
  text-decoration: none !important;
  opacity: 1 !important;
}

.brand-link:hover,
.brand-link:focus,
.brand-link:active {
  color: #8b7355 !important; /* Reste Doré/Beige au survol */
  opacity: 1 !important;
  text-decoration: none !important;
}
