/* → Variables de polices & couleurs */
:root {
  --clr-bg: #ffffff;
  --clr-text: #5C3B2E;
  --clr-btn: #5C4A3D;
  --ff-base: 'Quicksand', sans-serif;
  --ff-heading: 'Quicksand', cursive;
  --ff-lead: 'Kalam', cursive;
  --var-borderrad: 6px;
}
/* au tout début de votre CSS */
html, body {
  /* height: 100%;        pour que body prenne tout l’écran */
  margin: 0;
  padding: 0;
  /* min-height: 100vh; */
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior-x: none; 
  overscroll-behavior-y: auto;
  font-family: var(--ff-base);
}
body {
  /* display: block; */
  /* grid-template-rows: auto 1fr auto;  /* 1ère rangée = header, 2ᵉ = contenu */ */
  font-family: var(--ff-base);
  background: #EFE3D0;
  color: var(--clr-text);
  line-height: 1.6;
}

header {
  position: sticky;
  /* grid-row: 1; */
  top: 0;
  z-index: 10;                   /* au-dessus du contenu */
  /*    pas de height fixe nécessaire si votre nav s’ajuste */
  width: 100%;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
main {
  /* 2ᵉ rangée, prendra automatiquement tout le reste */
  /* grid-row: 2; */
  /* overflow: auto;                si vous voulez un scroll interne */
  background: #FFF;
  /* overflow-x: hidden; */
  /* -webkit-overflow-scrolling: touch; momentum iOS */
  /* empêche tout « rebond » ou chaînage de scroll */
  /* overscroll-behavior: none; */
  /* n’autorise que le pan vertical (scroll Y) */
  /* touch-action: pan-y; */
}
/* → Reset minimal */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* → Footer */
footer {
  /* grid-row: 3; */
  text-align: center;
  padding: 1rem;
  background: #5C3B2E;
  font-size: 0.9rem;
  color: #FFF;
}
footer a{
  color: #fff;                  /* même couleur que vos boutons */
  text-decoration: none;                  /* on enlève le soulignement par défaut */
  border-bottom: 1px dotted #FFF; /* trait pointillé sous le texte */
  transition: color 0.2s, border-color 0.2s;
}
footer a:hover{
  color: var(--clr-btn-hover);            /* couleur au survol, à définir */
  border-color: var(--clr-btn-hover);
}
p{
  padding-left: 1rem;
  padding-right: 1rem;
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--clr-text);
}
.brand-subtitle {
  display: inline-flex;       /* transforme le span en flexbox inline */
  align-items: center;        /* centre verticalement le texte et l’image */
  gap: 0.25rem;               /* petit espace entre le texte et le SVG */
  font-family: 'JOST', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--clr-text);
  margin-top: -0.1em;
}
/* Le texte reste en colonne */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
/* Taille du logo : à ajuster selon votre design */
.brand-logo {
  width: 40px;
  height: auto;
}
.nav-container .brand {
  display: flex;
  align-items: center;     /* aligne logo et texte sur la même ligne */
  gap: 0.5rem;             /* espace entre le logo et le texte */
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--clr-text);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  padding: 0.5rem;
}
.btn-book {
  background: var(--clr-btn);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: var(--var-borderrad);
  transition: background 0.3s;
  text-align: center
}
.btn-book:hover {
  background: #3a251d;
  color: white !important;
}

/* → Hero */
#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 60vh;
  background: #EFE3D0;
  justify-content: flex-start;
  overflow: visible;
  text-align: center;
}
.hero-content {
  position: relative;
  width: 90%;
  max-width: 600px;
}
#hero h1 {
  font-family: 'Caveat';
  font-weight: 400;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
#hero p {
  font-family: var(--ff-lead);
  font-weight: 300;
  font-size: 1.2rem;
}
/* Image chevauchante */
.hero-photo {
  position: absolute;
  top: 100%;
  transform: translateX(-50%) translateY(5%);
  width: clamp(120px, 65vw, 400px);
  aspect-ratio: 480 / 599;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1;
}
/* 1) Créer un conteneur flex pour aligner texte + bouton */
.contact-info {
  display: flex;
  align-items: stretch;      /* centre verticalement tous les enfants */
  gap: 1rem;                /* espace entre coordonnées et bouton */
  flex-wrap: wrap;          /* passe en colonne si l’écran est trop petit */
  justify-content: center;  /* centre horizontalement au besoin */
  margin-top: 1rem;
}

