/* ============================================================
   VTC AMNÉVILLE — page-specific styles
   Direction : immersive / loisirs nocturnes — galerie, ambiance
   ============================================================ */

.amn-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--ink);
}
.amn-hero-bg { position: absolute; inset: 0; z-index: 0; }
.amn-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.amn-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.3) 80%);
}
.amn-hero-content { position: relative; z-index: 2; }
.amn-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 18px; }
.amn-hero h1 .accent-word { color: var(--accent-soft); }
.amn-hero .lead {
  max-width: 500px;
}
.amn-hero .eyebrow { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: var(--accent-soft); margin-bottom: 20px; }

.amn-quick-nav {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px;
}
.amn-quick-nav a {
  font-size: 0.84rem; font-weight: 600; color: var(--white);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-pill); padding: 9px 16px;
  transition: background 0.18s ease;
}
.amn-quick-nav a:hover { background: rgba(255,255,255,0.2); }

.amn-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 10px;
}
.amn-gallery .ag-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
}
.amn-gallery .ag-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.amn-gallery .ag-item:hover img { transform: scale(1.05); }
.amn-gallery .ag-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}
.amn-gallery .ag-item .ag-label {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 0.92rem;
}
.amn-gallery .ag-item.big { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
  .amn-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
  .amn-gallery .ag-item.big { grid-column: span 2; grid-row: span 1; }
}

.night-band {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 52px);
  color: var(--white);
}
.night-band .nb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 28px;
}
@media (max-width: 760px) { .night-band .nb-grid { grid-template-columns: 1fr; } }
.night-band .nb-item {
  display: flex; gap: 14px; align-items: flex-start;
}
.night-band .nb-item svg { width: 22px; height: 22px; color: var(--accent-soft); flex-shrink: 0; margin-top: 2px; shape-rendering: geometricPrecision; }
.night-band .nb-item h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 4px; }
.night-band .nb-item p { color: rgba(255,255,255,0.6); font-size: 0.86rem; margin: 0; }

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) { .venue-grid { grid-template-columns: 1fr; } }
.venue-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--stroke);
}
.venue-card .vc-media { aspect-ratio: 4/3; overflow: hidden; }
.venue-card .vc-media img { width: 100%; height: 100%; object-fit: cover; }
.venue-card .vc-body { padding: 20px; }
.venue-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.venue-card p { font-size: 0.87rem; margin-bottom: 14px; }
.venue-card .vc-price { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 0.95rem; }

.route-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 860px) { .route-pill-grid { grid-template-columns: repeat(2, 1fr); } }
.route-pill {
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: var(--r-md);
  padding: 18px;
}
.route-pill .rp-dest { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--text-hi); margin-bottom: 4px; }
.route-pill .rp-meta { font-size: 0.76rem; color: var(--text-low); margin-bottom: 10px; }
.route-pill .rp-price { font-family: var(--font-display); font-weight: 800; color: var(--accent); font-size: 1.1rem; }

/* ============================================================
   COVERAGE STRIP & COMMITMENT GRID (ajoutés pour cohérence inter-pages)
   ============================================================ */
.coverage-strip {
  background: var(--white);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 18px 0;
  overflow: hidden;
}
.coverage-track {
  display: flex; gap: 32px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--text-low);
  overflow-x: auto;
  scrollbar-width: none;
}
.coverage-track::-webkit-scrollbar { display: none; }
.coverage-track span.dot-sep { color: var(--stroke-strong); }

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .commitment-grid { grid-template-columns: 1fr; } }
.commitment-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: var(--r-md);
}
.commitment-item .ci-check {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.commitment-item .ci-check svg { width: 21px; height: 21px; color: var(--white); shape-rendering: geometricPrecision; }
.commitment-item h4 { font-size: 0.94rem; margin-bottom: 4px; }
.commitment-item p { font-size: 0.85rem; margin: 0; }
