/* ==========================================
   BÉNIN CULTURE TOURS — Style Professionnel
   Palette : Crème + Bleu Marine + Or
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #FDFBF7;
  color: #1B2A4A;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 1000;
}

.nav-logo {
  font-family: 'Poppins', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1B2A4A;
}

.logo-accent {
  color: #D4AF37;
}

.nav-liens {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-liens a {
  text-decoration: none;
  color: #1B2A4A;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-liens a:hover {
  color: #D4AF37;
}

.nav-cta {
  background-color: #D4AF37;
  color: #1B2A4A;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background-color 0.3s;
}

.nav-cta:hover {
  background-color: #b8962e;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-carousel {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fondu-hero 36s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 24s; }
.hero-slide:nth-child(6) { animation-delay: 30s; }

@keyframes fondu-hero {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  16%  { opacity: 1; }
  19%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(27,42,74,0.45) 0%, rgba(44,62,107,0.4) 50%, rgba(27,42,74,0.5) 100%);
  z-index: 1;
}

.hero-contenu {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-tag {
  color: #D4AF37;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #FDFBF7;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #D4AF37;
}

.hero-desc {
  font-size: 18px;
  color: rgba(253, 251, 247, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-boutons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #D4AF37;
  color: #1B2A4A;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #b8962e;
}

.btn-outline {
  background-color: #1B2A4A;
  color: #FDFBF7;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid #1B2A4A;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: #D4AF37;
  color: #D4AF37;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #FDFBF7;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  z-index: 2;
}

/* ---- CHIFFRES CLÉS ---- */
.chiffres {
  display: flex;
  justify-content: center;
  gap: 0;
  background-color: #1B2A4A;
  padding: 50px 60px;
}

