/* =============================================================
   custom.css — Château du Bost
   Styles partagés centralisés (ne pas dupliquer dans les pages)
   ============================================================= */

/* ---- Popup générique ---- */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-content {
  background-color: rgb(249, 241, 232);
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* ---- Galerie images (container-fluid / list-img) ---- */
.container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.list-img {
  display: flex;
  gap: 10px;
}
.list-img img {
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
}

/* ---- Swiper chambres ---- */
.swiper-chambre {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.swiper-chambre .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-chambre .swiper-button-prev,
.swiper-chambre .swiper-button-next {
  color: #fff;
}
.swiper-chambre .swiper-pagination-bullet-active {
  background: #e6c9a2;
}

/* ---- Bouton vert (style équipe / nature) ---- */
.btn-vert {
  background: #6b795d !important;
  border: 1px solid #6b795d !important;
  color: #fff !important;
}
.btn-vert:hover {
  background: transparent !important;
  border: 1px solid #000 !important;
  color: #000 !important;
}
.btn-vert::before {
  display: none !important;
}

/* ---- Bons cadeaux : couleur prix ---- */
.gift-vouchers-box .price {
  background: #6b795d !important;
}

/* ---- Navigation principale ---- */
#main-nav .menu > li > a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
}

/* ---- Responsive mobile général ---- */
@media (max-width: 768px) {
  .title {
    font-size: 32px !important;
  }
}
