/* --------------------------------------------------------------------
   RESET & BASE
-------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Lato", sans-serif;
  background: #f6f6f6;
  color: #23313a;
  line-height: 1.5;
  scroll-behavior: smooth;
}


main {
  width: 100%;
  padding: 15px 40px;
}
h2, .section-title {
    margin-bottom: 25px;  /* tu peux augmenter si tu veux plus d'espace */
}
.section-subtitle {
    margin-bottom: 30px; /* Ajuste la valeur si tu veux plus ou moins d'espace */
}




/* --------------------------------------------------------------------
   HEADER PREMIUM
   Téléphone (gauche) / Logo centré / Réseaux (droite)
-------------------------------------------------------------------- */

header {
  width: 100%;
  background: white;
  border-bottom: 1px solid #e5e5e5;
}
.header-phone {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.4px;
  color: #23313a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-icon {
  flex-shrink: 0;
}


/* zone avec 3 colonnes */
.header-main {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  padding: 15px 20px;
}

/* Téléphone */
.header-left {
  text-align: left;
}


/* Logo centré */
.header-logo {
  text-align: center;
}

.logo-img {
  height: 95px;
  width: auto;
}

/* Réseaux */
.header-right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.social-icon {
  height: 38px;
  width: auto;
  margin-left: 12px;
  transition: 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.12);
  opacity: 0.8;
}

/* --------------------------------------------------------------------
   MENU SOUS LE LOGO
-------------------------------------------------------------------- */
.main-menu {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 0;

  display: flex;
  justify-content: center;
  gap: 22px;
}

.main-menu a {
  text-decoration: none;
  color: #23313a;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.2s ease;
}

.main-menu a:hover {
  color: #2f6f6b;
}
.main-menu a {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
}

.main-menu a.is-active {
  color: #D4AF37;
  font-weight: 700;
}




/* --------------------------------------------------------------------
   BANNIÈRE DYNAMIQUE AVEC VOILE SOMBRE
-------------------------------------------------------------------- */

.page-banner {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 35px;

  background-size: cover;
  background-position: center;
}

/* voilage façon « conciergerie premium » */
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.50);  /* intensité du voile */
}

/* Titre blanc, centré dans la bannière */
.page-banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: white;
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  z-index: 10;
}



/* --------------------------------------------------------------------
   SECTIONS
-------------------------------------------------------------------- */
section {
  padding: 2.2rem 1rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}



/* --------------------------------------------------------------------
   CARTES ET GRILLES
-------------------------------------------------------------------- */
.two-cols,
.tarifs-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.card {
  background: white;
  padding: 1.4rem;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}


/* --------------------------------------------------------------------
   FOOTER
-------------------------------------------------------------------- */
footer {
  background: #1f262a;
  color: #d0d7db;
  padding: 1.2rem 1rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.85rem;
}



/* --------------------------------------------------------------------
   RESPONSIVE
-------------------------------------------------------------------- */
@media (max-width: 900px) {
  .header-main {
    grid-template-columns: 1fr auto 1fr;
  }

  .logo-img {
    height: 80px;
  }


}

@media (max-width: 600px) {
  .header-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .header-left,
  .header-right {
    text-align: center;
  }

  .header-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .logo-img {
    height: 70px;
  }

  .main-menu {
    flex-wrap: wrap;
    gap: 14px;
  }
}
/* --------------------------------------------------------------------
   HERO VIDEO (Page d'accueil)
-------------------------------------------------------------------- */

.hero-video {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 40px;
}

.hero-video-file {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 80%;
  max-width: 800px;
}

.hero-overlay h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

.hero-overlay p {
  font-size: 1.1rem;
  margin-bottom: 18px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

.airbnb-reviews-preview {
  padding-top: 0;
}

.airbnb-reviews-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 38px 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fffdf7 0%, #f4ecce 100%);
  box-shadow: 0 18px 50px rgba(31, 38, 42, 0.14);
  text-align: center;
}

.airbnb-reviews-kicker {
  margin-bottom: 10px;
  color: #9d7a13;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.airbnb-reviews-card h2 {
  margin-bottom: 18px;
  color: #23313a;
  font-size: 2rem;
}

.airbnb-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #d4af37;
  font-size: 2.2rem;
  line-height: 1;
  text-shadow: 0 3px 12px rgba(212, 175, 55, 0.28);
}

.airbnb-reviews-score {
  margin-bottom: 8px;
  color: #23313a;
  font-size: 1.15rem;
}

.airbnb-reviews-score strong {
  color: #9d7a13;
  font-size: 1.7rem;
}

.airbnb-reviews-count {
  margin-bottom: 22px;
  color: #55636b;
  font-size: 1rem;
}

