:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;

  --border: #e6e6e6;
  --field-bg: #f2f2f2;

  --gold: #b59a3a;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* ================= TOPBAR (Luxe Wellness) ================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 20, 23, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.topbar__left{ display: flex; align-items: center; }
.topbar__right{ display: flex; justify-content: flex-end; align-items: center; }

/* Brand */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand__logo{
  width: 42px;
  height: 42px;
  display: block;
}

.brand__text{
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand__name{
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(214, 182, 106, 0.95); /* or doux */
  text-transform: uppercase;
}

.brand__tagline{
  font-size: 0.78rem;
  color: rgba(233, 240, 242, 0.70);
  letter-spacing: 0.02em;
}

/* ================= NAV ================= */
.nav{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav--center{ justify-content: center; }

.nav__link{
  color: rgba(233, 240, 242, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  letter-spacing: 0.02em;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.nav__link:hover{
  background: rgba(255,255,255,0.06);
  color: rgba(233, 240, 242, 0.98);
}

.nav__link--cta{
  background: rgba(214, 182, 106, 0.16);
  border: 1px solid rgba(214, 182, 106, 0.30);
  color: rgba(233, 240, 242, 0.95);
}
.nav__link--cta:hover{
  background: rgba(214, 182, 106, 0.22);
  transform: translateY(-1px);
}

/* Dropdown */
.nav__dropdown{ position: relative; }
.chev{ font-size: 11px; opacity: .7; margin-left: 6px; }

.nav__dropdownMenu{
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: rgba(12, 16, 18, 0.96);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  padding: 10px;
}
.nav__dropdownMenu a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(233,240,242,0.90);
  font-size: 14px;
  font-weight: 600;
  transition: background 160ms ease, transform 160ms ease;
}
.nav__dropdownMenu a:hover{
  background: rgba(255,255,255,0.06);
  transform: translateX(1px);
}
.nav__dropdown:hover .nav__dropdownMenu{ display: block; }

/* ================= CART ================= */
.cart{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration: none;
  color: rgba(233,240,242,0.90);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.cart:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
}
.cart__icon{ font-size: 16px; }
.cart__count{
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  background: rgba(214, 182, 106, 0.95);
  color: #0e1417;
  border: 1px solid rgba(0,0,0,0.25);
}

/* ================= LANG ================= */
.lang{ display: flex; gap: 8px; }
.lang__btn{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(233,240,242,0.90);
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
}
.lang__btn:hover{ background: rgba(255,255,255,0.09); }
.lang__btn.is-active{ border-color: rgba(214,182,106,0.55); }

/* Responsive header */
@media (max-width: 980px){
  .topbar__inner{
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand cart"
      "nav nav";
    gap: 12px;
  }
  .topbar__left{ grid-area: brand; }
  .topbar__right{ grid-area: cart; }
  .nav--center{
    grid-area: nav;
    justify-content: flex-start;
    gap: 10px;
  }
  .brand__tagline{ display: none; }
}


/* ================= CAROUSEL ================= */
.carousel{
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: #ddd;
}
.carousel__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.carousel__slide.is-active{
  opacity: 1;
  pointer-events: auto;
}
.carousel__slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel__dots{
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,.8);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.6);
}
.dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  border: none;
  cursor: pointer;
}
.dot.is-active{ background: rgba(0,0,0,.7); }

/* ================= LAYOUT ================= */
.container{
  width: min(1200px, 92vw);
  margin: 24px auto 60px;
}

.card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.page-title{
  margin: 0 0 10px;
  font-size: 22px;
}

/* ================= BOOKING BAR ================= */
.bookingbar{
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 16px;
  align-items: end;

  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  border: 1px solid #f0f0f0;
}

.bookingbar__label{ margin-bottom: 6px; }

/* ===== Icon label via classes (person/date/heure) ===== */
.bookingbar__label.label-icon{
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 18px 18px;
}

.bookingbar__label.label-icon--human{
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\
<path d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/>\
<circle cx='12' cy='7' r='4'/>\
</svg>");
}

.bookingbar__label.label-icon--calendar{
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\
<rect x='3' y='4' width='18' height='18' rx='2'/>\
<line x1='16' y1='2' x2='16' y2='6'/>\
<line x1='8' y1='2' x2='8' y2='6'/>\
<line x1='3' y1='10' x2='21' y2='10'/>\
</svg>");
}

.bookingbar__label.label-icon--clock{
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\
<circle cx='12' cy='12' r='10'/>\
<polyline points='12 6 12 12 16 14'/>\
</svg>");
}

