/* =====================================================
   GÎTE DES ÉTANGS DE SOLOGNE — Feuille de style
   Palette : vert forêt #2D4A2D | vert tendre #8FB87A
             beige roseau #C8B89A | lin clair #F5F0E8
   ===================================================== */

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

:root {
  --vert-foret:  #2D4A2D;
  --vert-tendre: #8FB87A;
  --beige:       #C8B89A;
  --lin:         #F5F0E8;
  --blanc:       #FFFFFF;
  --texte:       #2C2C2C;
  --texte-clair: #5A5A5A;
  --ombre:       rgba(0,0,0,0.12);

  --font-titre: 'Playfair Display', Georgia, serif;
  --font-corps: 'Lato', Arial, sans-serif;

  --transition: 0.35s ease;
  --radius: 8px;
  --section-pad: clamp(3rem, 6vw, 5rem);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-corps);
  color: var(--texte);
  background: var(--lin);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ---------- TYPOGRAPHIE ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-titre);
  line-height: 1.2;
  color: var(--vert-foret);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.4em;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
  color: var(--texte-clair);
}

.section-subtitle {
  font-family: var(--font-corps);
  font-size: 1rem;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

/* ---------- BOUTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.85em 2em;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--ombre);
}

.btn-primary {
  background: var(--vert-tendre);
  color: var(--blanc);
}

.btn-primary:hover { background: var(--vert-foret); }

.btn-outline {
  background: transparent;
  color: var(--blanc);
  border: 2px solid var(--blanc);
}

.btn-outline:hover {
  background: var(--blanc);
  color: var(--vert-foret);
}

.btn-dark {
  background: var(--vert-foret);
  color: var(--blanc);
}

.btn-dark:hover { background: #1a2e1a; }

/* ---------- NAVIGATION ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: var(--vert-foret);
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 20px var(--ombre);
}

.nav-logo {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  color: var(--blanc);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  color: var(--blanc);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.nav-links a:hover { opacity: 1; }

.nav-links .btn {
  padding: 0.5em 1.3em;
  font-size: 0.85rem;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blanc);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- SÉPARATEURS EN VAGUE ---------- */
.wave-separator {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ---------- SECTION HERO ---------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://picsum.photos/seed/sologne-lac/1920/1080');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(45, 74, 45, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--blanc);
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vert-tendre);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-content h1 {
  font-family: var(--font-titre);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--blanc);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--blanc);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite 2s;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--blanc);
  opacity: 0.6;
}

/* ---------- SECTION VIDÉO ---------- */
#video {
  background: var(--lin);
  padding: var(--section-pad) 1.5rem;
}

.video-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- SECTION PROPRIÉTÉ ---------- */
#propriete {
  background: var(--blanc);
  padding: var(--section-pad) 1.5rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.propriete-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  #propriete .section-inner {
    max-width: 1200px;
  }

  .propriete-grid {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
  }
}

.propriete-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px var(--ombre);
  aspect-ratio: 4/3;
}

.propriete-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.propriete-image:hover img { transform: scale(1.04); }

.propriete-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.8rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: var(--lin);
  border-radius: var(--radius);
}

.stat-item .stat-num {
  font-family: var(--font-titre);
  font-size: 2rem;
  color: var(--vert-foret);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.78rem;
  color: var(--texte-clair);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.equipements-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.equipements-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--texte-clair);
}

.equipements-list li::before {
  content: '✓';
  color: var(--vert-tendre);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- SECTION GALERIE ---------- */
#galerie {
  background: var(--lin);
  padding: var(--section-pad) 1.5rem;
}

.galerie-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.galerie-tab {
  padding: 0.55rem 1.8rem;
  border: 2px solid var(--vert-foret);
  background: transparent;
  color: var(--vert-foret);
  font-size: 1rem;
  font-family: var(--font-corps);
  font-weight: 700;
  border-radius: 2rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.galerie-tab:hover,
.galerie-tab.active {
  background: var(--vert-foret);
  color: var(--blanc);
}

.galerie-hidden {
  display: none !important;
}

.galerie-carousel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  --visible: 1;
}

