/* ═══════════════════════════════════════════════════════════════
   ALPENTOER 2026  —  Stylesheet
   Verbeteringen t.o.v. v1:
   · Sterkere hero-gradient zodat tekst altijd leesbaar is
   · Text-shadow op alle hero-tekst
   · Hogere opaciteit op body-tekst (0.72 → 0.88, labels 0.45 → 0.65)
   · Grotere basisfonts voor betere leesbaarheid
   · Eyebrow-labels overal groter en helderder
   · Betere contrast op col-cards en dag-kaarten
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: #0e0c0a;
  color: #f5f0e8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Subtle grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 9999;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.06) translateY(0); }
  to   { transform: scale(1.12) translateY(-1.5%); }
}

/* Gradient: veel sterker onderaan voor altijd leesbare tekst */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 12, 10, 0.08)  0%,
    rgba(14, 12, 10, 0.00) 20%,
    rgba(14, 12, 10, 0.20) 45%,
    rgba(14, 12, 10, 0.72) 70%,
    rgba(14, 12, 10, 0.96) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw 8vh;
  max-width: 960px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #d4b47a;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.92;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
  /* Tekst-shadow zodat het leesbaar blijft op lichte foto's */
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 4px 40px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: #d4b47a;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(245, 240, 232, 0.95);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
  max-width: 50ch;
}

.hero-meta {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-meta-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d4b47a;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.hero-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #f5f0e8;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 2.2s forwards;
}

.hero-scroll span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: rgba(245, 240, 232, 0.6);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.hero-scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, #d4b47a, transparent);
  animation: scrollPulse 2.5s 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── GOLD STRIP ───────────────────────────────────────────────── */
.gold-strip {
  background: #c9a96e;
  padding: 1.5rem 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.gs-item { display: flex; align-items: center; gap: 1rem; }

.gs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: #0e0c0a;
  line-height: 1;
}

.gs-text { display: flex; flex-direction: column; }

.gs-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(14, 12, 10, 0.6);
}

.gs-desc {
  font-size: 0.82rem;
  font-weight: 500;
  color: #0e0c0a;
}

.gs-div {
  width: 1px;
  height: 38px;
  background: rgba(14, 12, 10, 0.25);
}

/* ── UTILITY ──────────────────────────────────────────────────── */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1rem;
}

.gold-rule {
  width: 52px;
  height: 1px;
  background: #c9a96e;
  margin: 2rem 0;
}

.serif-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.serif-h2 em { color: #c9a96e; font-style: italic; }

.section-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  /* Lichter dan headings maar goed leesbaar */
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: 3.5rem;
}

/* ── INTRO ────────────────────────────────────────────────────── */
.intro-section {
  padding: 8rem 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.intro-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-top: 3rem;
  display: block;
}

.intro-body {
  font-size: 1rem;
  line-height: 1.95;
  /* Verhoogd van .72 naar .88 — duidelijk leesbaar */
  color: rgba(245, 240, 232, 0.88);
  padding-top: 4.5rem;
}

.intro-body p + p { margin-top: 1.3rem; }

/* ── ROUTE SECTION ────────────────────────────────────────────── */
.route-section {
  padding: 8rem 8vw;
  background: #100e0c;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.day-card {
  padding: 1.8rem 1.4rem 2.8rem;
  border-right: 1px solid rgba(201, 169, 110, 0.14);
  position: relative;
  transition: background 0.4s;
}

.day-card:last-child { border-right: none; }
.day-card:hover { background: rgba(201, 169, 110, 0.07); }
.day-card.travel { opacity: 0.65; }

.dc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dc-date {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1rem;
}

.dc-route {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
  /* Verhoogd van .88 naar volledig wit */
  color: rgba(245, 240, 232, 0.95);
  margin-bottom: 1rem;
}

.dc-col {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  /* Verhoogd van .45 naar .7 */
  color: rgba(245, 240, 232, 0.7);
  padding: 0.28rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.dc-col:first-of-type { border-top: none; }

.dc-km {
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: rgba(201, 169, 110, 0.38);
}

/* ── COLS GRID ────────────────────────────────────────────────── */
.cols-section { padding: 8rem 8vw; }

.cols-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.col-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.col-card.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.col-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.col-card:hover img { transform: scale(1.07); }

/* Sterkere overlay voor betere leesbaarheid van tekst op foto */
.col-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 12, 10, 0.96) 0%,
    rgba(14, 12, 10, 0.55) 35%,
    rgba(14, 12, 10, 0.10) 65%,
    rgba(14, 12, 10, 0.0) 100%
  );
}

.col-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.col-alt {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #d4b47a;
  margin-bottom: 0.5rem;
}

.col-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.col-desc {
  font-size: 0.78rem;
  /* Verhoogd van .62 naar .82 */
  color: rgba(245, 240, 232, 0.82);
  line-height: 1.65;
  max-width: 28ch;
}

