/* =========================================================
   Maas en Vrienden — Page-specific layout
   Hero, page banners, homepage sections, page layout helpers
   ========================================================= */

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  height: min(72vh, 640px);
  min-height: 420px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media .photo-frame {
  width: 100%;
  height: 100%;
  border-radius: 0;
  aspect-ratio: auto;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 30, 18, 0.38) 0%, rgba(20, 30, 18, 0.05) 30%, rgba(20, 30, 18, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ---------- Homepage intro (centered logo lockup) ---------- */
.brand-intro {
  text-align: center;
  padding-block: 64px 40px;
}
.brand-intro img {
  width: 128px; height: 128px;
  margin-inline: auto;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}
.brand-intro .wordmark {
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--color-dark);
  line-height: 1;
}
.brand-intro .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  color: var(--color-wood);
  margin-top: 12px;
  position: relative;
  display: inline-block;
}

.hero-actions-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 24px;
}
@media (max-width: 900px) {
  .hero-actions-row { grid-template-columns: 1fr; }
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 901px) {
  .hero-cta-group { justify-content: flex-start; padding-top: 18px; }
}

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  position: relative;
  background: var(--color-bg-soft);
  padding-block: 72px 88px;
  text-align: center;
  overflow: hidden;
}
.page-banner .container { max-width: 760px; }
.page-banner h1 { margin-bottom: 6px; }
.page-banner p.lead { color: var(--color-text-muted); font-size: 1.1rem; margin-top: 16px; }
.page-banner .wave-divider { position: absolute; left: 0; right: 0; bottom: -2px; }
.page-banner-motif {
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 74, 0.14), transparent 70%);
  z-index: 0;
}

/* ---------- Split section (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
}
.split-reverse .split-media { order: 2; }
.split-reverse .split-text { order: 1; }
@media (max-width: 900px) {
  .split-reverse .split-media, .split-reverse .split-text { order: initial; }
}
.split-text ul.checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.split-text ul.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.98rem; }
.split-text ul.checklist svg { flex-shrink: 0; margin-top: 3px; color: var(--color-wood); }

/* ---------- Suggestions (menu highlight cards) ---------- */
.suggestion-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.suggestion-media { aspect-ratio: 4/3; }
.suggestion-media .photo-frame { border-radius: 0; aspect-ratio: 4/3; }
.suggestion-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.suggestion-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.suggestion-top h3 { font-size: 1.15rem; }
.suggestion-price { font-family: var(--font-display); color: var(--color-wood); font-size: 1.1rem; white-space: nowrap; }
.suggestion-body p { font-size: 0.9rem; color: var(--color-text-muted); }

/* ---------- Timeline layout ---------- */
.timeline-layout { grid-template-columns: 1fr 1.4fr; }
@media (max-width: 900px) {
  .timeline-layout { grid-template-columns: 1fr; }
}

/* ---------- Reservation layout ---------- */
.reservation-layout { grid-template-columns: 1fr 380px; }
@media (max-width: 900px) {
  .reservation-layout { grid-template-columns: 1fr; }
}

/* ---------- Reviews CTA panel ---------- */
.reviews-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  background: var(--color-dark);
  color: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 700px) {
  .reviews-panel { grid-template-columns: 1fr; text-align: center; }
}
.reviews-panel h2 { color: var(--color-bg); }
.reviews-panel p { color: rgba(250,243,230,0.8); margin-top: 10px; max-width: 46ch; }
@media (max-width: 700px) { .reviews-panel p { margin-inline: auto; } }

/* ---------- Contact section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Camping / gallery captions ---------- */
.gallery-caption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ---------- Evenementen filters ---------- */
.event-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ---------- CTA banner (generic, used across pages) ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--color-dark) 0%, var(--color-dark-600) 100%);
  color: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--color-bg); }
.cta-banner p { color: rgba(250,243,230,0.82); max-width: 52ch; margin-inline: auto; margin-top: 14px; }
.cta-banner .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.cta-banner::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 154, 102, 0.22), transparent 70%);
  top: -100px; left: -80px;
}

/* ---------- Amenities (voorzieningen) ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 26px 16px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
  min-width: 0;
}
.amenity-item span { overflow-wrap: break-word; word-break: break-word; }
.amenity-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.amenity-item .icon-badge { width: 58px; height: 58px; }
.amenity-item span {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.35;
}

/* ---------- Value props row (over-ons / camping) ---------- */
.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 760px) { .value-row { grid-template-columns: 1fr; } }
.value-item { text-align: center; padding: 8px; }
.icon-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  color: var(--color-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-item .icon-badge {
  margin-inline: auto;
  margin-bottom: 18px;
}
.value-item h3 { margin-bottom: 8px; }
.value-item p { font-size: 0.92rem; color: var(--color-text-muted); }