/* ===== Service icon using your SVG file (swimming_pool_icon.svg) ===== */
.bookingbar__label--icon{
  display: flex;
  align-items: center;
  height: 18px;
  margin-bottom: 6px;
}
.bookingbar__label--icon img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.bookingbar__control{
  width: 100%;
  height: 44px;
  padding: 0 12px;

  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--field-bg);

  font-size: 14px;
  color: #555;
  outline: none;
}

.bookingbar__control.icon-human,
.bookingbar__control.icon-calendar,
.bookingbar__control.icon-clock{
  padding-left: 40px;
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px 16px;
}

.bookingbar__control.icon-human{
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\
<path d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/>\
<circle cx='12' cy='7' r='4'/>\
</svg>");
}

.bookingbar__control.icon-calendar{
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\
<rect x='3' y='4' width='18' height='18' rx='2'/>\
<line x1='16' y1='2' x2='16' y2='6'/>\
<line x1='8' y1='2' x2='8' y2='6'/>\
<line x1='3' y1='10' x2='21' y2='10'/>\
</svg>");
}

.bookingbar__control.icon-clock{
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\
<circle cx='12' cy='12' r='10'/>\
<polyline points='12 6 12 12 16 14'/>\
</svg>");
}

.bookingbar__control:focus{
  background: #f6f6f6;
  border-color: #d0d0d0;
  box-shadow: 0 0 0 4px rgba(0,0,0,.04);
}

.bookingbar__actions{
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}

