body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #000000; /* Fond noir élégant */
}

/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0B3F2A;
  padding: 10px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-left img.site-logo {
  height: 70px;
}

.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.reservation-btn {
  background-color: #d4af37;
  color: #000;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  animation: glowPulse 2s infinite alternate; /* ✅ animation continue */
}

.reservation-btn:hover {
  background-color: #b5962b;
  box-shadow: 0 0 25px rgba(212, 175, 55, 1), 0 0 50px rgba(212, 175, 55, 0.9);
}

/* Animation Glow pulsant */
@keyframes glowPulse {
  from {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6),
                0 0 20px rgba(212, 175, 55, 0.4);
  }
  to {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.9),
                0 0 40px rgba(212, 175, 55, 0.7);
  }
}
.header-right {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #d4af37;
  font-size: 25px;
  font-family: 'Great Vibes', cursive; /* ✅ titres du menu en Great Vibes */
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f5c6d0;
}

/* TITRES */
h1, h2, h3 {
  font-family: 'Great Vibes', cursive;
  color: #d4af37;
}

/* ACCUEIL SECTION */
.accueil-section {
  padding: 100px 30px 60px 30px;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
}

.accueil-section h1 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* RESERVATION SECTION */
.reservation-section {
  padding: 80px 30px;
  color: #d4af37;
  background-color: #000;
  text-align: center;
  font-family: 'Georgia', serif; /* ✅ lisible */
}

.reservation-section input,
.reservation-section button,
.reservation-section select {
  padding: 10px;
  font-size: 16px;
  margin-top: 10px;
  width: 250px;
  border: 1px solid #d4af37;
  border-radius: 5px;
  background-color: #111;
  color: #fff;
}

.reservation-section button {
  background-color: #d4af37;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.reservation-section button:hover {
  background-color: #b5962b;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 30px;
  color: #d4af37;
  background-color: transparent;
  max-width: 600px;
  margin: 40px auto;
  font-size: 18px;
  text-align: center;
  font-family: 'Georgia', serif; /* ✅ lisible */
}

.contact-section input,
.contact-section textarea,
.contact-section button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #d4af37;
  background-color: #111;
  color: #fff;
  font-size: 16px;
}

.contact-section button {
  background-color: #d4af37;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-section button:hover {
  background-color: #b5962b;
}

/* Réglage facile de l'opacité du voile vidéo */
:root {
  /* plus la valeur est haute, plus la vidéo est assombrie (0 = pas de voile, 0.6 = assez sombre) */
  --video-dim: 0.25;
}

.hero {
  position: relative;
  min-height: calc(100vh - 90px); /* prend toute la hauteur d’écran moins le header */
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  justify-content: center;
  padding: 60px 30px;
  text-align: center;
  color: #fff;
  background: none; /* ✅ évite toute bande de couleur derrière */
}

/* HERO VIDÉO */
.hero-video {
  position: relative;
  height: min(88vh, 900px);     /* hauteur souhaitée */
  overflow: clip;
  isolation: isolate;           /* pour l’overlay */
}

.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;            /* recadre sans bandes */
  z-index: 0;
}

/* Overlay plus léger qu’avant (opacité ~0.25) */
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-video__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-video__content h1 {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 0 0 .25em;
  color: #f6f0d6;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.hero-video__content p {
  font-size: clamp(1rem, 2.2vw, 1.375rem);
  opacity: .95;
  margin-bottom: 1.2rem;
}

.btn-cta {
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: .9rem 1.25rem;
  border-radius: .75rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.3); background: #e4c352; }

/* Si l’en-tête est en position:fixed, laisse un espace en haut */
.site-header + .hero-video { margin-top: var(--header-height, 0px); }

/* Réduction data/économies batterie : peut préférer l’image poster */
@media (prefers-reduced-motion: reduce) {
  .hero-video__media { animation: none; }
}

/* Sur mobiles, ajuste la hauteur */
@media (max-width: 640px) {
  .hero-video { height: 70vh; }
}

/* EQUIPEMENTS */
.equipements-section {
  padding: 80px 30px;
  background-color: transparent;
  color: #ffffff;
  text-align: center;
  font-family: 'Great Vibes', cursive;
}

.equipements-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.equipements-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.equipements-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 25px;
}

.equipement-icon {
  font-size: 30px;
  margin-right: 15px;
  color: #d4af37;
}

.equipements-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* FOOTER */
.site-footer {
  background-color: #1E1E1E;
  color: #d4af37;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Georgia', serif;
  border-top: 2px solid #d4af37;
}

.site-footer p {
  margin: 8px 0;
  font-size: 20px;
}

