/* ============================================================
   STUDIOS AULUS-LES-BAINS — Feuille de styles principale
   Auteur : généré pour location-appartements-aulus.com
   ============================================================ */

/* ============================================================
   1. VARIABLES CSS & RESET
   ============================================================ */
:root {
  /* Couleurs */
  --color-primary:       #008080;
  --color-primary-dark:  #006666;
  --color-secondary:     #00838F;
  --color-bg:            #F5F5F5;
  --color-text:          #263238;
  --color-text-light:    #546E7A;
  --color-white:         #FFFFFF;
  --color-dark:          #1A2E2E;
  --color-card:          #FFFFFF;
  --color-border:        #E0E6E6;

  /* Ombres */
  --shadow-sm:  0 2px 8px rgba(0,128,128,0.10);
  --shadow-md:  0 4px 20px rgba(0,128,128,0.15);
  --shadow-lg:  0 8px 40px rgba(0,128,128,0.20);

  /* Typographie */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* Layout */
  --nav-height:      90px;
  --container-max:   1200px;
  --section-pad:     80px;
  --radius:          10px;
  --radius-sm:       6px;

  /* Transitions */
  --transition: all 0.3s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--color-primary-dark); }

ul, ol { list-style: none; }

/* ============================================================
   2. TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   3. UTILITAIRES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--color-primary);
  margin-top: 12px;
  border-radius: 2px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 48px;
  max-width: 580px;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-title::after { margin: 12px auto 0; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

.text-teal   { color: var(--color-primary) !important; }
.text-center { text-align: center; }
.bg-white    { background: var(--color-white); }

/* ============================================================
   4. BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-teal {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-teal:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--color-bg);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-bitcoin {
  background: #F7931A;
  color: #fff;
  border-color: #F7931A;
}
.btn-bitcoin:hover {
  background: #d97b0f;
  border-color: #d97b0f;
  color: #fff;
  transform: translateY(-2px);
}

.btn-paypal {
  background: #003087;
  color: #fff;
  border-color: #003087;
}
.btn-paypal:hover {
  background: #001f5c;
  border-color: #001f5c;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm  { padding: 9px 18px; font-size: 0.8rem; }
.btn-lg  { padding: 16px 36px; font-size: 0.95rem; }

/* ============================================================
   5. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  height: var(--nav-height);
  box-shadow: 0 1px 0 var(--color-border);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,128,128,0.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-top: 16px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: 6px;
}
.nav-logo .tagline {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}
.nav-menu a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-primary);
  background: rgba(0,128,128,0.07);
}
.nav-menu .nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 9px 18px;
  margin-left: 8px;
  margin-top: 6px;
  border-radius: var(--radius-sm);
}
.nav-menu .nav-cta:hover {
  background: var(--color-primary-dark);
  color: #fff !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Sélecteur de langue ------------------------------------ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.lang-switcher a, .lang-switcher span {
  padding: 3px 6px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-text-light);
  transition: var(--transition);
}
.lang-switcher a:hover { color: var(--color-primary); background: rgba(0,128,128,0.07); }
.lang-switcher .lang-active {
  color: var(--color-primary);
  background: rgba(0,128,128,0.10);
  cursor: default;
}
.lang-switcher .lang-sep { color: var(--color-border); padding: 0; }

/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(145deg, rgba(0,80,80,0.65) 0%, rgba(0,50,50,0.75) 100%),
    url('../images/hero-aulus.jpg') center center / cover no-repeat;
  overflow: hidden;
}
/* Motif géométrique */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(0,200,180,0.08) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(0,100,100,0.15) 0%, transparent 50%);
  pointer-events: none;
}
/* Silhouette montagne bas de page */
.hero-mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.hero-mountain svg {
  width: 100%;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: var(--nav-height);
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero h1 {
  color: #fff;
  max-width: 680px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.2);
  margin-bottom: 18px;
}
.hero .lead {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounceY 2.2s ease-in-out infinite;
}
@keyframes bounceY {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   7. PHOTO PLACEHOLDER
   ============================================================ */
.photo-placeholder {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 12px;
}
.photo-placeholder.h-160 { height: 160px; }
.photo-placeholder.h-180 { height: 180px; }
.photo-placeholder.h-200 { height: 200px; }
.photo-placeholder.h-220 { height: 220px; }
.photo-placeholder.h-240 { height: 240px; }
.photo-placeholder.h-260 { height: 260px; }
.photo-placeholder.h-280 { height: 280px; }
.photo-placeholder.h-300 { height: 300px; }
.photo-placeholder.h-320 { height: 320px; }
.photo-placeholder.h-350 { height: 350px; }
.photo-placeholder.h-400 { height: 400px; }
/* Variantes de couleur pour alternance */
.photo-placeholder.alt {
  background: linear-gradient(135deg, #00838F 0%, #005f65 100%);
}
.photo-placeholder.dark {
  background: linear-gradient(135deg, #004a4a 0%, #003535 100%);
}

/* ============================================================
   8. CARDS STUDIOS
   ============================================================ */
.studios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.studio-card {
  background: var(--color-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.studio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,128,128,0.2);
}
.studio-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.studio-card:hover .studio-card-img { transform: scale(1.04); }
.studio-card-body { padding: 28px; }
.studio-card-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.studio-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.studio-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-weight: 500;
}
.studio-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.studio-price small {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-light);
}
.studio-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

/* ============================================================
   9. GRILLE AVANTAGES (Features)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,128,128,0.25);
}
.feature-icon {
  width: 54px;
  height: 54px;
  background: rgba(0,128,128,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text);
}

/* ============================================================
   10. ALENTOURS TEASER
   ============================================================ */
.alentours-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.alentour-card {
  background: var(--color-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.alentour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.alentour-card-body { padding: 18px 20px; }
.alentour-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.alentour-card-desc {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ============================================================
   11. TARIFS
   ============================================================ */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tarif-col {
  padding: 44px 32px;
  text-align: center;
  color: #fff;
  position: relative;
}
.tarif-col:nth-child(1) { background: #009a9a; }
.tarif-col:nth-child(2) { background: var(--color-primary); }
.tarif-col:nth-child(3) { background: #005f6b; }
.tarif-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tarif-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 18px;
}
.tarif-price-amount {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}
.tarif-price-suffix { font-size: 0.85rem; opacity: 0.75; }
.tarif-duration {
  font-size: 0.82rem;
  opacity: 0.75;
  margin-bottom: 24px;
}
.tarif-list {
  text-align: left;
  margin-bottom: 32px;
}
.tarif-list li {
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.88;
}
.tarif-list li::before {
  content: '✓';
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   12. PAIEMENT
   ============================================================ */
.paiement-section {
  background: var(--color-white);
  padding: 56px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.paiement-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.paiement-method {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  transition: var(--transition);
  cursor: default;
}
.paiement-method:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(0,128,128,0.04);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.paiement-method .pm-icon { font-size: 1.5rem; }

/* ============================================================
   13. FORMULAIRE DE CONTACT
   ============================================================ */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,128,128,0.08);
}
.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #e53935;
}
.form-error {
  color: #e53935;
  font-size: 0.76rem;
  margin-top: 4px;
  display: none;
  font-family: var(--font-heading);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--color-primary);
}

/* ============================================================
   14. FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  opacity: 0.7;
  margin-bottom: 20px;
}
.footer-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.footer-info-row a {
  color: rgba(255,255,255,0.7);
}
.footer-info-row a:hover { color: #fff; }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   15. PAGE HERO INTERNE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: calc(var(--nav-height) + 60px) 0 56px;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { opacity: 0.88; font-size: 1rem; margin: 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  color: rgba(255,255,255,0.6);
  margin-top: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.4; }

/* ============================================================
   16. GALERIE + LIGHTBOX
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-item {
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 900px;
  width: 100%;
  position: relative;
}
.lightbox-inner .photo-placeholder {
  border-radius: var(--radius);
  height: 500px;
  font-size: 1.4rem;
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  margin-top: 14px;
}

/* ============================================================
   17. ÉQUIPEMENTS
   ============================================================ */
.equipements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.equip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-card);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.equip-item:hover {
  border-color: rgba(0,128,128,0.3);
  background: rgba(0,128,128,0.02);
}
.equip-icon {
  width: 38px;
  height: 38px;
  background: rgba(0,128,128,0.09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.equip-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.equip-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.83rem;
}

/* ============================================================
   18. PLAN PLACEHOLDER
   ============================================================ */
.plan-placeholder {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  background: var(--color-white);
}
.plan-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
}

/* ============================================================
   19. WIDGET SMOOBU
   ============================================================ */
.smoobu-wrapper {
  background: var(--color-white);
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  min-height: 200px;
  overflow: hidden;
}
.smoobu-fallback {
  padding: 48px;
  text-align: center;
  color: var(--color-text-light);
}
.smoobu-loader {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   20. MODAL BITCOIN
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal-icon {
  width: 58px;
  height: 58px;
  background: #F7931A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.modal h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.modal p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}
.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* ============================================================
   21. ALENTOURS PAGE (alternance image/texte)
   ============================================================ */
.alentour-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
}
.alentour-row.reverse { direction: rtl; }
.alentour-row.reverse > * { direction: ltr; }
.alentour-emoji-label {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.alentour-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.alentour-row:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

/* Restaurants */
.restaurant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.restaurant-card {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.restaurant-card:hover {
  border-color: rgba(0,128,128,0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.restaurant-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.restaurant-loc {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ============================================================
   22. ÉTAPES DE RÉSERVATION
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-item {
  text-align: center;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(0,128,128,0.15) 100%);
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ============================================================
   23. INFO BOXES
   ============================================================ */
.info-box {
  background: rgba(0,128,128,0.06);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: 0.87rem;
  color: var(--color-text);
}
.info-box strong { color: var(--color-primary); }

/* ============================================================
   24. MENTIONS LÉGALES
   ============================================================ */
.legal-wrapper { max-width: 840px; margin: 0 auto; }
.legal-block {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
}
.legal-block h2 {
  font-size: 1.1rem;
  color: var(--color-primary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 16px;
}
.legal-block p,
.legal-block li {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.8;
}
.legal-block ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
}

/* ============================================================
   25. CARTE CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.contact-info-block {
  margin-bottom: 28px;
}
.contact-info-title {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-light);
  margin-bottom: 10px;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--color-text);
}
.contact-info-value a { color: var(--color-primary); }
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrapper iframe { display: block; width: 100%; }

/* ============================================================
   26. SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }
.delay-6 { transition-delay: 0.60s; }

/* ============================================================
   27. RESPONSIVE — TABLETTE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  /* Nav mobile */
  .nav-hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    gap: 2px;
    align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 11px 14px; font-size: 0.85rem; }
  .nav-menu .nav-cta { margin-left: 0; text-align: center; margin-top: 8px; }

  /* Grilles */
  .studios-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .alentours-teaser { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .equipements-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-item::after { display: none; }
  .alentour-row { grid-template-columns: 1fr; gap: 32px; }
  .alentour-row.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .restaurant-grid { grid-template-columns: 1fr; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .paiement-methods { flex-direction: column; gap: 14px; align-items: stretch; }
  .paiement-method { justify-content: center; }
}

/* ============================================================
   28. RESPONSIVE — MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --section-pad: 40px; }
  .container { padding: 0 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .equipements-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .tarifs-grid { border-radius: 0; }
  .lightbox-inner .photo-placeholder { height: 280px; }
}