.airbnb-reviews-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #23313a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.airbnb-reviews-link-icon {
  width: 20px;
  height: 20px;
  fill: #d4af37;
  flex-shrink: 0;
}

.airbnb-reviews-link:hover {
  background: #31444f;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(35, 49, 58, 0.18);
}

.airbnb-comments-section {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 0;
}

.airbnb-comments-header {
  text-align: center;
  margin-bottom: 24px;
}

.airbnb-comments-kicker {
  margin-bottom: 8px;
  color: #9d7a13;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.airbnb-comments-header h2 {
  color: #23313a;
  font-size: 1.9rem;
}

.airbnb-comments-marquee {
  overflow: hidden;
  padding: 8px 0;
}

.airbnb-comments-fallback {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(35, 49, 58, 0.08);
  text-align: center;
}

.airbnb-comments-fallback p {
  margin-bottom: 18px;
  color: #55636b;
  line-height: 1.7;
}

.airbnb-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.airbnb-summary-card {
  padding: 22px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf8 0%, #f7f0da 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.airbnb-summary-value {
  display: block;
  margin-bottom: 6px;
  color: #9d7a13;
  font-size: 1.45rem;
  font-weight: 700;
}

.airbnb-summary-label {
  display: block;
  color: #55636b;
  font-size: 0.95rem;
}

.airbnb-comments-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: airbnb-reviews-scroll 42s linear infinite;
}

.airbnb-comments-marquee:hover .airbnb-comments-track {
  animation-play-state: paused;
}

.airbnb-comment-card {
  width: 320px;
  flex: 0 0 320px;
  min-height: 220px;
  padding: 26px 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(35, 49, 58, 0.10);
}

.airbnb-comment-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: #d4af37;
  font-size: 1.1rem;
}

.airbnb-comment-text {
  margin-bottom: 18px;
  color: #31444f;
  font-size: 1rem;
  line-height: 1.7;
}

.airbnb-comment-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #7a858c;
  font-size: 0.95rem;
}

.airbnb-comment-meta strong {
  color: #23313a;
  font-size: 1rem;
}

@keyframes airbnb-reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

/* Boutons */
.btn-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn-primary {
  background: #2f6f6b;
  color: white;
  padding: 10px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.btn-primary:hover {
  background: #3f8c87;
}

.btn-ghost {
  border: 1px solid white;
  color: white;
  padding: 10px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}
.tarif-btn {
    display: inline-block;
    margin: 10px 0 15px 0; /* espace autour */
}
/* TABLEAU TARIFS */
.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.tarifs-table th {
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 8px;
    border-bottom: 2px solid #ddd;
}

.tarifs-table td {
    padding: 10px 8px;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
}

.tarifs-table tr:nth-child(even) {
    background: #fafafa; /* alternance pour lisibilité */
}

.tarifs-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #6a7b84;
}
/* ----- GALERIE SWITCHER ----- */

.gallery-switcher {
    text-align: center;
    margin-bottom: 25px;
}

.gallery-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    font-family: "Lato", sans-serif;
    padding: 10px 18px;
    margin: 0 10px;
    cursor: pointer;
    color: #777;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.gallery-btn.active {
    color: #2f6f6b;
    border-bottom: 3px solid #2f6f6b;
}

/* ----- GALERIE MASONRY ----- */

.gallery-section {
    column-count: 3;
    column-gap: 12px;
}

.gallery-section img {
    width: 100%;
    margin-bottom: 12px;
    border-radius: 12px;
    display: block;
    break-inside: avoid;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.04);
    opacity: 0.9;
}

/* ----- HIDDEN ----- */

.hidden {
    display: none;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
    .gallery-section {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-section {
        column-count: 1;
    }
}

/* --------------------------------------------------------------------
   GALERIE
-------------------------------------------------------------------- */

/* --- ONGLET PREMIUM --- */
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

/* --- ONGLETS VERSION 1 (fidèle au premier rendu) --- */

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 30px;
}

.gallery-tab {
  padding: 10px 20px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;

  background: #fff;
  color: #444;

  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1rem;

  cursor: pointer;
  transition: 0.25s ease;
}

.gallery-tab:hover {
  background: #f0f0f0;
}

.gallery-tab.active {
  background: #2f6f6b;
  color: #fff;
  border-color: #2f6f6b;
}

/* --- Masonry Grid / Style Pinterest --- */

.gallery-grid {
  column-count: 3;            /* nombre de colonnes */
  column-gap: 15px;           /* espace vertical */
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 15px;        /* espace horizontal */
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
  display: block;

  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform .25s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}
/* ----- GALERIE SWITCHER ----- */

