/*
 *  __                  __
 * /\ \                /\ \
 * \ \ \___   __  __   \_\ \     __
 *  \ \  _ `\/\ \/\ \  /'_` \  /'__`\
 *   \ \ \ \ \ \ \_\ \/\ \_\ \/\  __/
 *    \ \_\ \_\/`____ \ \___,_\ \____\
 *     \/_/\/_/`/___/> \/__,_ /\/____/
 *                /\___/
 *                \/__/
 *
 /*
 * Theme Hyde - version custom Romain (clean)
 * - Topbar fixe + menu burger mobile (drawer global dans base.html.twig)
 * - Hero full width + nav sticky sous la photo (desktop only)
 * - Sections Accueil + pages Chambres / Contact
 */

/* ========================= */
/* Global resets             */
/* ========================= */

:root{
  --topbar-height: 2.4rem; /* aligné exactement sur la topbar */
}

html {
  font-family: "PT Sans", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

@media (min-width: 48em) { html { font-size: 16px; } }
@media (min-width: 58em) { html { font-size: 20px; } }

body {
  margin: 0;
  background-color: #ffffff;
  color: #333;

  /* évite les scrolls horizontaux accidentels */
  overflow-x: hidden;

  /* Topbar fixe => on décale le contenu */
  padding-top: var(--topbar-height);

  /* scrollbar */
  --sb-track-color: whitesmoke;
  --sb-thumb-color: #202020;
  --sb-size: 7px;
  scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
}

body::-webkit-scrollbar { width: var(--sb-size); }
body::-webkit-scrollbar-track { background: var(--sb-track-color); border-radius: 5px; }
body::-webkit-scrollbar-thumb { background: var(--sb-thumb-color); }

::selection { background-color: #FFF2CA; }

/* ==================================================== */
/* TOPBAR (Header bleu fixe)                            */
/* ==================================================== */

.topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-height);
  background-color: #0C6078;
  color: #fff;
  display: flex;
  align-items: center;
  z-index: 2000;
}