@media (min-width: 600px) {
  .galerie-carousel { --visible: 3; }
}

.galerie-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.galerie-track {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.4s ease;
}

.galerie-track .galerie-item {
  flex: 0 0 calc((100% - (var(--visible) - 1) * 0.75rem) / var(--visible));
}

.galerie-arrow {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid var(--vert-foret);
  background: var(--blanc);
  color: var(--vert-foret);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), opacity var(--transition);
}

.galerie-arrow:hover:not(:disabled) {
  background: var(--vert-foret);
  color: var(--blanc);
}

.galerie-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.galerie-carousel--no-nav .galerie-arrow {
  visibility: hidden;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--beige);
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galerie-item:hover img { transform: scale(1.08); }

.galerie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 74, 45, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.galerie-item:hover .galerie-overlay { opacity: 1; }

.galerie-overlay span {
  color: var(--blanc);
  font-size: 2rem;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

#lightbox.active {
  opacity: 1;
  pointer-events: all;
}

#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--blanc);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--transition);
  background: none;
  border: none;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blanc);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  background: none;
  border: none;
  transition: opacity var(--transition);
  padding: 1rem;
  line-height: 1;
}

.lightbox-nav:hover { opacity: 1; }

#lightbox-prev { left: 1rem; }
#lightbox-next { right: 1rem; }

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ---------- SECTION TARIFS ---------- */
#tarifs {
  background: var(--vert-foret);
  padding: var(--section-pad) 1.5rem;
  color: var(--blanc);
}

#tarifs h2, #tarifs h3 {
  color: var(--blanc);
}

#tarifs .section-subtitle {
  color: var(--vert-tendre);
}

#tarifs p { color: rgba(255,255,255,0.75); }

.tarifs-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .tarifs-layout { grid-template-columns: 1fr 1fr; }
}

.tarifs-table-wrap {
  overflow-x: auto;
}

table.tarifs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.tarifs-table th {
  background: rgba(255,255,255,0.12);
  color: var(--vert-tendre);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.tarifs-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

.tarifs-table tr:last-child td { border-bottom: none; }

.tarifs-table tr:hover td {
  background: rgba(255,255,255,0.05);
}

.prix-highlight {
  font-family: var(--font-titre);
  font-size: 1.2rem;
  color: var(--vert-tendre);
}

.tarifs-infos {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
}

.info-card h4 {
  color: var(--vert-tendre);
  font-family: var(--font-corps);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.info-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin: 0;
}

.tarifs-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ---------- SECTION ACTIVITÉS ---------- */
#activites {
  background: var(--blanc);
  padding: var(--section-pad) 1.5rem;
}

.activites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 540px) {
  .activites-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .activites-grid { grid-template-columns: repeat(3, 1fr); }
}

.activite-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--lin);
  transition: box-shadow var(--transition), transform var(--transition);
}

.activite-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--ombre);
}

.activite-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.activite-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.activite-card:hover .activite-img img { transform: scale(1.06); }

.activite-body {
  padding: 1.2rem 1.4rem;
}

.activite-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.activite-body h3 {
  font-size: 1.1rem;
  color: var(--vert-foret);
  margin-bottom: 0.4rem;
}

.activite-body p,
.activite-desc p {
  font-size: 0.88rem;
  color: var(--texte-clair);
  margin: 0;
}

.activite-desc p + p {
  margin-top: 0.6rem;
}

.activite-desc ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--texte-clair);
}

.activite-desc li {
  margin-bottom: 0.2rem;
}

.activite-desc a {
  color: var(--vert-foret);
  text-decoration: underline;
}

/* ---------- SECTION PROPRIÉTAIRES ---------- */
#proprietaires {
  background: var(--lin);
  padding: var(--section-pad) 1.5rem;
}

.proprio-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .proprio-layout { grid-template-columns: auto 1fr; }
}

.proprio-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.proprio-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--vert-tendre);
  box-shadow: 0 8px 32px var(--ombre);
  flex-shrink: 0;
}