.site-footer a {
  color: #d4af37;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 28px;
  color: #d4af37;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

/* MAP */
.map-section {
  padding: 60px 20px;
  background-color: #000;
  color: #d4af37;
  text-align: center;
  font-family: 'Great Vibes', cursive;
}

.map-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid #d4af37;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ----- Cartes Petits Plus : gabarit uniforme ----- */
/* Grille */
.petits-plus-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* Carte au format identique pour toutes */
.plus-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.35);
  aspect-ratio: 4 / 5;   /* ✅ même proportion partout */
}

/* Image pleine carte, recadrée proprement */
.plus-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* ✅ pas d’étirement, cadrage net */
  display: block;
}


/* Overlay texte identique partout */
.plus-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 12px;
  text-align: center;
  font-weight: 700;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  color: #d4af37;
  font-family: 'Georgia', serif;
  border-radius: 0;
}

/* Hover cohérent */
.plus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.35);
}
.plus-card .badge-18 {
  position: absolute;
  top: 10px; right: 10px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(220, 20, 60, .85);
  border-radius: 6px;
  letter-spacing: .5px;
  z-index: 2;
}

.roses-only {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.boxes-only {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.localisation-section {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  padding: 80px 40px;  /* + d’air autour */
  color: #fff;

  background-image: url("images/Bouguenais.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}
.localisation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* ✅ voile plus sombre */
  z-index: 0;
}

.localisation-section h2,
.localisation-section p {
  position: relative;
  z-index: 1;
}
.localisation-section h2 {
  font-size: 2.5em;   /* titre plus grand */
  margin-bottom: 25px;
}

.localisation-section p {
  font-size: 1.3em;   /* ✅ texte plus grand */
  max-width: 1100px;  /* ✅ paragraphe plus large */
  margin: 0 auto;
  line-height: 1.8;   /* lisibilité améliorée */
}

/* sur petits écrans : un peu moins haut pour éviter un zoom excessif */
@media (max-width: 600px) {
  .localisation-section { min-height: 55vh; }
}
/* ================================
   🎨 VARIANTES DE BACKGROUND MODERNE
   ================================ */

/* 🌿 Variante 1 : Dégradé Vert profond -> Bleu nuit */
body.bg-gradient-green-blue {
  background: linear-gradient(135deg, #0B3F2A, #1A1F36);
  color: #fff;
}

/* 🖤 Variante 2 : Gris anthracite moderne */
body.bg-anthracite {
  background-color: #1E1E1E;
  color: #fff;
}

/* 🍷 Variante 3 : Bordeaux / Prune sensuel */
body.bg-bordeaux {
  background: linear-gradient(135deg, #3B1C32, #4A0E2E);
  color: #fff;
}
.petits-plus-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;      /* un peu plus large que 1000px */
  margin: 0 auto;         /* centre le conteneur */
  justify-content: center;
  justify-items: center;  /* centre chaque carte dans sa colonne */
}

/* Empêcher .boxes-only / .roses-only d’écraser la grille */
.petits-plus-container.boxes-only,
.petits-plus-container.roses-only {
  display: grid !important;
}

/* 2) Cartes plus petites et homogènes */
.plus-card {
  width: 100%;
  max-width: 260px;        /* ↓ images un peu plus petites */
  aspect-ratio: 4 / 5;     /* même proportion partout */
  border-radius: 16px;
   margin-bottom: 60px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.plus-card img {
  width: 100%;
  height: 100% !important; /* écrase l'ancien height:250px */
  object-fit: cover;
  display: block;
  border-radius: 0;         /* le conteneur a déjà le radius */
}

/* 3) La rose un peu plus petite et bien centrée */
.petits-plus-container.roses-only {
  max-width: 520px;        /* une seule carte plus contenue */
}

.petits-plus-container.roses-only .plus-card {
  max-width: 220px;        /* ↓ encore un peu la rose */
  aspect-ratio: 1 / 1;     /* carrée, ça rend bien */
}

/* 4) Mobile : rétrécir encore un poil */
@media (max-width: 600px) {
  .plus-card { max-width: 200px; }
}
/* Centrer le titre "Les petits plus" de façon robuste */
#petits-plus > h2 {
  text-align: center !important;
  width: 100%;
  margin: 0 auto 28px;   /* espace sous le titre */
  line-height: 1.1;
  display: block;
}
#petits-plus > h2 {
  position: relative;
  display: inline-block;   /* pour que les traits ne fassent pas toute la largeur */
  padding: 0 14px;
}

#petits-plus > h2::before,
#petits-plus > h2::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 48px;
  height: 1px;
  background: currentColor; /* utilise la couleur dorée du titre */
  vertical-align: middle;
  margin: 0 10px;
}
/* Case à cocher conditions générales */
form label input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2); /* case un peu plus grande */
  accent-color: #d4af37; /* coche dorée */
}

form label a {
  color: #d4af37;
  text-decoration: underline;
}
form label a:hover {
  color: #f5c6d0;
}
/* Les cartes sont des <a> cliquables */
.plus-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  border-radius: 16px; /* si déjà défini plus haut, garde tel quel */
  cursor: pointer;
}