.topbar-inner{
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left{
  display:flex;
  align-items:center;
  gap: .6rem;
}

/* Titre cliquable */
.topbar .site-title{
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none !important;
  font-size: 1rem;
}

.topbar .site-title:hover{ opacity: .85; }

/* Boutons à droite */
.topbar-buttons{
  display:flex;
  gap: .6rem;
}

/* Bouton générique */
.topbar-btn{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.8rem;
  text-decoration: none;
  color: #fff;
  background-color: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
}

.topbar-btn:hover{ background-color: rgba(255,255,255,0.25); }

/* Airbnb */
.topbar-btn-airbnb{
  background-color: #FF5A5F;
  border-color: #FF5A5F;
}
.topbar-btn-airbnb:hover{ background-color: #D93C41; }

/* Langue */
.topbar-btn-lang{
  min-width: 36px;
  text-align: center;
}

/* Burger (mobile only) */
.topbar-burger{
  display:none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.15);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap: 4px;
}

.topbar-burger span{
  display:block;
  width: 16px;
  height: 2px;
  background:#fff;
  border-radius: 999px;
}

/* ==================================================== */
/* HERO full width                                      */
/* ==================================================== */

/* IMPORTANT :
   Hyde/Poole peut mettre des contraintes sur img.
   Ici on force UNIQUEMENT les héros à être full width. */

/* On remonte le hero pour qu'il colle sous la topbar (car body a padding-top) */
.hero{
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: calc(var(--topbar-height) * -1); /* compense le padding-top du body */
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

/* Image hero : full width, aucune limite */
.hero-img{
  display: block;
  width: 100%;
  max-width: none !important; /* clé : ignore les max-width globaux du thème */
  height: auto;
}

/* Variante hero des pages internes : hauteur contrôlée */
.hero--page{
  height: 55vh;        /* ajuste si tu veux : 50vh / 60vh */
  min-height: 340px;
  max-height: 520px;
}

.hero--page .hero-img{
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Container Hyde : on évite d'ajouter du padding-top ici (déjà géré par body) */
.content.container{
  max-width: 72rem !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ==================================================== */
/* HERO NAV (bandeau sous la photo) - DESKTOP ONLY      */
/* ==================================================== */

.hero-nav{
  position: sticky;
  top: var(--topbar-height);
  z-index: 1100;

  /* full width */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  background-color: #0C6078;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
}

.hero-nav-inner{
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}

.hero-nav-links{
  display:flex;
  justify-content:center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.hero-nav-item{
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-nav-item:hover,
.hero-nav-item:focus{
  text-decoration: underline;
}

/* état actif (dans ton twig tu utilises is-active) */
.hero-nav-item.is-active{
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==================================================== */
/* MENU MOBILE (drawer + backdrop) - global base.html   */
/* ==================================================== */

.hero-nav-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 3000;
}

.hero-nav-backdrop[hidden]{ display: none !important; }

.hero-nav-drawer{
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  width: min(86vw, 360px);
  height: calc(100dvh - var(--topbar-height));
  background: #fff;
  z-index: 3100;

  transform: translateX(-110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: transform .22s ease, opacity .15s ease, visibility 0s linear .22s;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  padding: 12px;

  display:flex;
  flex-direction:column;
  gap: 6px;
}

.hero-nav-drawer.open{
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform .22s ease, opacity .15s ease;
}

.hero-nav-drawer-top{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding: 8px 6px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin-bottom: 6px;
}

.hero-nav-drawer-close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  cursor: pointer;
}

.hero-nav-drawer .hero-nav-item{
  color:#111;
  padding: 12px 10px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 600;
}

.hero-nav-drawer .hero-nav-item:hover{
  background: rgba(0,0,0,.05);
}

/* ==================================================== */
/* Responsive : mobile                                 */
/* ==================================================== */

@media (max-width: 860px){
  .topbar-burger{ display:inline-flex; }
  .hero-nav{ display:none !important; } /* pas de bandeau sous la photo */

  .topbar-btn{
    padding: 4px 8px;
    font-size: 0.78rem;
  }
}

@media (min-width: 861px){
  /* Drawer/backdrop jamais visibles en desktop */
  .hero-nav-drawer,
  .hero-nav-backdrop{ display:none !important; }

  /* Desktop : on ne veut JAMAIS voir hero-nav-left */
  .hero-nav-left{ display: none !important; }
}

/* ==================================================== */
/* Titres sections                                     */
/* ==================================================== */

.section-titrebleu,
.section-titreblanc{
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  opacity: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-titrebleu{ color: #ffffff; }
.section-titreblanc{ color: #357289; }

.section-titrebleu::before,
.section-titrebleu::after{
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  max-width: 120px;
}

.section-titreblanc::before,
.section-titreblanc::after{
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(53, 114, 137, 0.35);
  max-width: 120px;
}

/* ==================================================== */
/* INTRO Accueil                                       */
/* ==================================================== */

.intro-block{
  max-width: 58rem;
  margin: 3rem auto 2rem auto;
  padding: 0 1.5rem;
  text-align: justify;
  text-align-last: center;
  text-justify: inter-word;
}

.intro-title{
  color: #333;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.intro-subtitle{
  color: #333 !important;
  font-size: 1.1rem;
  font-weight: 600 !important;
  margin-top: 0;
  margin-bottom: 1.75rem;
}

.intro-block p{
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

/* ==================================================== */
/* CHAMBRES (Home) - slider 3 visibles                  */
/* ==================================================== */

.chambres-section{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #0C6078;
  padding: 3rem 0 4rem;
}

.chambres-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.chambres-section .chambres-title{
  color: #fff;
  text-align: left;
  margin-bottom: 0;
}

.espace-nuit-texte{
  color: #ffffff;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
  text-align: justify;
  text-align-last: center;
}

/* Slider home */
.slider{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.slider-viewport{ overflow: hidden; width: 100%; }

.slider-track{
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 3 visibles */
.slide{
  flex: 0 0 calc(100% / 3);
  padding: 0.75rem;
  box-sizing: border-box;
}

.slide img{
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Flèches */
.slider-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(254,247,229,0.9);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.slider-arrow-prev{ left: 8px; }
.slider-arrow-next{ right: 8px; }
.slider-arrow:hover{ background: #FFF2CA; }

/* Dots */
.slider-dots{
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.slider-dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c9c9c9;
  cursor: pointer;
}

.slider-dot.active{ background: #0C6078; }

/* Responsive slider home */
@media (max-width: 900px){ .slide{ flex: 0 0 50%; } }
@media (max-width: 600px){ .slide{ flex: 0 0 100%; } .slide img{ height: auto; } }

/* ==================================================== */
/* SALON (Home)                                        */
/* ==================================================== */

.section-salon{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #ffffff;
  padding: 4rem 0;
}

.salon-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.salon-text{
  flex: 1;
  max-width: 600px;
  color: #2a5060;
  text-align: justify;
  text-align-last: center;
}

.salon-title{
  color: #1f3b44;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.salon-image img{
  width: 650px;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  display: block;
}

@media (max-width: 900px){
  .salon-container{ flex-direction: column; text-align: center; }
  .salon-text{ max-width: 90%; }
  .salon-image img{ width: 100%; height: auto; }
}

/* ==================================================== */
/* CUISINE (Home)                                      */
/* ==================================================== */

.cuisine-section{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #0C6078;
  padding: 4rem 0;
}

.cuisine-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cuisine-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 2rem;
  flex-direction: row;
}

.cuisine-photo{ flex: 1; max-width: 650px; }

.cuisine-photo img{
  width: 650px;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  display: block;
}

.cuisine-text{
  flex: 1;
  max-width: 520px;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: justify;
  text-align-last: center;
}

.cuisine-section .cuisine-title{
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: left;
}

@media (max-width: 900px){
  .cuisine-container{ flex-direction: column; text-align: center; }
  .cuisine-text{ max-width: 90%; margin: 0 auto; text-align: left; text-align-last: left; }
  .cuisine-photo img{ width: 100%; height: auto; }
}

/* ==================================================== */
/* SDB (Home)                                          */
/* ==================================================== */

.section-sdb{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #ffffff;
  padding: 4rem 0;
}

.sdb-container{
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.sdb-text{
  flex: 1;
  max-width: 600px;
  color: #2a5060;
}

.sdb-title{
  color: #1f3b44;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.sdb-images{
  flex: 1.2;
  position: relative;
  max-width: 650px;
  min-height: 420px;
}

.sdb-img{
  position: absolute;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transition: transform 0.4s ease;
}

.sdb-img img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.sdb-img-main{
  top: 0;
  left: 0;
  width: 78%;
  height: 340px;
  z-index: 1;
}

.sdb-img-secondary{
  bottom: 0;
  right: -5%;
  width: 60%;
  height: 260px;
  z-index: 2;
}

.sdb-images:hover .sdb-img-main{ transform: translate(-4px, -4px); }
.sdb-images:hover .sdb-img-secondary{ transform: translate(4px, 4px); }

@media (max-width: 900px){
  .sdb-container{ flex-direction: column; text-align: center; }
  .sdb-text{ max-width: 90%; }
  .sdb-images{ max-width: 90%; min-height: auto; margin-top: 2rem; }
  .sdb-img-main, .sdb-img-secondary{
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    transform: none;
  }
}

/* ==================================================== */
/* ÉQUIPEMENTS BÉBÉ (Home)                             */
/* ==================================================== */

.equipements-section{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #0C6078;
  padding: 3rem 0;
}

.equipements-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.equipements-content{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.equipements-photos{
  flex: 1;
  max-width: 620px;
  min-width: 260px;
}

.equip-photo{
  margin: 0;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  overflow: hidden;
}

.equip-photo img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.equipements-textblock{
  flex: 1;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.55;
}

.equipements-textblock .equipements-title{
  text-align: left;
  margin-bottom: 1.2rem;
  font-size: 2rem;
  color: #fff;
}

@media (max-width: 900px){
  .equipements-content{ flex-direction: column; text-align: center; }
  .equipements-photos{ max-width: 90%; margin-bottom: 2rem; }
  .equip-photo img{ height: auto; }
  .equipements-textblock{ text-align: left; }
}

/* ==================================================== */
/* RÉGION (Home)                                       */
/* ==================================================== */

.region-section{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #ffffff;
  padding: 4rem 0;
}

.region-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.region-title{
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f3b44;
  margin-bottom: 2.5rem;
}

.region-tiles{
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.region-tile{
  flex: 1;
  height: 220px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.2rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.region-tile:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.25);
}

@media (max-width: 1100px){
  .region-tiles{ flex-wrap: wrap; }
  .region-tile{ flex: calc(50% - 1rem); }
}

@media (max-width: 600px){
  .region-tile{ flex: 100%; }
}

/* ==================================================== */
/* CTA CONTACT (Home)                                  */
/* ==================================================== */

.contact-section{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #0C6078;
  padding: 4rem 0;
  color: #fff;
}

.contact-inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

.contact-title{
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #fff;
}

.contact-text{
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  opacity: 0.95;
}

.contact-buttons{
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn{
  padding: 0.75rem 1.6rem;
  border-radius: 18px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.contact-btn:hover{ background-color: #ADD8E6; }

/* Forcer le blanc sur les strong dans les sections bleues */
.chambres-section strong,
.cuisine-section strong,
.equipements-section strong,
.contact-section strong{
  color: #ffffff !important;
  font-weight: 700;
}

/* ==================================================== */
/* PAGE CHAMBRES                                       */
/* ==================================================== */

.intro-chambres{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #ffffff;
  padding: 4rem 0;
}

.intro-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.intro-chambres .intro-title{
  font-size: 2.6rem;
  color: #205a6d;
  margin-bottom: 1rem;
}

.intro-text{
  font-size: 1.2rem;
  color: #2a5060;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.chambre-section{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 4rem 0;
}

.chambre-section.bleu{ background: #0C6078; }
.chambre-section.sable{ background: #ffffff; }

.chambre-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.chambre-header{
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.chambre-numero{
  font-size: 2.4rem;
  margin: 0;
  white-space: nowrap;
  color: #ffffff;
}

.sable .chambre-numero{ color: #205a6d; }

.chambre-description{
  margin: 0;
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e6f6ff;
}

.sable .chambre-description{ color: #2a5060; }

.chambre-section .slider{
  margin-top: 2.5rem;
  box-shadow: none;
}

.chambre-section .slider-track{
  display: flex;
  transition: transform 0.4s ease;
}

.chambre-section .slider-track img{
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.chambre-section .slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  color: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
}

.chambre-section .slider-btn.prev{ left: 10px; }
.chambre-section .slider-btn.next{ right: 10px; }

@media (max-width: 900px){
  .chambre-inner{ padding: 0 1.5rem; }
  .chambre-header{ flex-direction: column; align-items: flex-start; }
  .chambre-section .slider-track img{ height: 220px; }
}

/* ==================================================== */
/* PAGE CONTACT (layout premium)                        */
/* ==================================================== */

.contact{
  max-width: 980px;
  margin: 0 auto;
  padding: 2.5rem 1rem 3rem;
}

.contact-hero{ margin: 0 0 1.5rem; }

.contact-hero h1{
  font-size: 2rem;
  margin: 0 0 .35rem;
  letter-spacing: .2px;
}

.contact-hero p{
  margin: 0;
  color: rgba(0,0,0,.62);
  max-width: 52ch;
}

.contact-layout{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
  align-items: start;
}

.stack{ display: grid; gap: 1rem; }

.panel{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.panel--primary{
  border-color: rgba(12,96,120,.22);
  box-shadow: 0 18px 50px rgba(12,96,120,.12);
}

.panel-head{
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.panel h2, .panel h3{
  margin: 0 0 .2rem;
  line-height: 1.15;
}

.muted{ color: rgba(0,0,0,.60); margin: 0; }

.icon-dot{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(12,96,120,.12);
  color: #0C6078;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}

.icon-dot--light{
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.7);
}

.cta-row{
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem .95rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  border: 1px solid transparent;
  transition: transform .12s ease, background-color .12s ease, border-color .12s ease;
  white-space: nowrap;
}

.btn:active{ transform: translateY(1px); }

.btn--solid{
  background: #0C6078;
  color: #fff;
  border-color: #0C6078;
}

.btn--solid:hover{
  background: #0a5469;
  border-color: #0a5469;
}

.btn--ghost{
  background: #fff;
  color: #0C6078;
  border-color: rgba(12,96,120,.35);
}

.btn--ghost:hover{ background: rgba(12,96,120,.06); }

.btn--full{ width: 100%; margin-top: 1rem; }

.contact-persons{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.contact-person{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
}

.contact-person img{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  transition: transform .15s ease;
}

.contact-person:hover img{ transform: translateY(-2px); }

@media (max-width: 860px){
  .contact-layout{ grid-template-columns: 1fr; }
  .contact-hero h1{ font-size: 1.6rem; }
  .contact-person img{ width: 72px; height: 72px; }
}

/* Coller la navbar au hero (supprime le bandeau blanc) */
.hero { margin-bottom: 0 !important; }
.hero-img { margin-bottom: 0 !important; }
.hero-nav { margin-top: 0 !important; }



/* ====================================================
   PAGE CHAMBRES – VERSION PREMIUM (CARDS)
   Colle ce bloc à la FIN de custom.css
   ==================================================== */

/* Wrapper */
.rooms{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 2.5rem 0 4rem;
  background: #ffffff;
}

.rooms-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2rem;
}

/* Card premium */
.room-card{
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 420px;
}

.room-card--reverse{
  grid-template-columns: 0.9fr 1.1fr;
}

.room-card--reverse .room-media{ order: 2; }
.room-card--reverse .room-content{ order: 1; }

/* Media */
.room-media{
  position: relative;
  background: #0c6078;
}

.room-slider{
  height: 100%;
  position: relative;
  overflow: hidden;
}

.room-slider .slider-track{
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
}

.room-slider .slider-track img{
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Flèches plus premium */
.room-slider .slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.20);
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .12s ease, background-color .12s ease;
}

.room-slider .slider-btn:hover{
  background: rgba(0,0,0,.30);
  transform: translateY(-50%) scale(1.04);
}

.room-slider .slider-btn.prev{ left: 14px; }
.room-slider .slider-btn.next{ right: 14px; }

/* Contenu */
.room-content{
  padding: 1.8rem 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .9rem;
}

.room-topline{
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}

.room-badge{
  display: inline-flex;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  background: rgba(12,96,120,.10);
  color: #0C6078;
  border: 1px solid rgba(12,96,120,.22);
}

.room-badge--soft{
  background: rgba(255, 90, 95, .10);
  color: #b82e33;
  border-color: rgba(255, 90, 95, .22);
}

.room-badge--green{
  background: rgba(46, 160, 120, .10);
  color: #1f7a5d;
  border-color: rgba(46, 160, 120, .22);
}

.room-meta{
  color: rgba(0,0,0,.55);
  font-weight: 650;
  font-size: .9rem;
}

.room-title{
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
  color: #1f3b44;
}

.room-lead{
  margin: 0;
  color: rgba(0,0,0,.70);
  line-height: 1.6;
  font-size: 1.02rem;
  max-width: 60ch;
}

/* Liste premium */
.room-points{
  list-style: none;
  padding: 0;
  margin: .2rem 0 0;
  display: grid;
  gap: .35rem;
}

.room-points li{
  position: relative;
  padding-left: 1.35rem;
  color: rgba(0,0,0,.70);
  line-height: 1.5;
}

.room-points li::before{
  content: "•";
  position: absolute;
  left: .2rem;
  top: 0;
  color: #0C6078;
  font-size: 1.2rem;
  line-height: 1.1;
}

.room-points strong{
  color: rgba(0,0,0,.82);
}

/* Hover subtil */
@media (hover:hover){
  .room-card{
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .room-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 24px 70px rgba(0,0,0,.14);
  }
}

/* Responsive */
@media (max-width: 980px){
  .room-card,
  .room-card--reverse{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .room-media{
    height: 320px;
  }

  .room-content{
    padding: 1.3rem 1.2rem 1.2rem;
  }

  .room-title{
    font-size: 1.6rem;
  }
}

/* =========================================
   CHAMBRES – ordre mobile (texte avant photo)
   ========================================= */

@media (max-width: 980px){
  .room-card{
    display: flex;
    flex-direction: column;
  }

  .room-content{
    order: 1; /* TEXTE EN PREMIER */
  }

  .room-media{
    order: 2; /* PHOTOS APRÈS */
  }
}

/* ====================================================
   CTA FIN PAGE CHAMBRES – CENTRÉ & PREMIUM
   ==================================================== */

.rooms-cta{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #0C6078;
  padding: 4rem 0 5.5rem; /* espace bas volontaire */
}

.rooms-cta-inner{
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  color: #ffffff;
}

.rooms-cta-title{
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.rooms-cta-text{
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
  opacity: 0.95;
}

/* Bouton principal bien visible */
.rooms-cta-btn{
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 22px;
  text-decoration: none;
  color: #0C6078;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.rooms-cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
  background-color: #FFF2CA;
}

/* Mobile */
@media (max-width: 700px){
  .rooms-cta-title{
    font-size: 1.7rem;
  }

  .rooms-cta-text{
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .rooms-cta-btn{
    width: 100%;
    max-width: 320px;
  }
}
/* =========================================
   SALON – Intro + blocs + Dual Slider
   ========================================= */

.salon-intro{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #ffffff;
  padding: 3.5rem 0 2.5rem;
}

.salon-intro-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.salon-intro-title{
  font-size: 2.6rem;
  color: #205a6d;
  margin: 0 0 1rem;
}

.salon-intro-text{
  font-size: 1.15rem;
  color: #2a5060;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}

/* Bloc */
.salon-block{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #ffffff;
  padding: 3.5rem 0;
}

.salon-block + .salon-block{
  padding-top: 2.5rem;
}

/* Layout texte gauche + slider droite */
.salon-block-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 2.5rem;
  align-items: start;
}

.salon-block-text{
  padding-top: .2rem;
}

.salon-kicker{
  margin: 0 0 .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .9rem;
  color: rgba(31,59,68,.65);
}

.salon-title{
  margin: 0 0 1rem;
  font-size: 2.2rem;
  line-height: 1.1;
  color: #1f3b44;
}

.salon-desc{
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2a5060;
}

.salon-list{
  margin: 0;
  padding-left: 1.15rem;
  color: #2a5060;
  line-height: 1.7;
}

.salon-list li{ margin: .25rem 0; }

/* ===== Dual Slider (big + small) ===== */

.dual-slider{
  position: relative;
}

.dual-stage{
  display: grid;
  grid-template-columns: 1.55fr 0.9fr;
  gap: 1.25rem;
  align-items: end;
}

.dual-frame{
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  background: transparent;
}

.dual-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Grande image */
.dual-frame--big{
  aspect-ratio: 4 / 3;
  min-height: 420px;
}

/* Petite image : moins haute */
.dual-frame--small{
  aspect-ratio: 3 / 4;
  height: 72%;
  align-self: end;
}

/* Flèches */
.dual-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;

  background: rgba(0,0,0,.28);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.dual-prev{ left: -10px; }
.dual-next{ right: -10px; }

.dual-arrow:hover{ background: rgba(0,0,0,.38); }

/* Responsive */
@media (max-width: 980px){
  .salon-block-inner{
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .dual-stage{
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .dual-frame--big{
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .dual-frame--small{
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .dual-prev{ left: 8px; }
  .dual-next{ right: 8px; }
}


/* =========================================
   SALON – Dual slider (big left, small below)
   ========================================= */

.dual-stage{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0.2rem;
}

/* Grande image : un peu moins imposante */
.dual-frame--big{
  aspect-ratio: 4 / 3;
  min-height: 380px;          /* ↓ avant 420px */
  max-width: 92%;             /* réduit légèrement la largeur */
}

/* Petite image : en dessous + décalée à droite */
.dual-frame--small{
  aspect-ratio: 3 / 4;
  width: 62%;
  margin-left: auto;          /* aligne à droite */
  height: auto;
}

/* Mobile : full width, empilé naturellement */
@media (max-width: 980px){
  .dual-frame--big{
    max-width: 100%;
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .dual-frame--small{
    width: 100%;
    aspect-ratio: 16 / 10;
  }
}


/* =========================================
   SALON – Dual slider SUPERPOSÉ
   Big moins large + small en dessous + chevauchement
   ========================================= */

.dual-stage{
  display: grid;
  grid-template-columns: 2fr 1fr; /* grande image | petite image */
  gap: 0.2 rem;
  align-items: start;
}

/* Grande image */
.dual-frame--big{
  aspect-ratio: 4 / 3;
  min-height: 380px;
  width: 100%;
}

/* Petite image */
.dual-frame--small{
  aspect-ratio: 3 / 4;
  width: 100%;
}


/* Mobile : on enlève le chevauchement (lisible) */
@media (max-width: 980px){
  .dual-frame--big{
    max-width: 100%;
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .dual-frame--small{
    width: 100%;
    margin-top: 0;       /* plus de superposition sur mobile */
    aspect-ratio: 16 / 10;
  }
}

/* =========================================
   SALON – MOBILE : 1 seule photo visible
   ========================================= */

@media (max-width: 980px){

  /* On force une seule image visible */
  .dual-stage{
    display: block;
  }

  /* Grande image : visible normalement */
  .dual-frame--big{
    max-width: 100%;
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }

  /* Petite image : MASQUÉE sur mobile */
  .dual-frame--small{
    display: none;
  }
}

/* =========================
   CUISINE – CSS SCOPÉ
   (ne s'applique qu'à .kitchen)
========================= */

.kitchen{
  --k-max: 1100px;
  --k-pad: 1.2rem;
  --k-radius: 18px;
  --k-shadow: 0 10px 30px rgba(0,0,0,.08);
  --k-line: rgba(0,0,0,.10);
  --k-muted: rgba(0,0,0,.65);
  color: rgba(0,0,0,.88);
}

.kitchen img{
  display:block;
  max-width:100%;
  height:auto;
}

/* Sections */
.kitchen .kitchen__section{
  max-width: var(--k-max);
  margin: 0 auto;
  padding: 2.2rem var(--k-pad);
}

.kitchen .kitchen__sectionHead{
  margin-bottom: 1.2rem;
}

.kitchen .kitchen__sectionHead h2{
  margin: 0 0 .35rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  letter-spacing: -0.02em;
}

.kitchen .kitchen__sectionHead p{
  margin: 0;
  color: var(--k-muted);
  line-height: 1.5;
}

/* Hero */
.kitchen .kitchen__hero{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.kitchen .kitchen__heroMedia{
  border-radius: var(--k-radius);
  overflow: hidden;
  box-shadow: var(--k-shadow);
  border: 1px solid var(--k-line);
}

.kitchen .kitchen__heroMedia img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.kitchen .kitchen__title{
  margin: 0 0 .5rem;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  letter-spacing: -0.03em;
}

.kitchen .kitchen__subtitle{
  margin: 0 0 1rem;
  color: var(--k-muted);
  line-height: 1.6;
}

/* Chips */
.kitchen .kitchen__chips{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
}

.kitchen .kitchen__chip{
  border: 1px solid var(--k-line);
  background: rgba(255,255,255,.6);
  padding: .42rem .7rem;
  border-radius: 999px;
  font-size: .95rem;
  line-height: 1;
}

/* Zones */
.kitchen .kitchen__zone{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.2rem;
  align-items: start;

  padding: 1.2rem;
  border: 1px solid var(--k-line);
  border-radius: var(--k-radius);
  background: rgba(255,255,255,.6);
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  margin-bottom: 1.1rem;
}

.kitchen .kitchen__zone--reverse .kitchen__zoneText{ order: 2; }
.kitchen .kitchen__zone--reverse .kitchen__zoneMedia{ order: 1; }

.kitchen .kitchen__zoneText h3{
  margin: 0 0 .45rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.kitchen .kitchen__zoneText p{
  margin: 0 0 .9rem;
  color: var(--k-muted);
  line-height: 1.55;
}

.kitchen .kitchen__miniList{
  margin: 0;
  padding-left: 1.05rem;
  color: rgba(0,0,0,.78);
}

.kitchen .kitchen__miniList li{
  margin: .25rem 0;
}

.kitchen .kitchen__zoneMedia{
  border-radius: calc(var(--k-radius) - 6px);
  overflow: hidden;
  border: 1px solid var(--k-line);
}

.kitchen .kitchen__zoneMedia img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Equip grid */
.kitchen .kitchen__equipGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.kitchen .kitchen__equip{
  border: 1px solid var(--k-line);
  border-radius: 14px;
  padding: .85rem .9rem;
  background: rgba(255,255,255,.75);
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}

/* Note */
.kitchen .kitchen__note{
  border: 1px solid var(--k-line);
  border-radius: var(--k-radius);
  padding: 1.35rem;
  background: rgba(255,255,255,.75);
  box-shadow: var(--k-shadow);
}

.kitchen .kitchen__note h2{
  margin: 0 0 1rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.kitchen .kitchen__noteGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}

.kitchen .kitchen__noteItem{
  border: 1px dashed rgba(0,0,0,.18);
  border-radius: 16px;
  padding: .9rem;
  background: rgba(255,255,255,.6);
}

.kitchen .kitchen__noteItem h3{
  margin: 0 0 .4rem;
  font-size: 1.05rem;
}

.kitchen .kitchen__noteItem p{
  margin: 0;
  color: var(--k-muted);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px){
  .kitchen .kitchen__hero{
    grid-template-columns: 1fr;
  }

  .kitchen .kitchen__zone{
    grid-template-columns: 1fr;
  }

  .kitchen .kitchen__zone--reverse .kitchen__zoneText,
  .kitchen .kitchen__zone--reverse .kitchen__zoneMedia{
    order: initial;
  }

  .kitchen .kitchen__equipGrid{
    grid-template-columns: repeat(2, 1fr);
  }

  .kitchen .kitchen__noteGrid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .kitchen .kitchen__equipGrid{
    grid-template-columns: 1fr;
  }

  .kitchen .kitchen__section{
    padding: 1.6rem var(--k-pad);
  }
}