html, body {
      height: 100%;
      margin: 0;
      font-family: 'Montserrat', sans-serif;
    }

    /* Vidéo background */
    .video-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    /* Overlay léger */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      z-index: -1;
    }

    /* Contenu centré */
    .hero {
      min-height: 100vh;
      color: #fff;
    }

    .logo {
      width: 200px;
      height: auto;
      margin-bottom: 12px;
    }

    .menu a {
      display: block;
      text-decoration: none;
      color: white;
      letter-spacing: 2px;
      margin: 14px 0;
      font-size: 14px;
      text-transform: uppercase;
    }

    .menu a:hover {
      opacity: 0.7;
    }

    .social {
      margin-top: 30px;
    }

    .social img {
      width: 20px;
      opacity: 0.9;
    }


    /* Images plein écran */
    .image-section {
      height: 50vh;
      background-size: cover;
      background-position: center;
    }

    /* Bloc noir */
    .text-section {
      background: #000;
      color: #fff;
      padding: 120px 20px;
    }

    .text-section h2 {
      font-size: 42px;
      font-weight: 600;
      margin-bottom: 30px;
      text-transform: uppercase;
    }

    .text-section p {
      font-size: 15px;
      line-height: 1.8;
      opacity: 0.9;
    }

    @media (max-width: 768px) {
      .text-section {
        padding: 80px 20px;
      }

      .text-section h2 {
        font-size: 32px;
      }
    }

    /* HEADER */
    .site-header {
    background: #000;
    height: 80px;
    z-index: 1000;
    }

    .header-inner {
    height: 80px;
    }

    /* Logo */
    .logo-header img {
    height: 100px;
    width: auto;
    }

    /* Navigation */
    .main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    margin-left: 28px;
    text-transform: uppercase;
    opacity: 0.9;
    }

    .main-nav a:hover {
    opacity: 1;
    }

    .main-nav .don {
    font-weight: 600;
    }

    /* Langue */
    .lang {
    color: #fff;
    font-size: 13px;
    margin-left: 28px;
    cursor: pointer;
    opacity: 0.8;
    }

    /* Social */
    .sociaux {
    display: flex;
    align-items: center;
    margin-left: 24px;
    }

    .sociaux a {
    color: #fff;
    font-size: 14px;
    line-height: 1; /* CLÉ */
    display: flex;
    align-items: center;
    }

    .sociaux a:hover {
    opacity: 0.8;
    }

    /* Décalage du contenu à cause du header fixed */
    body {
    padding-top: 80px;
    }

    /* MAP */
    .map-section iframe {
    display: block;
    }

    /* INFO SECTION */
    .info-section {
    background: #1f2f4a;
    color: #fff;
    padding: 80px 0;
    }

    .info-section h5 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    }

    .info-section p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
    }

    /* SOCIAL FOOTER */
    .social-footer {
    display: flex;
    gap: 20px;
    font-size: 18px;
    }

    .social-footer a {
    color: #fff;
    }

    /* CONTACT LIST */
    .contact-list {
    list-style: none;
    padding: 0;
    }

    .contact-list li {
    margin-bottom: 10px;
    font-size: 14px;
    }

    .contact-list i {
    margin-right: 10px;
    }

    /* FOOTER */
    .site-footer {
    background: #111;
    color: #aaa;
    padding: 20px 0;
    font-size: 13px;
    }


    /* ITEM AVEC SOUS-MENU */
    .nav-item {
    position: relative;
    }

    /* SOUS-MENU */
    .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 200px;
    padding: 12px 0;
    display: none;
    flex-direction: column;
    z-index: 1000;
    }

    /* LIENS DU SOUS-MENU */
    .submenu a {
    color: #fff;
    font-size: 13px;
    padding: 10px 20px;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0.85;
    }

    .submenu a:hover {
    opacity: 1;
    background: rgba(255,255,255,0.05);
    }

    /* AFFICHAGE AU HOVER */
    .has-submenu:hover .submenu {
    display: flex;
    }

    .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 80px 0 60px;
    }

    .section-title h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    color: #ffffff; /* bleu foncé élégant */
    }

    .section-title span {
    flex: 1;
    height: 1px;
    background: #bfc5ce; /* gris clair comme sur ta capture */
    max-width: 180px;
    }

    .image-slider {
    width: 100%;
    }

.slide-image {
    height: 70vh; /* Ta hauteur sur PC */
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* L'image remplit les 70vh sans se déformer */
    object-position: center; /* Centre l'image pour ne pas couper les têtes ou le lit */
}

