/* ═══════════════════════════════════════════════════════════
   content.css — gedeelde stijlen voor artikel-/contentpagina's
   Gebruik samen met: site-base.css, site-nav.css, site-footer.css
═══════════════════════════════════════════════════════════ */

/* Zandkleurige achtergrond voor contentpagina's */
body {
  background: var(--sand);
  line-height: 1.68;
}

/* ── Pagina-container ── */
main.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 32px 96px;
}

main.page section {
  margin-bottom: 48px;
}

main.page section:last-child {
  margin-bottom: 0;
}

/* ── Breadcrumb: eerste <p> in eerste sectie ── */
main.page > section:first-child > p:first-child {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

main.page > section:first-child > p:first-child a {
  color: var(--muted);
  text-decoration: none;
}

main.page > section:first-child > p:first-child a:hover {
  color: var(--green);
  text-decoration: underline;
}

/* ── Koppen ── */
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--green);
  line-height: 1;
  margin-bottom: 14px;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--green);
  margin: 40px 0 14px;
}

h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  margin: 24px 0 10px;
}

/* ── Alinea's & lijsten ── */
p  { font-size: 16px; margin-bottom: 14px; }
li { font-size: 16px; margin-bottom: 6px; }
ul, ol { padding-left: 22px; margin-bottom: 14px; }

/* ── Links in content ── */
main.page a {
  color: var(--green);
  font-weight: 700;
}

main.page a:hover {
  color: var(--orange);
}

/* ── eyebrow / lead ── */
.eyebrow {
  color: var(--amber);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
  font-weight: 600;
  margin-bottom: 36px;
}

/* ── Pull quote ── */
.pull-quote {
  border-left: 4px solid var(--amber);
  background: rgba(240,165,0,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 28px;
  margin: 36px 0;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--green);
  line-height: 1.55;
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 56px;
  line-height: 1;
  color: var(--amber);
  font-style: normal;
  opacity: 0.6;
}

/* ── Tip / info callout ── */
.tip-box {
  background: rgba(44,74,62,0.05);
  border: 1px solid rgba(44,74,62,0.12);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 28px 0;
}
.tip-box strong {
  display: block;
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.tip-box p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
}

/* ── Tabellen (voor kostenpagina's) ── */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 28px;
  font-size: 15px;
}

thead th {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  font-family: 'Nunito', sans-serif;
}

tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--sand-dark);
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:nth-child(even) td {
  background: rgba(44, 74, 62, 0.03);
}

/* ── CTA-box (met primary/secondary knoppen) ── */
.box {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 14px;
  padding: 28px 32px;
  margin: 32px 0;
}

.box h3 {
  font-size: 16px;
  color: var(--green);
  margin: 0 0 10px;
}

.box a.primary {
  display: inline-flex;
  margin-top: 12px;
  padding: 13px 22px;
  background: var(--amber);
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius);
}

.box a.primary:hover {
  background: #FFB800;
  color: var(--green);
}

.box a.secondary {
  display: inline-flex;
  margin-top: 12px;
  margin-left: 8px;
  padding: 13px 20px;
  border: 1.5px solid var(--green);
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  background: transparent;
}

.box a.secondary:hover {
  background: var(--green);
  color: var(--white);
}

/* ── FAQ / details ── */
details {
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
  background: var(--white);
}

summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
  color: var(--green);
}

details[open] summary {
  margin-bottom: 10px;
}

/* ── Gerelateerde pagina's (laatste sectie) ── */
main.page section:last-child ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

main.page section:last-child ul li {
  margin: 0;
  padding: 0;
}

main.page section:last-child ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(44,74,62,0.1);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

main.page section:last-child ul li a::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: var(--green);
  border-radius: 50%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  -webkit-mask-size: 60%;
  mask-size: 60%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: rgba(44,74,62,0.15);
  transition: background-color 0.18s, transform 0.18s;
}

main.page section:last-child ul li a:hover {
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(240,165,0,0.12);
  transform: translateX(3px);
  color: var(--green);
}

main.page section:last-child ul li a:hover::after {
  background-color: var(--amber);
  transform: translateX(2px);
}

/* ── Page Hero (groene header voor content subpagina's) ── */
.page-hero {
  background: var(--green);
  padding: 100px 0 calc(72px + var(--hero-wave-height));
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a2e28 0%, var(--green) 55%, #3a5a4a 100%);
  opacity: .95;
  z-index: 1;
}

/* Photo variant: foto zichtbaar, met sterke leesbare overlay */
.page-hero--photo::before {
  background:
    linear-gradient(to bottom, rgba(20,38,30,0.55) 0%, rgba(20,38,30,0.72) 100%),
    linear-gradient(160deg, rgba(20,38,30,0.6) 0%, rgba(44,74,62,0.4) 100%);
  opacity: 1;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: var(--hero-wave-height);
  background: var(--sand);
  -webkit-mask-image: var(--hero-wave-mask);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  -webkit-mask-size: 100% 100%;
  mask-image: var(--hero-wave-mask);
  mask-repeat: no-repeat;
  mask-position: center bottom;
  mask-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero .eyebrow {
  color: var(--amber);
}

.page-hero h1 {
  color: var(--cream);
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 249, 196, .75);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 12px;
}

/* Keep inline links readable on the dark hero background */
.page-hero p a,
.page-hero p a:visited {
  color: var(--cream);
  font-weight: 700;
  text-decoration-color: rgba(255, 249, 196, 0.65);
}