.bookingbar__actions--center{
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.bookingbar__btn{
  height: 44px;
  padding: 0 22px;

  border-radius: 10px;
  border: 2px solid var(--gold);
  background: #fff;

  color: #1a1a1a;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .5px;

  cursor: pointer;
  white-space: nowrap;
}
.bookingbar__btn:hover{ background: #fffaf0; }
.bookingbar__btn--gold{ border-width: 3px; }

.bookingbar--small{
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 12px;
  padding: 14px 16px;
}
.bookingbar--small .bookingbar__control{
  height: 42px;
  font-size: 13px;
}

.extrasline{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 12px;
}

.is-hidden{ display: none; }

/* ================= FOOTER ================= */
.footer{
  border-top: 1px solid var(--border);
  padding: 16px;
}
.footer__inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  gap: 12px;
}
.social{
  text-decoration: none;
  font-size: 22px;
  padding: 10px 12px;
  border-radius: 14px;
}
.social:hover{ background: rgba(0,0,0,.05); }

.footer--main{
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.footer__left{ display: flex; flex-direction: column; gap: 10px; }
.footer__admin{ display: flex; gap: 8px; flex-wrap: wrap; }
.footer__center{ text-align: center; font-weight: 700; font-size: 14px; }
.footer__right{ display: flex; justify-content: flex-end; gap: 12px; font-size: 20px; }

@media (max-width: 800px){
  .footer--main{ grid-template-columns: 1fr; text-align: center; }
  .footer__right{ justify-content: center; }
}

/* ================= ADMIN FAB ================= */
.admin-fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.admin-fab:hover{ background: #000; }

/* ================= MODAL (global) ================= */
.modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: grid;
  place-items: center;
  padding: 16px;
}
.modal.is-hidden{ display: none; }
.modal__card{
  width: min(520px, 96vw);
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 16px;
}
.modal__title{ margin: 0 0 8px; font-size: 18px; }
.modal__text{ margin: 0 0 14px; color: var(--muted); line-height: 1.4; }
.modal__actions{ display: flex; gap: 10px; justify-content: flex-end; }

.btn{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.btn:hover{ background: #000; }
.btn--ghost{ background: #fff; color: #111; }
.btn--ghost:hover{ background: rgba(0,0,0,.05); }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px){
  .bookingbar{ grid-template-columns: 1fr 1fr; }
  .bookingbar__actions{ justify-content: stretch; }
  .bookingbar__btn{ width: 100%; }
}
@media (max-width: 720px){
  .carousel{ height: 260px; }
  .bookingbar{ grid-template-columns: 1fr; }
  .bookingbar--small{ grid-template-columns: 1fr; }
  .extrasline{ grid-template-columns: 1fr; }
}

/* ================= ADMIN DASHBOARD ================= */
.admin{ margin-top: 18px; }
.admin__title{
  margin: 0 0 14px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: .5px;
}

.admin__layout{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  align-items: start;
}

.admin__sidebar{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  position: sticky;
  top: 86px;
}

.admin__tab{
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  font-size: 14px;
}
.admin__tab:hover{ background: rgba(0,0,0,.05); }
.admin__tab.is-active{ background: #111; color: #fff; }

.admin__content{ min-width: 0; }
.admin__panel{ display: none; }
.admin__panel.is-active{ display: block; }

.admin__h2{
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 900;
}

.admin-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px;
}

.admin-field{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.admin-field__label{
  font-weight: 900;
  font-size: 16px;
}

.note{
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.admin-actions{
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* chips legend */
.admin-legend{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:12px; }
.chip{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
}
.chip--ok{ border-color: rgba(0,0,0,.15); }
.chip--warn{ border-color: rgba(0,0,0,.15); }
.chip--bad{ border-color: rgba(0,0,0,.15); }

/* DAY grid */
.day-grid{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px 12px;
  align-items: start;
}
.day-time{
  font-weight: 900;
  font-size: 12px;
  color: #444;
  padding-top: 7px;
}
.day-slot{
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fafafa;
  position: relative;
  overflow: hidden;
}
.day-block{
  position: absolute;
  inset: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  color: #111;
  background: #d9d9d9;
}

/* WEEK table */
.week-wrap{
  overflow: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.week-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
  background: #fff;
}
.week-table th, .week-table td{
  border-bottom: 1px solid var(--border);
  padding: 8px 10px;
  font-size: 12px;
}
.week-table th{
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  font-weight: 900;
}
.week-time{ font-weight: 900; color:#444; width: 80px; }
.cell2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.badge{
  border-radius: 10px;
  padding: 6px 8px;
  text-align: center;
  font-weight: 900;
  border: 1px solid var(--border);
  background: #fff;
}
.badge--ok{ background: #fff; }
.badge--green{ background: #e8f7ea; border-color: #b7e6bf; }
.badge--red{ background: #ffe8e8; border-color: #ffbcbc; }

/* MONTH calendars */
.month-wrap{ display: grid; gap: 16px; }
.month-card{ border: 1px solid var(--border); border-radius: 16px; padding: 12px; background:#fff; }
.month-title{ font-weight: 900; margin: 0 0 10px; }
.calendar{ display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.cal-head{ font-size: 11px; font-weight: 900; color: #444; text-align: center; padding: 6px 0; }
.daycell{ border: 1px solid var(--border); border-radius: 12px; min-height: 56px; padding: 8px; background: #fff; }
.daycell .d{ font-weight: 900; font-size: 12px; }
.daycell .n{ margin-top: 4px; font-size: 12px; font-weight: 900; color: #111; }
.daycell.is-muted{ opacity: .35; }

/* Settings */
.settings-grid{ display: grid; grid-template-columns: repeat(2, minmax(240px, 1fr)); gap: 12px; }
.settings-grid .admin-field select,
.admin-card select{
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--field-bg);
  font-size: 13px;
  font-weight: 700;
}

/* Responsive admin */
@media (max-width: 980px){
  .admin__layout{ grid-template-columns: 1fr; }
  .admin__sidebar{ position: relative; top: 0; }
  .settings-grid{ grid-template-columns: 1fr; }
}

/* ================= ADMIN PRICE ALIGNMENT ================= */
.admin-price-grid{ display: grid; grid-template-columns: 1fr; gap: 10px; }

.admin-price-row{
  display: grid;
  grid-template-columns: 1fr 160px; /* TITRE | SELECT */
  align-items: center;
  gap: 16px;
}

.admin-price-label{
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.admin-price-control{ display: flex; justify-content: flex-end; }
.admin-price-control select{ width: 160px; }

/* lignes ajoutées dynamiquement */
.admin-extra-lines{ display: grid; gap: 10px; margin-top: 6px; }

/* Box */
.admin-box{ margin-bottom: 18px; }
.admin-box__head{ margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.admin-box__title{ margin: 0; font-size: 16px; font-weight: 900; }

/* bouton + centré */
.admin-plus{ display: flex; justify-content: center; margin-top: 12px; }
.admin-plus__btn{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
  color: var(--gold);
  font-size: 26px;
  font-weight: 900;
  cursor: pointer;
}
.admin-plus__btn:hover{ background: #fffaf0; }

@media (max-width: 720px){
  .admin-price-row{ grid-template-columns: 1fr; gap: 6px; }
  .admin-price-control{ justify-content: flex-start; }
  .admin-price-control select{ width: 100%; }
}

/* ================= MODAL ADMIN (AJOUT / MODIFICATION) ================= */
.modal__title{
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
}

.admin-modal-form{ display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 26px; }
.admin-modal-label{ font-size: 13px; font-weight: 700; color: #111; }
.admin-modal-input{
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--field-bg);
  font-size: 14px;
}

/* Zone boutons (modal admin) */
#priceModal .modal__actions{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
#priceModal .modal__actions .btn{
  min-width: 120px;
  height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}
#priceModal .modal__actions .btn--ghost{
  background: #fff;
  border: 2px solid #111;
  color: #111;
}

/* ================= CART PAGE ================= */
.cartpage__head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cartlist{ display: grid; gap: 12px; }
.cartitem{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}
.cartitem__title{ font-weight: 900; font-size: 14px; }
.cartitem__sub{ color: #666; font-size: 12px; margin-top: 4px; }
.cartpage__footer{ display: flex; justify-content: flex-end; margin-top: 16px; }

/* ================= INDEX PAGE LOOK ================= */
.page-index{ background-color: #fbf8f3; }
.page-index .card,
.page-index .booking,
.page-index .carousel{ background: #fff; }
.page-index .description-title{ color: var(--gold); }

/* Description box */
.description-box{ margin-top: 28px; }
.description-title{ margin: 0 0 10px; font-size: 20px; font-weight: 900; text-align: center; }
.description-text{ font-size: 14px; line-height: 1.6; color: #333; text-align: justify; }

.site-footer {
  background: #0e1417;
  color: #e9f0f2;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.site-footer * { box-sizing: border-box; }

.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 20px 18px;
}

/* ✅ 3 colonnes équidistantes */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-col { min-width: 0; }

.footer-title {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 650;
  margin: 0 0 14px 0;
  color: #ffffff;
}

/* ✅ "Nous trouver" aligné au centre de la map */
.footer-title-center { text-align: center; }

.footer-list,
.footer-navlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact icons layout */
.footer-contact-icons .contact-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: center;
}

.contact-icon {
  width: 18px;
  height: 18px;
  opacity: 0.9;
  flex-shrink: 0;
  display: block;
}

.contact-text {
  color: rgba(233,240,242,0.92);
}

.footer-link {
  color: #e9f0f2;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, opacity 160ms ease;
}

.footer-link:hover {
  opacity: 0.92;
  border-bottom-color: rgba(233,240,242,0.65);
}

/* ✅ Map plus petite et centrée */
.footer-map { text-align: center; }

.footer-map .map-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Bottom */
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 16px;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.social-btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
}

.social-btn img {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-legal {
  text-align: center;
  display: grid;
  gap: 6px;
}

.footer-company,
.footer-copy {
  font-size: 0.9rem;
  color: rgba(233,240,242,0.78);
}

.footer-links {
  font-size: 0.9rem;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-contact {
  padding-right: 16px;
}

.footer-nav {
  padding-left: 56px;
}

.legal-link {
  color: rgba(233,240,242,0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  opacity: 0.92;
}

.legal-link:hover { opacity: 1; }

.dot { opacity: 0.5; }

.footer-admin {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.admin-link {
  font-size: 0.78rem;
  color: rgba(233,240,242,0.62);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  transition: opacity 160ms ease, background 160ms ease, border-color 160ms ease;
}

.admin-link:hover {
  opacity: 0.9;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

/* Responsive */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-admin { justify-content: center; }
}
.contact-icon {
  width: 18px;
  height: 18px;
  display: block;
  filter: invert(1) brightness(1.6); /* noir -> blanc */
  opacity: 0.92;
}

/* =========================================================
   ATMOSPHÈRE — ICÔNES (AJOUTÉ / CORRIGÉ)
   - Icônes plus petites
   - Grille 3x2 qui remplit la box
   - Suppression du texte sous les icônes (si présent)
   ========================================================= */
.atmosphere-icons{
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 18px;
  margin-top: 22px;
  align-items: center;
}

.icon-item{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  border-radius: 22px;
  border: 1px solid rgba(214, 182, 106, 0.30);
  background: rgba(255,255,255,0.06);
  overflow: hidden; /* empêche les SVG de déborder */
}

/* Taille réelle des icônes */
.icon-item img{
  width: 46px;
  height: 46px;
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  display: block;
}

/* 🔥 Retire les titres si jamais il y a encore un <span> */
.icon-item span{
  display: none !important;
}

/* Responsive */
@media (max-width: 520px){
  .atmosphere-icons{
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-item{
    height: 86px;
  }
  .icon-item img{
    width: 44px;
    height: 44px;
  }
}


/* =========================================================
   FIX LOGO HEADER : empêche logo.svg de prendre toute la place
   ========================================================= */
.topbar .brand__logo{
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  object-fit: contain !important;
  flex: 0 0 42px !important;
}