/* 2) Style des liens de contact pour qu’ils reprennent la même hauteur de ligne */
.contact-text {
  display: flex;
  flex-direction: column;   /* on peut empiler téléphone et mail */
  gap: 0.25rem;
}

/* si vous voulez les mettre côte à côte : */
.contact-text.row {
  flex-direction: row;
  gap: 1.5rem;
}

/* 3) Donner au bouton exactement la hauteur de ces lignes */
/* Le bouton prend toute la hauteur de la ligne grâce au padding vertical */
.contact-cta {
  padding: 0.4rem 1rem;     /* ajustez la valeur 0.4 rem pour coller exactement */
  background: var(--clr-btn);
  color: #fff;
  border-radius: var(--var-borderrad);
  /* aucun height défini, la hauteur vient du line-height + padding */
}

/* 4) Facultatif : harmoniser line-height */
.contact-link,
.contact-cta {
  display: inline-flex;
  align-items: center;
  /* même hauteur de ligne pour tous */
  line-height: 1.6;         
  font-size: 1rem;
  color: #5C3B2E;
  text-decoration: none;
}

/* 5) Responsive : empilement sous 480 px */
@media (max-width: 480px) {
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-cta {
    width: 100%;
  }
}

/* → À propos, Services, Contact */
section {
  /* padding: 4rem 1rem; */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: center;
}
section:not(#hero) {
  width: 100%;             /* prend tout l’espace disponible */
  max-width: 1174px;       /* ne dépassera jamais 1174px */
  text-align: center;
  margin: 0 auto;         /* centre horizontalement la section */
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-title{
  display: flex;
  align-items: center;
  justify-content: center;
  /* Plus de width:100% ici, le title reste à la largeur du texte + lignes */
  margin: 2rem 0;                /* espace top/bottom */
}
/* Les deux traits de chaque côté */
.section-title::before,
.section-title::after {
  content: "";
  display: block;
  width: 60px;                   /* longueur de chaque trait */
  height: 2px;                   /* épaisseur du trait */
  background-color: var(--clr-text, #5C3B2E);
}
/* Espacement entre le texte et les traits */
.section-title::before {
  margin-right: 1rem;
}
.section-title::after {
  margin-left: 1rem;
}
#about h2,
#services h2,
#contact h2,
#forwho h2,
#cabinet h2,
#deroulement h2,
#pain h2,
#fascia h2,
#tarifs h2 {
  font-family: var(--ff-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}
#pain p{
  margin-bottom: 1rem;
}
#about{
  /* padding-top: 90px; */
  /* padding-top: 6rem; */
}
#forwho {
  padding-top: 8rem;
}
#forwho p {
  margin-bottom: 1rem;
}
#forwho-extra .pain-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
#about a{
  color: var(--clr-btn);
  text-decoration: none;
  border-bottom: 1px dotted var(--clr-btn);
  transition: color 0.2s, border-color 0.2s;
}
#about a:hover {
  color: var(--clr-btn-hover);
  border-color: var(--clr-btn-hover);
}
/* Section Tarifs */
#tarifs {
  /* padding: 4rem 1rem; */
  background: var(--clr-bg, #EFE3D0);
  text-align: center;
}
#cabinet {
  padding-bottom: 76px;
}
/* La « carte » blanche */
.tarifs-card {
  background: #EFE3D0;
  border-radius: var(--var-borderrad);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  margin-bottom: 10px;
}

