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

/* ============================================================
     THÈMES — activez l'un, commentez l'autre
     ============================================================

     THÈME 1 : Orange & Bleu clair  ← ACTIF
     Pour passer au Thème 2 : mettez ce bloc entre /* ... * /
     et retirez les /* ... * / du Thème 2 ci-dessous
  ============================================================ */

:root {
  --cream: #fbf8f4;
  --parchment: #fdf0e6;
  --orange: #e8855a;
  --orange-light: #f5c4a8;
  --orange-pale: #fde8d8;
  --orange-dark: #c05f35;
  --blue: #6fa8c8;
  --blue-light: #a8ccdf;
  --blue-pale: #e2f0f7;
  --blue-dark: #3d7a9e;
  --brown: #4a3020;
  --text: #2e2218;
  --text-muted: #7a6558;
  --border: rgba(232, 133, 90, 0.18);
}

body {
  font-family: "Jost", sans-serif;
  background-color: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
}

/* ──── HERO ──── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
  background: var(--parchment);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 80% 60% at 15% 110%,
      rgba(111, 168, 200, 0.28) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 85% -10%,
      rgba(232, 133, 90, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 30% at 50% 100%,
      rgba(245, 196, 168, 0.18) 0%,
      transparent 50%
    );
}

.hero-ornament {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 32px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  display: block;
  width: 48px;
  height: 0.5px;
  background: var(--blue-light);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(52px, 10vw, 96px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--brown);
  position: relative;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange-dark);
}

.hero-ampersand {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(64px, 12vw, 120px);
  color: var(--blue);
  line-height: 1;
  display: block;
  margin: -8px 0;
}

.hero-date {
  margin-top: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-style: italic;
  position: relative;
}

.hero-scroll {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  animation: pulse 2.5s ease-in-out infinite;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(4px);
  }
}

/* ──── SECTIONS ──── */
section {
  padding: 80px 24px;
  max-width: 760px;
  margin: 0 auto;
}

.section-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::after {
  content: "";
  display: block;
  flex: 1;
  height: 0.5px;
  background: var(--border);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 32px;
}

/* ──── TIMELINE ──── */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--blue-light), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -37px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--blue);
}

.timeline-item.highlight .timeline-dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 133, 90, 0.2);
}

.timeline-time {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.timeline-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 4px;
}

.timeline-item.highlight .timeline-title {
  font-size: 26px;
  color: var(--orange-dark);
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}

.timeline-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 12px;
  background: var(--orange-pale);
  border: 0.5px solid var(--orange-light);
  border-radius: 20px;
  font-size: 12px;
  color: var(--orange-dark);
  letter-spacing: 0.05em;
}

/* ──── DIVIDER ──── */
.divider {
  text-align: center;
  padding: 16px 24px;
  color: var(--orange-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  letter-spacing: 0.2em;
}

/* ──── MAIRIE CARD ──── */
.mairie-block {
  background: var(--blue-pale);
  border: 0.5px solid rgba(111, 168, 200, 0.3);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 600px) {
  .mairie-block {
    grid-template-columns: 1fr;
  }
}

.mairie-info-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.mairie-info-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.3;
}

.mairie-info-value a {
  color: var(--blue-dark);
  text-decoration: none;
  border-bottom: 0.5px solid var(--blue-light);
}

.map-placeholder {
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid rgba(111, 168, 200, 0.3);
  background: #dceef6;
  height: 220px;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ──── PARKINGS ──── */
.parking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.parking-card {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
  transition: box-shadow 0.2s;
}

.parking-card:hover {
  border-color: rgba(122, 140, 110, 0.5);
}

.parking-card.recommended {
  border-color: var(--blue);
  background: var(--blue-pale);
}

.parking-tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 12px;
  font-weight: 400;
}

.parking-card.recommended .parking-tag {
  background: rgba(111, 168, 200, 0.2);
  color: var(--blue-dark);
}

.parking-card .parking-tag.alt {
  background: var(--orange-pale);
  color: var(--orange-dark);
}

.parking-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 6px;
}

.parking-detail {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
  line-height: 1.5;
}

.parking-places {
  margin-top: 12px;
  font-size: 13px;
  color: var(--blue-dark);
  font-weight: 400;
}

.parking-walk {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.parking-walk svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.parking-btn {
  display: block;
  margin-top: 16px;
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
  border: 0.5px solid var(--blue-light);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.parking-btn:hover {
  background: rgba(111, 168, 200, 0.12);
}

/* ──── SCREENSHOT ZONE ──── */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.screenshot-slot {
  border: 1px dashed rgba(111, 168, 200, 0.45);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  background: rgba(111, 168, 200, 0.05);
}

.screenshot-slot p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

.screenshot-slot svg {
  width: 32px;
  height: 32px;
  stroke: var(--blue-light);
  fill: none;
  stroke-width: 1.2;
  margin-bottom: 4px;
}

/* ──── FOOTER ──── */
footer {
  text-align: center;
  padding: 60px 24px 80px;
  border-top: 0.5px solid var(--border);
  background: var(--parchment);
}

footer .footer-names {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-style: italic;
  color: var(--brown);
  margin-bottom: 12px;
}

footer p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

.section-sep {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0 24px;
}

/* ──── INLINE MAP LINK ──── */
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-dark);
  border: 0.5px solid var(--orange-light);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.map-btn:hover {
  background: rgba(232, 133, 90, 0.1);
}

.map-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ──── COUCHAGE ──── */
.sleep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.sleep-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.sleep-item-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sleep-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}

.sleep-item-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 4px;
  line-height: 1.2;
}

.sleep-item-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ──── DIABLINES ──── */
.diablines-block {
  margin-top: 28px;
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px 24px;
}

.diablines-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.diablines-icon {
  width: 42px;
  height: 42px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  background: var(--orange-pale);
  border-radius: 50%;
  padding: 9px;
  box-sizing: border-box;
}

.diablines-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--brown);
  line-height: 1.2;
}

.diablines-sub {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.diablines-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.diablines-desc strong {
  color: var(--text);
  font-weight: 500;
}

.diablines-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.diablines-pills span {
  display: inline-block;
  padding: 3px 12px;
  font-size: 12px;
  letter-spacing: 0.05em;
  border-radius: 20px;
  background: var(--orange-pale);
  border: 0.5px solid var(--orange-light);
  color: var(--orange-dark);
}

.diablines-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
  text-decoration: none;
  border-bottom: 0.5px solid var(--blue-light);
  padding-bottom: 1px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.diablines-link:hover {
  color: var(--orange-dark);
  border-color: var(--orange-light);
}

/* ──── COPY ADDRESS BUTTON ──── */
.copy-addr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: transparent;
  border: 0.5px solid var(--blue-light);
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  margin-bottom: 4px;
}

.copy-addr-btn:hover {
  background: rgba(111, 168, 200, 0.12);
}

.copy-addr-btn.copied {
  color: var(--orange-dark);
  border-color: var(--orange-light);
  background: var(--orange-pale);
}

.copy-addr-btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ──── NOTE ENCADRÉE ──── */
.callout {
  border-left: 2px solid var(--orange-light);
  padding: 16px 20px;
  background: var(--orange-pale);
  border-radius: 0 10px 10px 0;
  margin-top: 32px;
}

.callout p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.callout strong {
  color: var(--orange-dark);
  font-weight: 500;
  font-style: normal;
}