.gallery-switcher {
    text-align: center;
    margin-bottom: 25px;
}

.gallery-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    font-family: "Lato", sans-serif;
    padding: 10px 18px;
    margin: 0 10px;
    cursor: pointer;
    color: #777;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.gallery-btn.active {
    color: #2f6f6b;
    border-bottom: 3px solid #2f6f6b;
}

/* ----- GALERIE MASONRY ----- */

.gallery-section {
    column-count: 3;
    column-gap: 12px;
}

.gallery-section img {
    width: 100%;
    margin-bottom: 12px;
    border-radius: 12px;
    display: block;
    break-inside: avoid;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.04);
    opacity: 0.9;
}

/* ----- HIDDEN ----- */

.hidden {
    display: none;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
    .gallery-section {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-section {
        column-count: 1;
    }
}

/* --------------------------------------------------------------------
   GALERIE
-------------------------------------------------------------------- */

/* --- ONGLET PREMIUM --- */
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

/* --- ONGLETS VERSION 1 (fidèle au premier rendu) --- */

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 30px;
}

.gallery-tab {
  padding: 10px 20px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;

  background: #fff;
  color: #444;

  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1rem;

  cursor: pointer;
  transition: 0.25s ease;
}

.gallery-tab:hover {
  background: #f0f0f0;
}

.gallery-tab.active {
  background: #2f6f6b;
  color: #fff;
  border-color: #2f6f6b;
}

/* --- Masonry Grid / Style Pinterest --- */

.gallery-grid {
  column-count: 3;            /* nombre de colonnes */
  column-gap: 15px;           /* espace vertical */
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 15px;        /* espace horizontal */
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
  display: block;

  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform .25s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: none;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}

.tab-btn.active {
  color: #2f6f6b;
  border-bottom: 3px solid #2f6f6b;
}

.gallery-section {
  display: none;
  animation: fadeIn 0.4s ease;
}

.gallery-section.active {
  display: grid;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ----- LIGHTBOX FULLSCREEN ----- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* ARROWS */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 40px;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.2s;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}

.prev {
    left: 40px;
}
.next {
    right: 40px;
}

.contact-section {
    padding: 60px 5%;
}

.contact-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* TITRE */
.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

/* LISTE */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
}

.icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    justify-content: center;
    align-items: center;
}

/* BOUTON */
.contact-btn {
    display: inline-block;
    padding: 12px 26px;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: .3s;
}

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

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