.proprio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proprio-citation {
  background: var(--blanc);
  border-left: 4px solid var(--vert-tendre);
  padding: 1rem 1.2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-family: var(--font-titre);
  font-size: 1rem;
  color: var(--vert-foret);
  max-width: 300px;
  text-align: center;
}

/* ---------- SECTION AVIS ---------- */
#avis {
  background: var(--vert-foret);
  padding: var(--section-pad) 1.5rem;
  color: var(--blanc);
}

#avis h2, #avis h3 { color: var(--blanc); }
#avis .section-subtitle { color: var(--vert-tendre); }
#avis p { color: rgba(255,255,255,0.75); }

.avis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 600px) {
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .avis-grid { grid-template-columns: repeat(3, 1fr); }
}

.avis-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: background var(--transition);
}

.avis-card:hover { background: rgba(255,255,255,0.10); }

.avis-etoiles {
  color: var(--vert-tendre);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.avis-texte {
  font-family: var(--font-titre);
  font-style: italic;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
  margin: 0;
  border: none;
  padding: 0;
}

.avis-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 0.75rem;
  gap: 0.2rem;
}

.avis-auteur {
  font-size: 0.82rem;
  color: var(--vert-tendre);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.avis-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  white-space: nowrap;
}

.avis-date {
  font-size: inherit;
  color: inherit;
}

/* ---------- SECTION LOCALISATION ---------- */
#localisation {
  background: var(--blanc);
  padding: var(--section-pad) 1.5rem;
}

.carte-wrap {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--ombre);
  height: 420px;
}

.carte-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.localisation-infos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 600px) {
  .localisation-infos { grid-template-columns: repeat(3, 1fr); }
}

.loc-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--lin);
  border-radius: var(--radius);
}

.loc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.loc-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--vert-foret);
  margin-bottom: 0.2rem;
}

.loc-info span {
  font-size: 0.85rem;
  color: var(--texte-clair);
}

/* ---------- SECTION CONTACT ---------- */
#contact {
  background: var(--vert-foret);
  padding: var(--section-pad) 1.5rem;
}

#contact h2, #contact h3 { color: var(--blanc); }
#contact .section-subtitle { color: var(--vert-tendre); }
#contact p { color: rgba(255,255,255,0.75); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1.6fr;
    align-items: start;
  }

  /* --- Contact : compactage desktop --- */
  #contact {
    padding: clamp(2rem, 4vw, 3.5rem) 1.5rem;
  }

  #contact .section-header {
    margin-bottom: 1.2rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .form-group {
    margin-bottom: 0.5rem;
  }

  .form-row {
    gap: 0.55rem;
    margin-bottom: 0.5rem;
  }

  #contact textarea {
    height: 5rem; /* rows=4 rendrait ~133px ; height explicite force 80px */
  }

  #contact .form-rgpd {
    margin-bottom: 0.75rem;
  }

  /* --- Colonne gauche : sticky pendant le remplissage --- */
  .contact-left {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-message-lead {
  margin: 0;
  line-height: 1.65;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--vert-tendre);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.contact-item span, .contact-item a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

/* FORMULAIRE */
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.82rem;
  color: var(--vert-tendre);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

input, select, textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--blanc);
  font-family: var(--font-corps);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}

input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--vert-tendre);
  background: rgba(255,255,255,0.12);
}

select option { background: var(--vert-foret); color: var(--blanc); }

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: right;
  margin-top: 0.5rem;
}

.form-submit .btn { width: 100%; }

@media (min-width: 480px) {
  .form-submit .btn { width: auto; }
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--vert-tendre);
  font-family: var(--font-titre);
  font-size: 1.2rem;
}

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(180, 40, 40, 0.18);
  border: 1px solid rgba(220, 80, 80, 0.4);
  border-radius: var(--radius);
  color: #f8a0a0;
  font-family: Lato, sans-serif;
  font-size: 0.95rem;
  text-align: center;
}

.form-rgpd {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-family: Lato, sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.form-rgpd input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--vert-tendre);
  cursor: pointer;
}

