/* ============================================
   CS IMPRIMERIE - Design System v1.0
   Palette : Rouge signature + Noir + Crème + Jaune accent
   ============================================ */

/* --- Variables --- */
:root {
  /* Couleurs */
  --rouge: #C8232B;
  --rouge-hover: #A61D24;
  --rouge-fonce: #7A1518;
  --rouge-clair: #FDE9EA;
  --noir: #1A1614;
  --dark: #5C1618;
  --dark-hover: #4A1214;
  --creme: #FAF6EC;
  --creme-fonce: #F0E9D6;
  --jaune: #F5B826;
  --jaune-hover: #DDA31A;
  --jaune-clair: #FDF3D9;
  --terre: #6B5F53;
  --terre-clair: #D0C4B5;
  --blanc: #FFFFFF;
  --border: rgba(26, 22, 20, 0.08);
  --border-fort: rgba(26, 22, 20, 0.16);
  --overlay: rgba(26, 22, 20, 0.65);

  /* Typographie */
  --font-title: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --max-width: 1200px;
  --nav-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--noir);
  background: var(--creme);
  overflow-x: hidden;
}

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

a {
  color: var(--rouge);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--rouge-hover);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typographie --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--noir);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-rouge { color: var(--rouge); }
.text-terre { color: var(--terre); }
.text-blanc { color: var(--blanc); }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Sections --- */
section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  section { padding: 6rem 0; }
}

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

.section-header .kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rouge);
  background: var(--rouge-clair);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--terre);
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--rouge-hover);
  color: var(--blanc);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--noir);
  border-color: var(--noir);
}

.btn-secondary:hover {
  background: var(--dark);
  color: var(--blanc);
}

.btn-yellow {
  background: var(--jaune);
  color: var(--noir);
}

.btn-yellow:hover {
  background: var(--jaune-hover);
  color: var(--noir);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 236, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--noir);
  text-decoration: none;
}

.nav-brand img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-brand span { color: var(--rouge); }

.nav-brand-name {
  display: none;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--noir);
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-brand-name .brand-accent {
  color: var(--rouge);
}

@media (max-width: 900px) {
  .nav-brand img {
    display: none;
  }
  .nav-brand-name {
    display: inline;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--noir);
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--rouge);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rouge);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* --- Sélecteur de langue --- */
.lang-switcher {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  background: transparent;
  border: 1px solid var(--border-fort);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--noir);
  cursor: pointer;
  transition: all 0.15s ease;
}

.lang-toggle:hover {
  border-color: var(--rouge);
  color: var(--rouge);
}

.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(26, 22, 20, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.15s ease;
  z-index: 200;
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  color: var(--noir);
  font-size: 0.9rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.lang-menu a:hover {
  background: var(--creme);
  color: var(--rouge);
}

.lang-menu a.current {
  background: var(--rouge-clair);
  color: var(--rouge);
  font-weight: 500;
}

.lang-menu a.soon {
  color: var(--terre-clair);
  cursor: not-allowed;
  pointer-events: none;
}

.lang-menu a.soon::after {
  content: 'Bientôt';
  margin-left: auto;
  font-size: 0.7rem;
  background: var(--jaune-clair);
  color: var(--noir);
  padding: 2px 6px;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .lang-switcher {
    order: 2;
    margin-left: auto;
    margin-right: 0.75rem;
  }
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--noir);
  padding: 0.5rem;
}

@media (max-width: 900px) {
  .nav-menu, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu.open, .nav-cta.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--creme);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }

  .nav-menu.open a { padding: 0.75rem 0; width: 100%; }
  .nav-cta.open { top: calc(var(--nav-height) + 260px); padding-top: 0; }
}

/* --- Hero --- */
.hero {
  padding: 5rem 0 4rem;
  background: var(--creme);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero .kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--jaune);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--rouge);
  font-style: normal;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--terre);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image {
  margin-top: 3rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(26, 22, 20, 0.15);
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* --- Grille de cards --- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--rouge);
  box-shadow: 0 12px 28px rgba(200, 35, 43, 0.08);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rouge-clair);
  color: var(--rouge);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.card-icon.yellow {
  background: var(--jaune-clair);
  color: var(--noir);
}

.card-icon.dark {
  background: var(--dark);
  color: var(--jaune);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.card p {
  color: var(--terre);
  font-size: 0.95rem;
  line-height: 1.5;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rouge);
}

.card-link i {
  transition: transform 0.2s ease;
}

.card:hover .card-link i {
  transform: translateX(4px);
}

/* --- Section alt (fond sombre) --- */
.section-dark {
  background: var(--dark);
  color: var(--blanc);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--blanc);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--blanc);
}

.section-dark .card h3 {
  color: var(--blanc);
}

.section-dark .card p {
  color: var(--terre-clair);
}

/* --- Section jaune --- */
.section-yellow {
  background: var(--jaune-clair);
}

/* --- WhatsApp bouton flottant --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--blanc);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* --- Bouton retour en haut --- */
.back-to-top {
  position: fixed;
  bottom: 7rem;
  right: 1.75rem;
  z-index: 89;
  width: 50px;
  height: 50px;
  background: var(--rouge);
  color: var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(200, 35, 43, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  cursor: pointer;
  border: 2px solid var(--blanc);
  font-family: inherit;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--rouge-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(200, 35, 43, 0.5);
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  color: var(--blanc);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--jaune);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-col p,
.footer-col a {
  color: var(--terre-clair);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col a {
  display: block;
  padding: 0.15rem 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--jaune);
}

.footer-brand {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.footer-brand span { color: var(--rouge); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--rouge);
  color: var(--blanc);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: var(--terre-clair);
}

.footer-bottom a { color: var(--jaune); }

.site-credit {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--terre-clair);
}