/* Liste sans puces */
.tarifs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Chaque ligne en grille : libellé à gauche, valeur à droite */
.tarifs-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 2rem;
  align-items: start;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.tarifs-list li:last-child {
  border-bottom: none;
}
#pain-extra .pain-list {
  list-style-position: inside;
  padding-left: 0;
  text-align: center;
}
.section-subtitle{
  margin-top: 16px;
}
/* Libellé */
.tarif-label {
  font-family: var(--ff-base, 'Jost', sans-serif);
  font-size: 1rem;
  color: var(--clr-text, #5C3B2E);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* on autorise le retour à la ligne */
  white-space: normal;
  word-break: break-word;      /* coupe proprement les mots trop longs */
}

/* Valeur */
.tarif-value {
  font-family: var(--ff-base, 'Jost', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-btn, #5C4A3D);
  text-align: right;
  white-space: nowrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.5rem;
}
.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--var-borderrad);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
/* Style des étoiles sous les titres de service */
.service-rating {
  margin: 0.5rem 0 1rem;  /* espace au-dessus et en-dessous */
  font-size: 1rem;        /* taille des icônes */
  color: #f4c150;         /* couleur dorée */
}
/* Un peu d’espace entre chaque étoile */
.service-rating .fa-star,
.service-rating .fa-star-half-alt,
.service-rating .fa-star-empty,
.service-rating .far {
  margin-right: 0.25rem;
}
/* Optionnel : changer la couleur au survol */
.service-card:hover .service-rating .fa-star,
.service-card:hover .service-rating .fa-star-half-alt {
  color: #e4b343;
}

/* Wrapper en flex pour empiler les cartes en ligne */
.cards-wrapper {
  display: flex;
  flex-wrap: wrap;        /* passe à la ligne si manque d’espace */
  gap: 1rem;              /* espace entre les cards */
  justify-content: center;/* centre les cards */
  margin-top: 2rem;
}
.deroulement-photos {
  display: grid;
  /* créer autant de colonnes qu’il y a de photos,
     chacune prenant au moins 200px et pouvant grossir */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  /* centre la grille si elle ne prend pas toute la largeur */
  justify-content: center;
  margin: 1.5rem;
}

/* Vignette : même largeur dans chaque colonne, ratio natif */
.deroulement-img {
  width: 100%;             /* remplit exactement sa colonne */
  /* max-width: 400px;        limite la largeur si vous voulez */
  /* height: clamp(250px, 35vw, 600px); */
  /* height: 550px; */
  aspect-ratio: 816 / 1024;/* conserve le ratio de vos images */
  object-fit: cover;       /* recadre sans déformer */
  border-radius: var(--var-borderrad);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  object-position: top center;
}
/* Style de chaque card d’avis */
.cards-wrapper .review {
  background: #fff;
  border-radius: var(--var-borderrad);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  /* taille fixe ou responsive : */
  flex: 1 1 300px;        /* base.min = 300px, grow/shrink */
  max-width: 350px;       /* ne dépassera pas 350px */
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
/* Texte de l’avis qui remplit le reste */
.cards-wrapper .review p {
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.cards-wrapper .review .more-reviews {
  align-self: flex-end;
  font-size: 0.85rem;
  color: var(--clr-btn, #5C4A3D);
  text-decoration: none;
}
.cards-wrapper .review .more-reviews:hover {
  text-decoration: underline;
}
.more-reviews {
  display: inline-block;
  margin-top: auto;           /* pousse le lien en bas si h-100 flex */
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-btn, #5C4A3D);
  text-decoration: none;
  transition: color 0.2s;
}

.more-reviews:hover {
  color: var(--clr-btn-hover, #4a3a2e);
  text-decoration: underline;
}
.more-reviews-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background-color: rgb(90, 212, 219);
  border: none;
  border-radius: var(--var-borderrad);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
}

.more-reviews-btn:hover {
  /* background-color: var(--clr-btn-hover, #4a3a2e); */
  font-weight: 700;
}
.reviews-list .review {
  background: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--var-borderrad);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
/* En-tête à deux colonnes : nom + étoiles */
.review-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.review-rating {
  color: #f4c150;
}
/*/////////////////////////////////////////////////////
//////////////////////////////////////////////////////*/
/* Wrapper global pour positionner boutons + carousel */
.reviews-carousel-wrapper {
  position: relative;
  max-width: 1174px;
  margin: 2rem auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Carrousel scrollable */
.reviews-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem 0;
  scrollbar-width: none;      /* Firefox */
}
.reviews-carousel::-webkit-scrollbar {
  display: none;              /* Chrome/Safari */
}

/* Chaque card "snappe" */
.reviews-carousel .review {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  /* restez sur vos styles de .review existants */
}

/* Boutons flèches */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
.prev-btn {
  left: 0.5rem;
}
.next-btn {
  right: 0.5rem;
}
.carousel-btn:hover {
  background: rgba(255,255,255,1);
}
/*/////////////////////////////////////////////////////
//////////////////////////////////////////////////////*/
/* LIGNE HAMBURGER */
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  background: var(--clr-text);
  height: 2px;
  width: 24px;
  border-radius: 2px;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after  { top:  8px; }
/* Style du sous‑titre au‑dessus des cartes */
.maps-intro {
  font-family: var(--ff-base, 'Jost', sans-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--clr-text, #5C3B2E);
  text-align: center;
  /* margin: 1rem 0 1.5rem; espace avant/après */
}

/* Wrapper pour les deux cartes */
.maps-wrapper {
  display: flex;
  gap: 1rem;               /* écart entre les cartes */
  justify-content: center; /* centre horizontalement */
  flex-wrap: wrap;         /* passe en colonne sur petits écrans */
}

/* Wrapper des boutons pour alignement */
.map-buttons {
  display: flex;
  gap: 1rem;
}

/* Style commun aux boutons de carte */
.btn-map {
  display: inline-flex;       /* inline pour respecter la taille de contenu */
  align-items: center;
  justify-content: center;

  white-space: nowrap;        /* empêche le retour à la ligne interne */
  padding: 0.75rem 1.5rem;    /* augmente le padding horizontal */
  min-width: 160px;           /* garantit une largeur minimale */
  
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  
  background: #ddc2b4;
  color: #5C3B2E;
  border: none;
  border-radius: var(--var-borderrad);
  text-decoration: none;      /* annule le soulignement */
  gap: 0.5rem;                /* espace entre icône et texte */
  /* cursor: pointer; */
}
.map-buttons .btn-map {
  flex: 1 1 auto;
}
/* Bouton primaire “Prendre rendez‑vous” */
.btn-primary-map {
  background: #ebcec3;
  color: #5C3B2E;
}

.btn-map:hover {
  background: var(--clr-btn-hover, #4a3a2e);
  color: #FFF;
}
.map-block {
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;          /* centré */
  flex-direction: column;
  align-items: center;    /* centre horizontalement tout ce qui est dedans */
}

.map-container {
  width: 100%;
  max-width: 600px;       /* ou ta largeur max */
  height: 400px;          /* ou ta hauteur */
  margin-top: 1rem;
  border-radius: var(--var-borderrad);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.location-tabs .tab-btn.active {
  border-bottom-left-radius: 0;  /* supprimer l’arrondi là où ça rejoint */
  border-bottom-right-radius: 0;
}
/* Onglets */
.location-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  /* margin-bottom: 1.5rem; */
}
.tab-btn {
  padding: 0.5rem 1rem;
  /* height: 40px; */
  height: 55px;
  width: 185px;
  background: #EFE3D0;
  border: none;
  border-radius: var(--var-borderrad);
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
}

.tab-btn.active {
  background: #5C3B2E;
  color: #fff;
}
a[x-apple-data-detectors] {
color: inherit !important;
text-decoration: none !important;
}
.tab-panel {
  display: none !important;   /* tout est caché initialement */
}
.tab-panel.active {
  display: block !important;  /* seul le panel actif se révèle */
  background-color: #5C3B2E;
  color: #efe3d0;
  margin-top: 0;            /* annule tout écart au-dessus */
  padding-top: 1rem;      /* espace intérieur minimal si besoin */
  padding-bottom: 1rem;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: var(--var-borderrad);/* arrondir seulement les coins inférieurs */
  max-width: 600px;
  margin: 0 auto;    /* pour le centrer horizontalement */
  width: 100%;       /* occupe tout l’espace disponible jusqu’à 600px */
}

/* Tarifs minimal */
.tab-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.tarifs-list {
  list-style: none;
  padding: 0;
  margin: 0 0;
}
.tarifs-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
}

/* Réutilisation de vos .map-block, .map-buttons, .map-container existants */
@media (max-width: 600px) {
  #forwho {
    padding-top: 10rem;
  }
}
@media (max-width: 480px) {
  .tarifs-list li {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }
  .tarif-value {
    text-align: left;
  }
  #hero {
    height: auto;     /* laisse le contenu définir la hauteur */
    min-height: 50vh; /* au moins 60 % de la fenêtre */
    /* padding-top: 3rem;éventuellement ajuster le padding */
  }
  .deroulement-photos {
    /* passe en une seule colonne */
    grid-template-columns: 1fr;
    /* centre l’unique colonne */
    justify-items: center;
    margin: 1.5rem;
  }
  .contact-info {
    flex-direction: column;   /* empile verticalement */
    align-items: center;      /* centre horizontalement les items */
    gap: 1rem;                /* espace entre chaque ligne */
  }

  .contact-text {
    align-items: center;      /* centre le texte téléphone + mail */
    text-align: center;       /* pour les lignes de texte */
  }

  .contact-cta {
    width: auto;              /* ne force pas la largeur à 100% */
    margin: 0 auto;           /* centre le bouton */
  }
  .ratio-box {
    /* limite la largeur de chaque boîte et la centre */
    width: 90%;         /* ou max-width:300px, selon vos besoins */
    margin: 0 auto;
  }
  .map-buttons {
    flex-direction: column;  /* empile les boutons verticalement */
    width: 100%;             /* prend toute la largeur dispo */
    gap: 0.5rem;             /* espace réduit entre les boutons */
  }

  .map-buttons .btn-map {
    min-width: 0;            /* supprime la largeur mini forcée */
    width: 100%;             /* chaque bouton fait 100% du parent */
    padding: 0.75rem 1rem;   /* conserve un padding confortable */
  }
}

/* RESPONSIVE ≤768px */
@media (max-width: 1056px) {
  /* Afficher le bouton */
  .nav-toggle {
    display: block;
  }
  /* Cacher initialement les liens */
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    width: 200px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    list-style: none;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
  }
  .nav-links li {
    margin-bottom: 1rem;
  }
  .nav-links li:last-child {
    margin-bottom: 0;
  }
  .nav-links a {
    display: block;
  }
  /* Quand le menu est ouvert */
  .nav-links.open {
    transform: translateX(0);
  }
}

.btn-map:hover {
  text-decoration: none;
}

.about-logo {
  width: 400px;
  height: auto;
}
/* Logo SVG responsive : hauteur = 1em (taille de la police) */
.brand-logo-svg {
  height: 1rem;          /* exactement la hauteur de la ligne de texte */
  width: auto;          /* largeur automatique pour garder le ratio */
  align-items: center;
  /* flex-shrink: 0;       empêche le logo de se rétrécir */
}

/* Conteneur vertical centré */
.about-extra {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;      /* espace entre logo et lien */
  margin-top: 1.5rem;
}

/* Logo centré déjà par le flex */
.about-logo {
  max-width: 400px;  /* ou la taille souhaitée */
  width: 100%;
  height: auto;
}

/* Lien centré dans le flex, design existant conservé */
.about-link {
  font-family: var(--ff-base);
  color: var(--clr-btn);
  text-decoration: none;
  border-bottom: 1px dotted var(--clr-btn);
  transition: color 0.2s, border-color 0.2s;
}
.about-link:hover {
  color: var(--clr-btn-hover);
  border-color: var(--clr-btn-hover);
}

/* Bouton “En savoir plus” */
.btn-info {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background: #EFE3D0;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.mobile-cta {
  display: none;
}
/* Bouton “Prendre rendez-vous” toujours visible en mobile */
@media (max-width: 768px) {
  /* espace sous le contenu pour que rien ne soit masqué par le bouton */
  body {
    padding-bottom: 4rem;
  }
  .reviews-carousel .review {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .mobile-cta {
    display: block;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    z-index: 1000;

    /* style calqué sur .btn-book */
    background: var(--clr-btn);
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    border-radius: var(--var-borderrad) var(--var-borderrad) 0 0;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background 0.2s;
  }
  .mobile-cta:hover {
    background: #3a251d;
  }
}
/* =========================== */
/* Styles pour la page Mentions Légales */
/* =========================== */

/* Conteneur centralisé, même max-width que vos sections */
.legal-page {
  width: 100%;
  max-width: 1174px;
  margin: 0 auto;
  padding: 4rem 1rem;          /* même que vos autres sections */
  background: #fff;            /* fond blanc */
  color: var(--clr-text);
  font-family: var(--ff-base);
  line-height: 1.6;
}

/* Titre principal */
.legal-page h1 {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--clr-text);
}

/* Chaque section interne (éditeur, hébergeur, etc.) */
.legal-page section {
  margin-bottom: 2rem;
  opacity: 1;                  /* sans animation, on affiche directement */
  transform: none;
}

/* Titres de section secondaires */
.legal-page section h2 {
  font-family: var(--ff-heading);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--clr-text);
  position: relative;
  display: inline-block;
}

/* Ajout facultatif de petits traits autour des h2 */
.legal-page section h2::before,
.legal-page section h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--clr-text);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.legal-page section h2::before {
  left: -50px;
}
.legal-page section h2::after {
  right: -50px;
}

/* Texte des paragraphes */
.legal-page section p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--clr-text);
}

/* Liste si nécessaire */
.legal-page section ul {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0;
}
.legal-page section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-page section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--clr-btn);
}

/* Footer de la page légale */
.legal-page footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  color: var(--clr-text);
  font-size: 0.9rem;
}

/* Responsive pour petits écrans */
@media (max-width: 480px) {
  .legal-page {
    padding: 2rem 1rem;
  }
  .legal-page h1 {
    font-size: 2rem;
  }
  .legal-page section h2 {
    font-size: 1.5rem;
  }
}