/* ── QUOTE ────────────────────────────────────────────────────── */
.quote-section {
  position: relative;
  height: 62vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) saturate(0.8);
}

.quote-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 5rem;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  line-height: 0.4;
  color: #c9a96e;
  display: block;
  margin-bottom: 1.5rem;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.quote-attr {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a96e;
}

/* ── DESTINATIONS ─────────────────────────────────────────────── */
.dest-section { background: #0a0908; }

.dest-header { padding: 8rem 8vw 3.5rem; }

.dest-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(201, 169, 110, 0.14);
}

.dest-item:last-child {
  border-bottom: 1px solid rgba(201, 169, 110, 0.14);
}

.dest-item:nth-child(even) .dest-img { order: -1; }

.dest-img {
  height: 440px;
  overflow: hidden;
}

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
  display: block;
}

.dest-item:hover .dest-img img { transform: scale(1.05); }

.dest-text {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dest-night {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1rem;
}

.dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.dest-desc {
  font-size: 0.93rem;
  line-height: 1.95;
  /* Verhoogd van .68 naar .88 */
  color: rgba(245, 240, 232, 0.88);
  margin-bottom: 1.5rem;
}

.dest-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.dest-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: #c9a96e;
}

/* ── PRACTICAL ────────────────────────────────────────────────── */
.practical-section { padding: 8rem 8vw; }

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.prac-item {
  border-top: 1px solid rgba(201, 169, 110, 0.3);
  padding-top: 1.5rem;
}

.prac-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.prac-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.prac-text {
  font-size: 0.85rem;
  line-height: 1.85;
  /* Verhoogd van .62 naar .8 */
  color: rgba(245, 240, 232, 0.80);
}

.prac-text strong { color: #d4b47a; font-weight: 500; }

/* ── CLOSING ──────────────────────────────────────────────────── */
.closing {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  filter: brightness(0.25) saturate(0.7);
}

.closing-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 4rem;
}

.closing-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 2.5rem;
  margin-top: 1rem;
}

.closing-badge {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a96e;
  border: 1px solid rgba(201, 169, 110, 0.45);
  display: inline-block;
  padding: 0.8rem 2.2rem;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  padding: 1.8rem 8vw;
  border-top: 1px solid rgba(201, 169, 110, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ft-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.55);
}

.ft-note {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
}

/* ── REVEAL ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SCROLLBAR ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #0e0c0a; }
::-webkit-scrollbar-thumb { background: #c9a96e; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .intro-section { grid-template-columns: 1fr; gap: 3rem; }
  .intro-body { padding-top: 0; }
  .days-grid { grid-template-columns: repeat(3, 1fr); }
  .cols-grid { grid-template-columns: 1fr 1fr; }
  .col-card.wide { grid-column: span 2; }
  .dest-item { grid-template-columns: 1fr; }
  .dest-item:nth-child(even) .dest-img { order: 0; }
  .dest-img { height: 280px; }
  .dest-text { padding: 2.5rem; }
  .practical-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .intro-section,
  .route-section,
  .cols-section,
  .practical-section { padding: 5rem 6vw; }
  .days-grid { grid-template-columns: repeat(2, 1fr); }
  .cols-grid { grid-template-columns: 1fr; }
  .col-card.wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  .practical-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.5rem; }
  .gold-strip { flex-direction: column; text-align: center; }
  .gs-div { display: none; }
}


/* ── PREMIUM REFINEMENTS ─────────────────────────────────────── */

body {
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.serif-h2,
.dest-name {
  letter-spacing: -0.01em;
}

.dest-text {
  padding: 5.5rem;
}

.dest-desc {
  max-width: 52ch;
}

.dest-img {
  position: relative;
}

.dest-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,9,8,0.25),
    rgba(10,9,8,0.0)
  );
}

.dest-item {
  transition: background 0.4s ease;
}

.dest-item:hover {
  background: rgba(201, 169, 110, 0.04);
}

.eyebrow {
  opacity: 0.85;
}

.dest-tag {
  border: 1px solid rgba(201, 169, 110, 0.28);
  background: rgba(201, 169, 110, 0.04);
}


/* ── PDF LINK (LUXE CTA) ─────────────────────────────────────── */

.pdf-link {
  margin-top: 3rem;
}

.pdf-btn {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: #c9a96e;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
}

.pdf-btn:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: #c9a96e;
  transform: translateY(-1px);
}

.pdf-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 0;
  height: 1px;
  background: #c9a96e;
  transition: all 0.35s ease;
  transform: translateX(-50%);
}

.pdf-btn:hover::after {
  width: 60%;
}


/* ── HERO CTA ────────────────────────────────────────────────── */

.hero-cta {
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
}

.hero-btn {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 1rem 2.6rem;
  border: 1px solid rgba(212, 180, 122, 0.6);
  color: #d4b47a;
  text-decoration: none;
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
}

.hero-btn:hover {
  background: rgba(212, 180, 122, 0.12);
  border-color: #d4b47a;
  transform: translateY(-2px);
}