.chiffre-item {
  text-align: center;
  padding: 0 50px;
  border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.chiffre-item:last-child {
  border-right: none;
}

.chiffre-item h3 {
  font-family: 'Poppins', serif;
  font-size: 42px;
  color: #D4AF37;
  margin-bottom: 6px;
}

.chiffre-item p {
  font-size: 13px;
  color: rgba(253, 251, 247, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- SECTIONS COMMUNES ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: #D4AF37;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Poppins', serif;
  font-size: 42px;
  color: #1B2A4A;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}
/* ---- CIRCUITS ---- */
.circuits {
  padding: 100px 60px;
  background-color: #FDFBF7;
}

.circuits-grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.circuit-carte {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.08);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.circuit-carte:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27, 42, 74, 0.15);
}

.circuit-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #D4AF37;
  color: #1B2A4A;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}

.circuit-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.circuit-info {
  padding: 24px;
}

.circuit-duree {
  font-size: 12px;
  color: #D4AF37;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.circuit-info h3 {
  font-family: 'Poppins', serif;
  font-size: 22px;
  color: #1B2A4A;
  margin: 8px 0 12px;
}

.circuit-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.circuit-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.circuit-prix {
  font-size: 14px;
  font-weight: 600;
  color: #1B2A4A;
}

.btn-carte {
  background-color: #1B2A4A;
  color: #FDFBF7;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-carte:hover {
  background-color: #D4AF37;
  color: #1B2A4A;
}

/* ---- À PROPOS ---- */
.apropos {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 100px 60px;
  background-color: #1B2A4A;
}

.apropos-texte {
  flex: 1;
}

.apropos-texte h2 {
  font-family: 'Poppins', serif;
  font-size: 38px;
  color: #FDFBF7;
  margin: 16px 0 24px;
  line-height: 1.3;
}

.apropos-texte p {
  font-size: 16px;
  color: rgba(253, 251, 247, 0.75);
  line-height: 1.8;
  margin-bottom: 30px;
}

.apropos-liste {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.apropos-item {
  color: rgba(253, 251, 247, 0.85);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.apropos-social {
  display: flex;
  gap: 16px;
}

.social-btn {
  background-color: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-btn svg{
  fill: #D4AF37;
}

.social-btn:hover {
  background-color: rgba(212, 175, 55, 0.3);
}

.apropos-visuel {
  flex: 1;
}

.visuel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.visuel-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s;
}

.visuel-card:hover {
  transform: translateY(-6px);
}

.visuel-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(27,42,74,0.1) 0%, rgba(15,28,51,0.92) 100%);
  z-index: 1;
}

.visuel-contenu {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-align: left;
}

.visuel-chiffre {
  display: inline-block;
  background-color: #D4AF37;
  color: #1B2A4A;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.visuel-contenu h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FDFBF7;
  margin-bottom: 8px;
}

.visuel-contenu p {
  font-size: 13px;
  color: rgba(253, 251, 247, 0.8);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

/* ---- TÉMOIGNAGES ---- */
.temoignages {
  padding: 100px 60px;
  background-color: #FDFBF7;
}

.temoignages-grille {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.temoignage-carte {
  background-color: white;
  border-radius: 12px;
  padding: 36px;
  flex: 1;
  max-width: 360px;
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.07);
  border-top: 3px solid #D4AF37;
}

.temoignage-texte {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.temoignage-auteur {
  display: flex;
  align-items: center;
  gap: 14px;
}

.auteur-avatar {
  width: 44px;
  height: 44px;
  background-color: #1B2A4A;
  color: #D4AF37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.temoignage-auteur strong {
  font-size: 15px;
  color: #1B2A4A;
}

.temoignage-auteur p {
  font-size: 13px;
  color: #999;
}

/* ---- CONTACT ---- */
.contact {
  padding: 100px 60px;
  background-color: #1B2A4A;
}

.contact .section-header h2 {
  color: #FDFBF7;
}

.contact .section-desc {
  color: rgba(253, 251, 247, 0.6);
}

.formulaire {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.champ {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  background-color: rgba(253, 251, 247, 0.07);
  color: #FDFBF7;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

.champ::placeholder {
  color: rgba(253, 251, 247, 0.4);
}

.champ:focus {
  border-color: #D4AF37;
}

.champ option {
  background-color: #1B2A4A;
  color: #FDFBF7;
}

/* ---- FOOTER ---- */
.footer {
  background-color: #0F1C33;
  padding: 60px 60px 30px;
}

.footer-contenu {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-brand {
  flex: 2;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(253, 251, 247, 0.5);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: #D4AF37;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 14px;
  border-radius: 8px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-social a svg{
  fill: #D4AF37
}

.footer-social a:hover {
  background-color: rgba(212, 175, 55, 0.15);
}

.footer-liens, .footer-contact {
  flex: 1;
}

.footer-liens h4, .footer-contact h4 {
  color: #FDFBF7;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-liens a {
  display: block;
  color: rgba(253, 251, 247, 0.55);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-liens a:hover {
  color: #D4AF37;
}

.footer-contact p {
  color: rgba(253, 251, 247, 0.55);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-bas {
  text-align: center;
  color: rgba(253, 251, 247, 0.3);
  font-size: 13px;
}

/* ---- RESPONSIVE NAVBAR ---- */
@media (max-width: 768px) {

  .navbar {
    padding: 14px 20px;
    height: 70px;
  }

  .nav-logo {
    font-size: 18px;
  }

  .logo-img {
    height: 34px;
  }

  /* Bouton hamburger */
  .burger-btn {
    display: flex;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
  }

  /* Menu mobile */
  .nav-liens {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;

    background-color: #1B2A4A;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 28px;

    z-index: 1001;

    transition: right 0.35s ease;
  }

  /* Menu ouvert */
  .nav-liens.active {
    right: 0;
  }

  .nav-liens a {
    color: #FDFBF7;
    font-size: 16px;
    padding: 10px 20px;
  }

  /* CTA caché sur mobile */
  .nav-cta {
    display: none;
  }

  /* Sélecteur de langue */
  .lang-selector {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }
  .chiffres {
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 24px;
  }
  .chiffre-item {
    border-right: none;
    padding: 0 20px;
  }
  .circuits, .temoignages, .apropos, .contact {
    padding: 60px 24px;
  }
  .circuits-grille, .temoignages-grille {
    flex-direction: column;
    align-items: center;
  }
  .apropos {
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
  }
  .footer-contenu {
    flex-direction: column;
    gap: 40px;
  }
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 56px;
}
/* ---- SÉLECTEUR DE LANGUE ---- */
.lang-selector {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* ---- MENU BURGER (mobile) ---- */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #1B2A4A;
  border-radius: 2px;
  transition: all 0.3s;
}

.burger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

body.menu-ouvert {
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  border: 2px solid transparent;
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}

.lang-btn:hover {
  border-color: #D4AF37;
  background-color: rgba(212, 175, 55, 0.1);
}

.lang-btn.active {
  border-color: #D4AF37;
  background-color: rgba(212, 175, 55, 0.15);
}
.flag-img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
/* ---- BOUTON WHATSAPP ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
/* ---- SÉJOURS COMPLETS ---- */
.sejours {
  padding: 100px 60px;
  background-color: #FDFBF7;
}

.sejours-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.sejour-carte {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(27, 42, 74, 0.06);
  border: 1px solid rgba(27, 42, 74, 0.08);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sejour-carte:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(27, 42, 74, 0.12);
}

.sejour-carte.featured-sejour {
  border: 1.5px solid #D4AF37;
  transform: translateY(-12px);
  box-shadow: 0 16px 50px rgba(212, 175, 55, 0.15);
}

.sejour-carte.featured-sejour:hover {
  transform: translateY(-18px);
}

.sejour-popular {
  background: linear-gradient(135deg, #D4AF37, #b8962e);
  color: #1B2A4A;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.sejour-header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid rgba(27, 42, 74, 0.06);
  text-align: center;
}

.sejour-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 12px;
}

.sejour-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1B2A4A;
  margin-bottom: 16px;
}

.sejour-prix {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.prix-from {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.prix-montant {
  font-size: 36px;
  font-weight: 700;
  color: #1B2A4A;
  letter-spacing: -0.02em;
}

.sejour-devis {
  font-size: 18px;
  font-weight: 600;
  color: #D4AF37;
  font-style: italic;
}

.sejour-body {
  padding: 28px;
}

.sejour-liste {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sejour-liste li {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  padding-left: 4px;
  border-bottom: 1px solid rgba(27, 42, 74, 0.05);
  padding-bottom: 10px;
}

.sejour-liste li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sejour-hebergement {
  background-color: #FDFBF7;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 24px;
}

.sejour-hebergement p {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.heberg-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.heberg-btn {
  font-size: 12px;
  color: #1B2A4A;
  background-color: white;
  border: 1px solid rgba(27, 42, 74, 0.15);
  padding: 6px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.heberg-btn:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #1B2A4A;
}

.sejour-body .btn-primary {
  width: 100%;
  text-align: center;
  display: block;
  padding: 14px;
}

/* ---- RESPONSIVE SÉJOURS ---- */
@media (max-width: 768px) {
  .sejours {
    padding: 60px 24px;
  }
  .sejours-grille {
    grid-template-columns: 1fr;
  }

  /* ===== CORRECTION MENU MOBILE ===== */

@media (max-width: 768px) {
    .burger-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }

    .burger-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #1B2A4A;
        border-radius: 2px;
    }
}
  .sejour-carte.featured-sejour {
    transform: translateY(0);
  }
}
/* ---- PRIX CIRCUITS ---- */
.circuit-prix-bloc {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.prix-fcfa {
  font-size: 13px;
  font-weight: 700;
  color: #1B2A4A;
  line-height: 1.3;
}

.prix-euro {
  font-size: 12px;
  font-weight: 700;
  color: #D4AF37;
}
.prix-mention {
  font-size: 10px;
  color: #999;
  font-style: italic;
  line-height: 1.3;
}

.circuit-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* ==========================================
   MENU MOBILE — PETIT MENU EN HAUT À DROITE
   ========================================== */

@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 14px 20px;
        height: 70px;
    }

    /* Bouton hamburger */
    .burger-btn {
        display: flex !important;
        z-index: 1003;
        flex-shrink: 0;
    }

    /* Petit panneau */
    .nav-liens {
        position: fixed;
        top: 68px;
        right: -250px;

        width: 220px;
        height: auto;
        max-width: 220px;

        padding: 22px 18px 85px;

        background-color: #1B2A4A;
        border-radius: 12px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;

        gap: 8px;

        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

        z-index: 1001;

        transition: right 0.3s ease;
    }

    /* Menu ouvert */
    .nav-liens.active {
        right: 15px;
    }

    /* Liens */
    .nav-liens a {
        display: block;
        width: 100%;

        padding: 11px 15px;

        color: #FDFBF7;
        font-size: 15px;
        font-weight: 600;

        text-decoration: none;
        text-align: left;

        border-radius: 8px;

        transition: background-color 0.2s, color 0.2s;
    }

    .nav-liens a:hover {
        background-color: rgba(212, 175, 55, 0.15);
        color: #D4AF37;
    }

    /* Bouton RÉSERVER */
    .nav-cta {
        display: none;
    }

    /* Quand le menu est ouvert,
       le bouton Réserver apparaît sous les liens */
    .nav-liens.active ~ .nav-cta {
        display: block;

        position: fixed;

        top: 255px;
        right: 33px;

        z-index: 1002;

        padding: 10px 20px;

        background-color: #D4AF37;
        color: #1B2A4A;

        border-radius: 50px;

        font-size: 13px;
        font-weight: 700;

        text-decoration: none;

        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    /* Les drapeaux restent cachés sur mobile */
    .lang-selector {
        display: none;
    }
}

/* =====================================================
   NAVBAR MOBILE PREMIUM
   ===================================================== */

.mobile-langues,
.mobile-reserver {
    display: none;
}


/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        height: 70px;
        padding: 14px 20px;
        z-index: 1000;
    }

    /* Logo */
    .logo-img {
        height: 38px;
    }


    /* ===============================
       BOUTON HAMBURGER
       =============================== */

    .burger-btn {
        display: flex !important;
        position: relative;
        z-index: 1004;

        width: 30px;
        height: 30px;

        justify-content: center;
        align-items: center;

        gap: 5px;
    }

    .burger-btn span {
        width: 26px;
        height: 3px;
        border-radius: 3px;
        background-color: #1B2A4A;

        transition: transform 0.3s ease,
                    opacity 0.2s ease;
    }

    /* Transformation hamburger → X */
    .burger-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    /* ===============================
       PETIT PANNEAU
       =============================== */

    .nav-liens {
        position: fixed;

        top: 78px;
        right: -280px;

        width: 235px;
        max-width: calc(100vw - 25px);

        height: auto;

        padding: 14px 14px 15px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 0px;

        background: #1B2A4A;

        border-radius: 14px;

        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.25);

        z-index: 1003;

        transition: right 0.3s ease;
    }


    /* Menu ouvert */
    .nav-liens.active {
        right: 15px;
    }


    /* ===============================
       LIENS
       =============================== */

    .nav-liens li {
        list-style: none;
        width: 100%;
    }

    .nav-liens li > a:not(.nav-cta) {
        display: block;

        width: 100%;

        padding: 10px 14px;

        color: #FDFBF7;

        font-size: 14px;
        font-weight: 600;

        text-decoration: none;

        border-radius: 8px;

        transition:
            background-color 0.2s ease,
            color 0.2s ease;
    }

    .nav-liens li > a:not(.nav-cta):hover {
        background-color: rgba(212, 175, 55, 0.12);
        color: #D4AF37;
    }


    /* ===============================
       SÉPARATION
       =============================== */

    .mobile-langues {
        display: flex;

        justify-content: flex-start;
        align-items: center;

        gap: 8px;

        margin-top: 10px;
        padding: 12px 8px;

        border-top: 1px solid rgba(253, 251, 247, 0.12);
    }

    .mobile-langues .lang-btn {
        padding: 5px 7px;
    }


    /* ===============================
       BOUTON RÉSERVER
       =============================== */

    .mobile-reserver {
        display: block;

        margin-top: 8px;
        padding-top: 12px;

        border-top: 1px solid rgba(253, 251, 247, 0.12);
    }

    .mobile-reserver .nav-cta {
        display: block;

        width: 100%;

        padding: 12px 20px;

        background: #D4AF37;
        color: #1B2A4A;

        text-align: center;

        border-radius: 50px;

        font-size: 14px;
        font-weight: 700;

        text-decoration: none;
    }

    .mobile-reserver .nav-cta:hover {
        background: #e0bd45;
    }


    /* ===============================
       CACHER LES ÉLÉMENTS DESKTOP
       =============================== */

    .navbar > .lang-selector {
        display: none;
    }

    .desktop-reserver {
        display: none;
    }
}