.page-hero p a:hover,
.page-hero p a:focus-visible {
  color: var(--amber);
  text-decoration-color: var(--amber);
}

.page-hero-cta {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 249, 196, 0.22);
  background: rgba(255, 249, 196, 0.1);
  color: var(--cream);
  font-weight: 800;
  text-decoration: none;
}

.page-hero-cta a:hover {
  background: rgba(255, 249, 196, 0.2);
  border-color: rgba(255, 249, 196, 0.34);
  color: var(--cream);
}


/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */

/* ── Contact hero: nav-ruimte + achtergrond ── */
.contact-main.about-page {
  padding-top: clamp(80px, 10vw, 120px);
  padding-bottom: 0;
}
.contact-main .about-shell {
  padding-bottom: clamp(40px, 5vw, 64px);
}

/* Foto-hoogte verkleinen zodat hij overeenkomt met tekst-kolom */
.contact-hero .about-photo--hero img {
  height: clamp(280px, 36vw, 420px);
}

/* Hero-tekst iets compacter */
.contact-hero .about-title {
  font-size: clamp(64px, 9vw, 110px);
}
.contact-hero .about-intro {
  font-size: clamp(15px, 1.6vw, 18px);
  margin-top: 14px;
  max-width: 44ch;
}

/* ── Lead e-mail blok ── */
.contact-lead {
  padding: 72px 24px 64px;
  text-align: center;
}
.contact-lead-inner {
  max-width: 560px;
  margin: 0 auto;
}
.contact-lead-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(44,74,62,0.22);
}
.contact-lead-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}
.contact-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--amber);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing: 0.04em;
  padding: 18px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(44,74,62,0.22), 0 4px 12px rgba(44,74,62,0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  margin-bottom: 20px;
}
.contact-email-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(44,74,62,0.28), 0 6px 16px rgba(44,74,62,0.12);
  background: var(--green-dark);
}
.contact-email-btn svg {
  flex-shrink: 0;
  transition: transform 0.18s ease;
}
.contact-email-btn:hover svg {
  transform: translateX(4px);
}
.contact-lead-note {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ── Twee kaarten ── */
.contact-topics {
  padding: 56px 24px 72px;
  background: var(--sand);
}
.contact-topics-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 12px 32px rgba(44,74,62,0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card--light {
  background: var(--white);
  border: 1px solid rgba(44,74,62,0.12);
  box-shadow: 0 8px 24px rgba(44,74,62,0.08);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon--collab {
  background: rgba(240,165,0,0.18);
  color: var(--amber);
}
.contact-card-icon--general {
  background: rgba(44,74,62,0.08);
  color: var(--green);
}

.contact-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--cream);
  margin: 0;
  line-height: 1;
}
.contact-card--light h2 {
  color: var(--green);
}

.contact-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,249,196,0.7);
  margin: 0;
}
.contact-card--light p {
  color: var(--muted);
}

.contact-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-faq-list li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  margin: 0;
}
.contact-faq-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 800;
}

.contact-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--green);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius);
  align-self: flex-start;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.contact-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240,165,0,0.3);
}
.contact-card-cta svg {
  transition: transform 0.18s ease;
}
.contact-card-cta:hover svg {
  transform: translateX(3px);
}
.contact-card-cta--ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid rgba(44,74,62,0.25);
}
.contact-card-cta--ghost:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(44,74,62,0.18);
}

/* ── Reactietijd ── */
.contact-response {
  padding: 0 24px 56px;
  background: var(--sand);
}
.contact-response-inner {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(44,74,62,0.06);
  border: 1px solid rgba(44,74,62,0.1);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}
.contact-response-inner svg {
  flex-shrink: 0;
  color: var(--green);
  opacity: 0.6;
}
.contact-response-inner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .contact-topics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-card {
    padding: 28px 24px;
  }
  .contact-lead {
    padding: 52px 20px 48px;
  }
  .contact-topics {
    padding: 0 20px 52px;
  }
  .contact-response {
    padding: 0 20px 52px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 84px 0 calc(48px + var(--hero-wave-height));
  }

  .page-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero-cta a {
    width: 100%;
  }
}

.page-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.page-hero-cta a {
  display: inline-block;
  background: var(--amber);
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
}

.page-hero-cta a:hover {
  background: #e6a800;
}

.page-hero + main.page {
  padding-top: 56px;
}

/* ── Destinations tiles (hero quick-links) ── */
.destinations-tiles {
  background: transparent;
  padding: 18px 0 8px;
}
.destinations-tiles .tiles {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  align-items: stretch;
  padding: 0 20px;
}
.destinations-tiles .tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(44,74,62,0.06);
  box-shadow: 0 6px 18px rgba(44,74,62,0.04);
  color: var(--green);
}
.destinations-tiles .tile strong {
  font-size: 15px;
  font-weight: 800;
}
.destinations-tiles .tile span {
  font-size: 13px;
  color: var(--muted);
}


/* ── Responsive ── */
@media (max-width: 700px) {
  main.page {
    padding: 48px 20px 64px;
  }

  h2 {
    margin-top: 28px;
  }

  .box {
    padding: 22px 20px;
  }

  .page-hero {
    padding: 72px 0 calc(52px + var(--hero-wave-height));
  }
}