.site-credit a {
  display: inline-flex;
  align-items: center;
  padding: 2px 4px;
  border-radius: 4px;
  transition: opacity 0.2s ease;
  opacity: 0.75;
}

.site-credit a:hover {
  opacity: 1;
}

.site-credit img {
  height: 11px;
  width: auto;
  display: block;
}

/* --- Utilitaires --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* --- Info bar --- */
.info-bar {
  background: var(--dark);
  color: var(--blanc);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  text-align: center;
}

.info-bar strong {
  color: var(--jaune);
}

.info-bar-content {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.info-bar-content span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.info-bar-content a { color: var(--jaune); }

/* --- Statut ouvert/fermé --- */
.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 0.15rem;
  vertical-align: middle;
  flex-shrink: 0;
}

.status-dot.open {
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
  animation: statusPulse 2.4s ease-in-out infinite;
}

.status-dot.closed {
  background: #EF4444;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.1); }
}

.status-open strong {
  color: #22C55E !important;
}

@media (max-width: 640px) {
  .info-bar { font-size: 0.75rem; }
  .info-bar-content { gap: 0.75rem; }
}


/* ============================================
   Réservation : calendrier + formulaire
   ============================================ */

.reservation-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .reservation-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- Calendrier --- */
.calendar-widget {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.calendar-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--noir);
  text-transform: capitalize;
  margin: 0;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--creme);
  color: var(--noir);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.calendar-nav:hover:not(:disabled) {
  background: var(--rouge);
  color: var(--blanc);
  border-color: var(--rouge);
}

.calendar-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekday {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--terre);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--noir);
  transition: all 0.12s ease;
  font-family: inherit;
  position: relative;
}

.calendar-day:hover:not(.disabled):not(.selected):not(.range) {
  background: var(--rouge-clair);
  color: var(--rouge);
}

.calendar-day.other-month {
  color: transparent;
  pointer-events: none;
}

.calendar-day.disabled {
  color: var(--terre-clair);
  cursor: not-allowed;
  opacity: 0.4;
}

.calendar-day.today {
  border: 1.5px solid var(--jaune);
  color: var(--noir);
}

.calendar-day.range {
  background: var(--rouge-clair);
  color: var(--rouge);
  border-radius: 0;
}

.calendar-day.selected {
  background: var(--rouge);
  color: var(--blanc);
}

.calendar-day.selected.start {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.calendar-day.selected.end {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.calendar-day.selected.single {
  border-radius: 8px;
}

.calendar-legend {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--terre);
}

.calendar-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.calendar-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.calendar-legend-dot.selected { background: var(--rouge); }
.calendar-legend-dot.range { background: var(--rouge-clair); }
.calendar-legend-dot.today { background: transparent; border: 1.5px solid var(--jaune); }

/* --- Formulaire réservation --- */
.reservation-form {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.dates-recap {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px dashed var(--border-fort);
}

.dates-recap.filled {
  background: var(--rouge-clair);
  border-color: var(--rouge);
  border-style: solid;
}

.date-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.date-block-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--terre);
  font-weight: 500;
}

.date-block-value {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--noir);
}

.date-block-value.empty {
  color: var(--terre-clair);
  font-weight: 400;
}

.nights-badge {
  background: var(--rouge);
  color: var(--blanc);
  padding: 0.5rem 0.85rem;
  border-radius: 20px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  text-align: center;
  min-width: 70px;
}

.nights-badge.empty {
  background: var(--creme-fonce);
  color: var(--terre);
}

@media (max-width: 500px) {
  .dates-recap {
    grid-template-columns: 1fr 1fr;
  }
  .nights-badge {
    grid-column: 1 / -1;
  }
}

.reservation-form .form-group {
  margin-bottom: 1rem;
}

.reservation-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 0.35rem;
}

.reservation-form label .required {
  color: var(--rouge);
  margin-left: 0.15rem;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--noir);
  background: var(--creme);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.15s ease;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: var(--rouge);
  background: var(--blanc);
  box-shadow: 0 0 0 3px var(--rouge-clair);
}

.reservation-form textarea {
  resize: vertical;
  min-height: 80px;
}

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

@media (max-width: 500px) {
  .reservation-form .form-row {
    grid-template-columns: 1fr;
  }
}

.reservation-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.reservation-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- Lightbox galerie photos (flèches + swipe mobile) --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 20, 0.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close,
.lightbox-arrow {
  position: fixed;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--blanc);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 3;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: var(--rouge);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.4rem;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  font-size: 1.7rem;
}

.lightbox-arrow:hover {
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--creme);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  z-index: 3;
}

@media (max-width: 640px) {
  .lightbox-overlay {
    padding: 2.5rem 0.5rem;
  }
  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.2rem;
  }
  .lightbox-arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.4rem;
  }
  .lightbox-prev {
    left: 0.35rem;
  }
  .lightbox-next {
    right: 0.35rem;
  }
}