/* Ajustement pour Mobile */
@media (max-width: 768px) {
    .slide-image {
        height: 50vh; /* Sur mobile, 70vh c'est souvent trop grand, 50vh est plus élégant */
    }
}

    /* SECTION PRIX */
    .price-section {
    background: #f6f7f9;
    padding: 100px 0;
    }

    .price-card {
    background: #fff;
    max-width: 520px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .price-card h3 {
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #1f2f4a;
    }

    /* PRIX */
    .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
    }

    .commande {
    font-size: 20px;
    font-weight: 600;
    color: #1f2f4a;
    }

     .amount {
    font-size: 48px;
    font-weight: 600;
    color: #1f2f4a;
    }

    .currency {
    font-size: 18px;
    margin-left: 6px;
    }

    .night {
    font-size: 14px;
    margin-left: 6px;
    opacity: 0.7;
    }

    /* NOTE */
    .price-note {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
    }

    /* BOUTON */
    .btn-reserve {
    padding: 12px 34px;
    border: 1px solid #1f2f4a;
    color: #1f2f4a;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    background: transparent;
    transition: all 0.3s ease;
    }

    .btn-reserve:hover {
    background: #1f2f4a;
    color: #fff;
    }

    /* SECTION */
.reservation-section {
  background: #f6f7f9;
  padding: 100px 0;
}

/* CARTE */
.reservation-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  border-radius: 6px;
}

/* LABEL */
.reservation-card label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
  color: #1f2f4a;
}

/* INPUTS */
.reservation-card input,
.reservation-card select,
.reservation-card textarea {
  width: 100%;
  border: 1px solid #dcdfe5;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
  border-radius: 4px;
  transition: border 0.2s ease;
}

.reservation-card input:focus,
.reservation-card select:focus,
.reservation-card textarea:focus {
  border-color: #1f2f4a;
}

/* BOUTON */
.btn-reserve {
  padding: 14px 40px;
  border: 1px solid #1f2f4a;
  background: transparent;
  color: #1f2f4a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-reserve:hover {
  background: #1f2f4a;
  color: #fff;
}


/* HERO */
.contact-hero {
  padding: 100px 0 60px;
}

.contact-intro {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 15px;
  opacity: 0.8;
}

/* MAP */
.contact-map iframe {
  display: block;
}

/* SECTION CONTACT */
.contact-section {
  background: #f6f7f9;
  padding: 100px 0;
}

/* INFOS */
.contact-info {
  background: #1f2f4a;
  color: #fff;
  padding: 50px;
  height: 100%;
}

.contact-info h3 {
  margin-bottom: 30px;
  font-size: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-info i {
  margin-right: 10px;
}

/* SOCIAL */
.contact-social {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.contact-social a {
  color: #fff;
  font-size: 16px;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 30px;
  font-size: 20px;
  color: #1f2f4a;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dcdfe5;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1f2f4a;
}

/* BOUTON */
.btn-contact {
  padding: 12px 36px;
  border: 1px solid #1f2f4a;
  background: transparent;
  color: #1f2f4a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #1f2f4a;
  color: #fff;
}


/* HERO */
.gallery-hero {
  padding: 100px 0 60px;
}

.gallery-intro {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 15px;
  opacity: 0.8;
}

/* GRID */
.gallery-section {
  padding-bottom: 100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
}

/* FERMETURE */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

/* NAVIGATION */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  padding: 10px 20px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .lightbox-nav {
    font-size: 36px;
  }
}

/* HERO */
.activities-hero {
  padding: 100px 0 60px;
}

.activities-intro {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 15px;
  opacity: 0.8;
}

/* SECTION */
.activities-section {
  padding-bottom: 100px;
}

/* CARD */
.activity-card {
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.activity-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* CONTENU */
.activity-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.activity-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1f2f4a;
}

.activity-content p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 30px;
}

/* BOUTON */
.btn-activity {
  padding: 12px 28px;
  border: 1px solid #1f2f4a;
  background: transparent;
  color: #1f2f4a;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-activity:hover {
  background: #1f2f4a;
  color: #fff;
}

.activity-actions {
  display: flex;
  gap: 20px;              /* espace entre les boutons */
  align-items: center;
}
  
.btn-details {
  padding: 10px 26px;
  border: 1px solid #bfc5ce;
  background: transparent;
  color: #1f2f4a;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-details:hover {
  background: #1f2f4a;
  color: #fff;
  border-color: #1f2f4a;
}