/* Focus clavier visible (accessibilité) */
.plus-card:focus-visible {
  outline: 3px solid #d4af37;
  outline-offset: 4px;
}

/* S’assurer que l’overlay et le badge n’empêchent pas le clic */
.plus-card * {
  pointer-events: none;
}
/* Espace uniquement sous la grille des box */
#petits-plus .petits-plus-container:last-child {
  margin-bottom: 80px;
}
.galerie-maison-section {
  padding: 80px 30px;
  color: #d4af37;
  text-align: center;
  background-color: transparent; /* la vidéo reste derrière plus haut, ici on reste sobre */
}

.galerie-maison-section h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  margin-bottom: 40px;
}

/* --- Galerie Maison ajustée --- */
.galerie-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* images plus larges */
  gap: 5px; /* moins d'espace entre elles */
  max-width: 1400px; /* on permet une galerie plus large */
  margin: 0 auto;
}

.galerie-item img{
  width: 100%;
  height: 300px;   /* plus grande hauteur */
  object-fit: cover;
  display: block;
}

.galerie-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.55);
}

/* Variante dense pour écrans larges */
@media (min-width: 1100px) {
  .galerie-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ---- Fond mosaïque Nos équipements ---- */
.equipements-section {
  position: relative;
  z-index: 1;
  padding: 80px 30px;
  text-align: center;
  color: #fff; /* pour contraster sur les photos */
}

/* Conteneur mosaïque en arrière-plan */
.equipements-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 180px;
  gap: 4px;
  background: #000; /* fallback */
  overflow: hidden;
}
/* Overlay sombre pour lisibilité du texte */
.equipements-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* fonce un peu le fond */
  z-index: -1;
}
/* --- Fond 3 images pour #equipements --- */
.equipements-section{
  position: relative;
  z-index: 1;              /* place le contenu au-dessus du fond */
  padding: 80px 30px;
  text-align: center;
  color: #fff;
}

/* Bandeau en arrière-plan : 3 images remplissant 100% largeur, 100% hauteur */
.equipements-section::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;              /* derrière le texte, devant la vidéo de fond */
  background-image:
    url("images/bulle de velours maison 2.jpg"),
    url("images/bulle de velours maison 6.jpg"),
    url("images/bulle de velours maison 9.jpg");
  background-repeat: no-repeat, no-repeat, no-repeat;
  /* Chaque image occupe un tiers de la largeur et toute la hauteur */
  background-size: 33.333% 100%, 33.333% 100%, 33.333% 100%;
  background-position: left center, center center, right center;
  filter: none;            /* on garde tes couleurs d’origine */
}

/* Liseré sombre léger pour la lisibilité (optionnel, augmente 0.45 si besoin) */
.equipements-section::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background: rgba(0,0,0,0.35);
}
/* force l'en-tête à se comporter normalement */
thead, tfoot { display: table-header-group; }
thead th {
  position: static !important;   /* plus de position: sticky */
  top: auto !important;
  z-index: auto !important;
  background: #222;              /* conserve le fond */
}
  /* Apparence bien grisée pour les dates indisponibles */
  .flatpickr-day.disabled{
    background:#e6e6e6 !important;
    color:#9a9a9a !important;
    border-color:#e6e6e6 !important;
    cursor:not-allowed !important;
  }

  /* Cache les jours des mois adjacents UNIQUEMENT quand on affiche le mois courant */
  .flatpickr-calendar.is-current-month .flatpickr-day.prevMonthDay,
  .flatpickr-calendar.is-current-month .flatpickr-day.nextMonthDay{
    visibility: hidden !important; /* garde la grille propre */
  }
.date-field{
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 420px;
}
.date-field i{
  position: absolute;
  left: 12px;
  font-size: 18px;
  color: #7b8a97;
  pointer-events: none; /* on laisse passer le clic à l’input */
}
.date-field input{
  width: 100%;
  padding: 12px 14px 12px 40px; /* place pour l’icône */
  border: 1px solid #2a2f36;
  border-radius: 10px;
  background: #0f1216;
  color: #e7edf3;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.date-field input::placeholder{ color:#9aa6b2; }
.date-field input:focus{
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.25);
}

/* Dates indisponibles bien grisées */
.flatpickr-day.disabled{
  background:#e6e6e6 !important;
  color:#9a9a9a !important;
  border-color:#e6e6e6 !important;
  cursor:not-allowed !important;
}

/* Cache les jours des mois adjacents uniquement si on est sur le mois courant */
.flatpickr-calendar.is-current-month .flatpickr-day.prevMonthDay,
.flatpickr-calendar.is-current-month .flatpickr-day.nextMonthDay{
  visibility: hidden !important;
}