/* MAP */
.contact-map {
    flex: 1;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
/* SECTION CONTACT GLOBALE */
.contact-section {
    padding: 80px 0;
}

/* CONTAINER ALIGNÉ COMME LE HEADER */
.contact-container {
    max-width: 1200px;   /* même largeur visuelle que ton header */
    margin: 0 auto;      /* centre horizontalement */
    padding: 0 40px;     /* identique aux marges internes du header */
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* COLONNE GAUCHE (texte + icônes) */
.contact-left {
    flex: 0 0 300px;     /* largeur fixe élégante */
}

/* COLONNE DROITE (carte) */
.contact-map {
    flex: 1;
    height: 420px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}


/* ----------------------------------------------
   FOOTER PREMIUM
---------------------------------------------- */
.footer {
    background: #1b1f22;
    padding: 45px 0;
    color: #d9dde0;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
    justify-items: center;
}

.footer-col {
    text-align: center;
}

.footer-col h4 {
    color: #f5f5f5;
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #c8ccd0;
    text-decoration: none;
    transition: .25s;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-icon svg {
    width: 22px;
    height: 22px;
}

.footer-contact a {
    text-decoration: none;
    color: #d9dde0;
    font-size: 1rem;
}

.footer-contact a:hover {
    color: #D4AF37;
}

.footer-copy {
    margin-top: 10px;
    font-size: .9rem;
    color: #9aa1a6;
}

@media (max-width: 800px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-contact {
        justify-content: center;
    }
}
/* ---------------------------------------------------
   COPYRIGHT BAS DE PAGE (centré)
--------------------------------------------------- */
.footer-bottom {
    text-align: center;
    margin-top: 35px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: #9aa1a6;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-admin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(255,255,255,0.04);
    color: #e6c35a;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-admin-link:hover {
    text-decoration: none;
    background: rgba(212,175,55,0.10);
    border-color: rgba(212,175,55,0.45);
    transform: translateY(-1px);
}

.footer-admin-icon {
    color: #d4af37;
    flex-shrink: 0;
}
.site-map-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.site-map-list li {
    margin-bottom: 8px;
}

.site-map-list a {
    color: #2f6f6b;
    text-decoration: none;
    font-size: 1.1rem;
}

.site-map-list a:hover {
    text-decoration: underline;
}
.footer-link-site {
    color: #ffffff !important;
    text-decoration: none;
}

.footer-link-site:hover {
    color: #d4af37 !important;
}
/* -----------------------------------------------------------
   BLOC ALTERNÉ IMAGE / TEXTE – STYLE PREMIUM (Images réduites)
----------------------------------------------------------- */

/* -------- SECTION ALTERNÉE -------- */

.villa-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Ligne alternée */
.alt-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}


/* Texte */
.alt-text {
    flex: 1;
}

.alt-text h2 {
    font-size: 1.9rem;
    margin-bottom: 15px;
}

.alt-text p {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Image */
.alt-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.alt-img img {
    width: 85%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    object-fit: cover;
}

/* Responsive */
@media(max-width: 850px) {
    .alt-row, .alt-row.reverse {
        flex-direction: column !important;
        text-align: center;
    }

    .alt-img img {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .airbnb-reviews-card {
        padding: 30px 20px;
    }

    .airbnb-reviews-card h2 {
        font-size: 1.6rem;
    }

    .airbnb-stars {
        font-size: 1.9rem;
        gap: 6px;
    }

    .airbnb-comment-card {
        width: 280px;
        flex-basis: 280px;
        min-height: 0;
        padding: 22px 20px;
    }

    .airbnb-comments-header h2 {
        font-size: 1.55rem;
    }

    .airbnb-summary-grid {
        grid-template-columns: 1fr;
    }
}

img,
video,
iframe {
    max-width: 100%;
}

.main-menu,
.gallery-tabs,
.btn-row {
    flex-wrap: wrap;
}

.tarifs-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 900px) {
    main {
        padding: 14px 20px;
    }

    .two-cols,
    .tarifs-grid,
    .contact-grid,
    .contact-container {
        grid-template-columns: 1fr;
        display: grid;
        gap: 24px;
    }

    .contact-container {
        padding: 0 20px;
    }

    .contact-left,
    .contact-map,
    .alt-text,
    .alt-img {
        width: 100%;
    }

    .contact-map {
        height: 320px;
    }

    .hero-video {
        height: 62vh;
        min-height: 420px;
    }

    .hero-overlay {
        width: min(88%, 640px);
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .page-banner {
        height: 260px;
    }

    .page-banner-title {
        width: 88%;
        font-size: 2rem;
    }

    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    html,
    body {
        overflow-x: hidden;
    }

    main {
        padding: 12px 14px;
    }

    section {
        padding: 1.6rem 0.75rem;
    }

    .section-inner,
    .villa-section,
    .footer-inner {
        width: 100%;
    }

    .header-main {
        padding: 12px 14px;
    }

    .header-phone {
        justify-content: center;
        font-size: 0.95rem;
    }

    .main-menu {
        padding: 10px 12px 14px;
        gap: 10px 14px;
    }

    .main-menu a {
        font-size: 0.98rem;
    }

    .page-banner {
        height: 220px;
        margin-bottom: 22px;
        border-radius: 8px;
    }

    .page-banner-title {
        font-size: 1.6rem;
    }

    .hero-video {
        height: 54vh;
        min-height: 320px;
        margin-bottom: 24px;
        border-radius: 10px;
    }

    .hero-overlay {
        width: 90%;
    }

    .hero-overlay h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-overlay p {
        font-size: 0.98rem;
        margin-bottom: 14px;
    }

    .btn-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
    }

    .gallery-tabs {
        gap: 8px;
        margin: 16px 0 22px;
    }

    .tab-btn,
    .gallery-tab {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        text-align: center;
    }

    .gallery-grid,
    .gallery-section {
        column-count: 1;
    }

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

    .lightbox-close {
        top: 14px;
        right: 18px;
    }

    .lightbox-nav {
        font-size: 28px;
        padding: 8px 12px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .contact-section {
        padding: 42px 0;
    }

    .contact-container {
        padding: 0 14px;
        gap: 24px;
    }

    .contact-title {
        font-size: 1.9rem;
    }

    .contact-list li {
        font-size: 1rem;
        align-items: flex-start;
    }

    .contact-map {
        height: 260px;
        border-radius: 14px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .contact-btn {
        width: 100%;
        text-align: center;
    }

    .footer {
        padding: 34px 14px;
    }

    .footer-bottom {
        gap: 10px;
        font-size: 0.82rem;
    }

    .footer-admin-link {
        width: 100%;
        justify-content: center;
    }

    .alt-row {
        gap: 22px;
        margin-bottom: 34px;
    }

    .alt-text h2 {
        font-size: 1.6rem;
    }

    .alt-text p {
        font-size: 1rem;
    }
}