/* ---------- FOOTER ---------- */
footer {
  background: #1a2e1a;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
}

footer a {
  color: var(--vert-tendre);
  transition: opacity var(--transition);
}

footer a:hover { opacity: 0.8; }

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  color: var(--blanc);
  font-style: italic;
  margin-bottom: 0.5rem;
}

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

/* ---------- ANIMATIONS SCROLL ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ---------- KEYFRAMES ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---------- RESPONSIVE NAV ---------- */
@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--vert-foret);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a { font-size: 1.2rem; }

  .nav-burger { display: flex; z-index: 1001; }

  .nav-burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-burger.active span:nth-child(2) { opacity: 0; }
  .nav-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ---------- CALENDRIER ---------- */
.cal-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cal-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.cal-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.16);
}

.cal-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.cal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .cal-grid { grid-template-columns: repeat(3, 1fr); }
}

.cal-month {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1rem;
}

.cal-title {
  font-family: var(--font-corps);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vert-tendre);
  text-align: center;
  margin-bottom: 0.75rem;
}

.cal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.cal-table th {
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 0.3rem 0.1rem;
  font-weight: 400;
  background: none;
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0;
}

.cal-table td {
  text-align: center;
  padding: 0.3rem 0.1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.78rem;
  cursor: default;
  color: rgba(255,255,255,0.6);
}

.cal-table td.cal-dispo {
  color: rgba(255,255,255,0.85);
}

.cal-table td.cal-indispo {
  background: rgba(220, 80, 80, 0.25);
  color: rgba(255,100,100,0.8);
  text-decoration: line-through;
}

.cal-table td.cal-past {
  color: rgba(255,255,255,0.2);
}

.cal-legende {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.cal-leg-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cal-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cal-dot.cal-dispo  { background: rgba(143, 184, 122, 0.7); }
.cal-dot.cal-indispo { background: rgba(220, 80, 80, 0.5); }

/* ---------- UTILITAIRES ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Barre de tag de saison */
.saison-badge {
  display: inline-block;
  padding: 0.2em 0.7em;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.saison-haute  { background: #e8b84b22; color: #e8b84b; }
.saison-medium { background: #8FB87A22; color: #8FB87A; }
.saison-basse  { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE MOBILE — cible 375 px (max-width: 479px)
   ============================================================ */
@media (max-width: 479px) {

  /* --- NAVIGATION --- */
  #navbar          { padding: 0.75rem 1rem; }
  #navbar.scrolled { padding: 0.45rem 1rem; }
  .nav-logo        { font-size: 1.05rem; }

  /* --- HERO --- */
  .hero-content h1 {
    font-size: clamp(1.75rem, 9vw, 2.2rem);
  }
  .hero-content p { font-size: 0.92rem; }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* --- PROPRIÉTÉ --- */
  .propriete-grid       { gap: 1.5rem; }
  .propriete-stats      { grid-template-columns: repeat(2, 1fr); }
  .stat-item .stat-num  { font-size: 1.6rem; }
  .equipements-list     { grid-template-columns: 1fr; }

  /* --- GALERIE --- */
  .galerie-tabs { flex-wrap: wrap; gap: 0.5rem; }
  .galerie-tab  { font-size: 0.85rem; padding: 0.45rem 1.1rem; }
  .galerie-carousel { gap: 0.35rem; }
  .galerie-arrow     { width: 2.25rem; height: 2.25rem; font-size: 1.25rem; }

  /* --- TARIFS : tableau --- */
  .tarifs-table th,
  .tarifs-table td { padding: 0.5rem 0.4rem; font-size: 0.78rem; }
  .prix-highlight  { font-size: 1rem; }
  .info-card       { padding: 1rem; }

  /* --- LOCALISATION --- */
  .carte-wrap { height: 260px; }

  /* --- CONTACT --- */
  .contact-layout { gap: 2rem; }
  .contact-form   { padding: 1.25rem 1rem; }

  /* --- FOOTER --- */
  .footer-links { gap: 0.75rem; font-size: 0.82rem; }
}