/* MODAL */
.activity-modal {
  border: none;
  border-radius: 6px;
  overflow: hidden;
}

/* IMAGE */
.modal-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* TEXTE */
.activity-modal h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1f2f4a;
}

.activity-date {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 20px;
}

.activity-description {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.activity-details {
  padding-left: 18px;
  font-size: 14px;
}

.activity-details li {
  margin-bottom: 8px;
}

/* PRIX ACTIVITÉ */
.activity-price {
  margin: 10px 0 15px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-amount {
  font-size: 32px;
  font-weight: 600;
  color: #1f2f4a;
}

.price-currency {
  font-size: 14px;
  letter-spacing: 1px;
}

.price-unit {
  font-size: 13px;
  opacity: 0.7;
}

.btn-details {
  padding: 12px 42px;     /* plus large comme sur ta capture */
  border: 1px solid #bfc5ce;
  background: #1f2f4a;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-details:hover {
  background: transparent;
  color: #1f2f4a;
  border-color: #1f2f4a;
}

/* Input Hotel Style */
.hotel-input {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px 15px;
}
.hotel-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.1);
}

/* Catégories Sélecteur */
.cat-selector { display: block; cursor: pointer; }
.cat-selector input { display: none; }
.cat-box {
    text-align: center;
    padding: 15px 10px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: 0.3s;
    background: #fcfcfc;
}
.cat-box i { font-size: 20px; color: #adb5bd; margin-bottom: 8px; display: block; }
.cat-box span { font-size: 11px; font-weight: 700; color: #6c757d; text-transform: uppercase; }

.cat-selector input:checked + .cat-box {
    border-color: var(--accent-color);
    background: rgba(197, 160, 89, 0.05);
}
.cat-selector input:checked + .cat-box i { color: var(--accent-color); }
.cat-selector input:checked + .cat-box span { color: var(--primary-color); }

/* Sélecteur de jours */
.day-selector { gap: 8px; }
.day-check { cursor: pointer; }
.day-check input { display: none; }
.day-check span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 1px solid #eee;
    font-size: 11px;
    font-weight: 700;
    transition: 0.3s;
}
.day-check input:checked + span {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Image Upload Box */
.activity-upload-box {
    height: 180px;
    border: 2px dashed #ddd;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: 0.3s;
}
.activity-upload-box:hover { border-color: var(--accent-color); background: #fcfaf5; }

/* Switch Style */
.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #28a745;
    border-color: #28a745;
}

/* Style des KPI Cards */
.report-kpi-card {
    border-radius: 15px;
    transition: transform 0.3s;
}
.report-kpi-card:hover { transform: translateY(-5px); }

.report-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Couleurs de fond pour icônes */
.bg-gold-light { background: rgba(197, 160, 89, 0.15); color: var(--accent-color); }
.bg-blue-light { background: rgba(26, 42, 58, 0.1); color: var(--primary-color); }
.bg-success-light { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.bg-warning-light { background: rgba(255, 193, 7, 0.1); color: #ffc107; }

/* Badges doux */
.badge-soft-success { background: #d1e7dd; color: #0f5132; border-radius: 50px; padding: 5px 12px; font-size: 10px; }

.text-gold { color: var(--accent-color); }

/* Graphique placeholder */
.bar { transition: height 1s ease; cursor: pointer; }
.bar:hover { filter: brightness(0.9); }

/* Navigation des paramètres */
.settings-nav .nav-link {
    color: #495057;
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.settings-nav .nav-link:hover {
    background-color: rgba(197, 160, 89, 0.05);
    color: var(--accent-color);
}

.settings-nav .nav-link.active {
    background-color: rgba(197, 160, 89, 0.1) !important;
    color: var(--accent-color) !important;
    border-left: 3px solid var(--accent-color);
    font-weight: 600;
}

/* Style des inputs */
.hotel-input {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: 0.3s;
}

.hotel-input:focus {
    background-color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.1);
}

/* Logo Preview */
.logo-preview-box {
    width: 100%;
    height: 100px;
    border: 1px dashed #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.logo-preview-box img {
    max-width: 100%;
    max-height: 100%;
}

.input-group-text {
    border-radius: 8px 0 0 8px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.uppercase { text-transform: uppercase; }

/* Style du Header */
.site-header {
    background-color: #000; /* Fond noir comme sur votre logo */
    padding: 15px 0;
    transition: all 0.3s ease;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Bouton Hamburger */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Menu Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-content a {
    display: block;
    color: #fff;
    font-size: 24px;
    margin: 20px 0;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 2px;
}

.mobile-menu-content a:hover {
    color: #c5a059; /* Couleur Or/Accent */
}

/* Animation Hamburger quand actif */
.menu-toggle.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -5px); }

/* Le Header doit avoir une couleur et une hauteur définie */
.site-header {
    background-color: #000 !important; /* Barre noire */
    height: 90px; /* Ajustez la hauteur selon vos besoins */
    display: flex;
    align-items: center;
    z-index: 1030;
}

/* On force le conteneur à prendre toute la hauteur pour centrer le contenu */
.header-inner {
    width: 100%;
    height: 100%;
}

/* On contrôle la taille du logo pour qu'il n'écrase pas la barre */
.logo-header img {
    height: 60px; /* Taille du logo */
    width: auto;
    display: block;
}

/* Menu PC : On s'assure qu'il n'y a pas de marges qui le poussent vers le bas */
.main-nav {
    margin-bottom: 0;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Bouton Hamburger : Bien centré dans la barre noire */
.menu-toggle {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: 0.3s;
}

/* Menu Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%); /* Caché en haut */
    transition: transform 0.4s ease-in-out;
}

.mobile-overlay.active {
    transform: translateY(0); /* Apparaît */
}

.mobile-menu-content a {
    display: block;
    color: #fff;
    font-size: 22px;
    margin: 25px 0;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
}

/* Style du sélecteur de langue */
.lang .dropdown-toggle {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin-left: 20px;
    background: transparent;
    border: none;
}

.lang .dropdown-toggle::after {
    display: none; /* Cache la petite flèche Bootstrap si tu n'en veux pas */
}

.lang .dropdown-menu {
    background-color: #1a1a1a; /* Noir luxe */
    min-width: 80px;
    margin-top: 15px;
}

.lang .dropdown-item {
    color: #fff;
    font-size: 12px;
    padding: 10px 20px;
}

.lang .dropdown-item:hover, .lang .dropdown-item.active {
    background-color: #c5a059;
    color: #000;
}

/* --- SYSTEME ACTIVE --- */

/* Couleur Or pour le lien actif */
.main-nav a.active {
    color: #c5a059 !important;
    position: relative;
}

/* Petite barre dorée sous le lien actif */
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #c5a059;
}

/* Si un sous-menu est actif, on peut aussi surligner le parent */
.nav-item.parent-active > a {
    color: #c5a059 !important;
}

/* 1. Positionnement du conteneur */
.lang-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* 2. Style du texte FR visible dans la barre */
.lang-selected {
    color: #c5a059 !important; /* Couleur dorée */
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    padding: 10px;
}

/* On enlève la flèche automatique de Bootstrap */
.lang-selected::after {
    display: none !important;
}

/* 3. Style du rectangle noir (Le Menu qui descend) */
.lang-container .dropdown-menu {
    background-color: #000 !important; /* Fond noir pur */
    border-radius: 0; /* Pas d'arrondi pour le luxe */
    margin-top: 10px !important; /* Espace sous la barre noire */
    padding: 10px 0; /* Espace interne haut/bas */
    min-width: 60px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* 4. Style des liens FR et EN à l'intérieur */
.lang-container .dropdown-item {
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 8px 15px;
    background: transparent !important;
    transition: 0.3s;
}

/* Survol (Hover) */
.lang-container .dropdown-item:hover {
    color: #c5a059 !important; /* Devient doré au survol */
}

/* État Actif */
.lang-container .dropdown-item.active {
    color: #c5a059 !important;
}

/* Style du menu mobile */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Bouton Fermer (La croix) */
.close-mobile-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

/* Liens du menu */
.mobile-menu-content {
    width: 100%;
    text-align: center;
    padding: 20px;
}

.mobile-menu-content a {
    display: block;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 15px 0;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.mobile-menu-content a:hover {
    color: #c5a059; /* Doré */
}

/* Style du Sous-menu Mobile */
.mobile-submenu {
    max-height: 0; /* Caché par défaut */
    overflow: hidden;
    background: #111;
    transition: max-height 0.4s ease-out;
}

.mobile-submenu.open {
    max-height: 300px; /* Ajustez selon le nombre de liens */
    padding: 10px 0;
}

.mobile-submenu a {
    font-size: 16px;
    color: #c5a059; /* Liens des chambres en doré */
    margin: 10px 0;
    opacity: 0.8;
}