/* ==========================================================================
   Trouwen op Urk — huisstijl
   Elegant & licht, maritiem. Diepblauw + zand/crème + goud accent.
   ========================================================================== */

:root {
  --navy: #14304A;
  --navy-soft: #1B4A6B;
  --sand: #FBF6EC;
  --sand-deep: #F3EADB;
  --gold: #C6A85C;
  --gold-dark: #A98C42;
  --ink: #22303C;
  --ink-soft: #4A5A67;
  --white: #FFFFFF;
  --line: #E4D9C4;
  --shadow: 0 6px 24px rgba(20, 48, 74, 0.08);
  --shadow-lg: 0 14px 40px rgba(20, 48, 74, 0.14);
  --radius: 14px;
  --maxw: 1140px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.7;
  font-size: 18px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy-soft); text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 .5em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0 0 .8em;
}

.lead { font-size: 1.22rem; color: var(--ink-soft); }

/* --- buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  padding: .85em 1.6em;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn-primary { background: var(--gold); color: #2a2410; }
.btn-primary:hover { background: var(--gold-dark); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-light { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.55); color:#fff; }
.btn-light:hover { background:#fff; color: var(--navy); }
.btn:hover { transform: translateY(-2px); }

/* --- header / nav --- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 236, .92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); text-decoration: none; display:flex; align-items:center; gap:.5rem; }
.brand .mark { width: 26px; height: 26px; flex: none; }
.nav-links { display: flex; gap: 1.4rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-family: var(--font-sans); font-weight: 600; font-size: .98rem; color: var(--ink); text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-dark); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--sand);
    border-bottom: 1px solid var(--line); padding: 8px 22px 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 14px 0; }
}

/* --- hero --- */
.hero {
  position: relative;
  background: url('/assets/img/hero-nijkerk.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,48,74,.82) 0%, rgba(27,74,107,.72) 55%, rgba(44,95,130,.60) 100%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 80% -10%, rgba(198,168,92,.22), transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; padding: 84px 0 92px; max-width: 760px; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: var(--gold); }
.hero p { color: rgba(255,255,255,.9); font-size: 1.25rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-wave { position:absolute; bottom:-1px; left:0; width:100%; z-index:1; display:block; }

/* --- sections --- */
.section { padding: 70px 0; }
.section-sand { background: var(--sand-deep); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 2.4rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* --- cards grid --- */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--ink-soft); margin-bottom: 1em; font-size: 1rem; }
.card .card-link { margin-top: auto; font-weight: 700; font-family: var(--font-sans); font-size: .95rem; text-decoration: none; color: var(--gold-dark); }
.card .card-link::after { content: " →"; }
.card .ico { width: 42px; height: 42px; margin-bottom: 1rem; color: var(--gold-dark); }

/* --- feature/venue list --- */
.venue { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:1.3rem 1.4rem; box-shadow: var(--shadow); margin-bottom: 1rem; }
.venue h3 { margin-bottom:.2em; }
.venue .meta { font-size: .92rem; color: var(--ink-soft); margin: 0 0 .6em; }
.venue .meta strong { color: var(--ink); }
.tag { display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: var(--gold-dark); background: var(--sand-deep); border-radius:999px; padding:.25em .8em; margin-bottom:.6em; }

/* --- tables --- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border:1px solid var(--line); box-shadow: var(--shadow); background:#fff; }
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .98rem; }
caption { text-align:left; padding:.8rem 1rem; font-size:.85rem; color: var(--ink-soft); }
th, td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--navy); color:#fff; font-family: var(--font-sans); font-weight:600; }
tbody tr:nth-child(even) { background: var(--sand); }

/* --- callout / funnel --- */
.callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color:#fff; border-radius: var(--radius); padding: 2.2rem 2rem;
  box-shadow: var(--shadow-lg); display:flex; gap:1.5rem; align-items:center; flex-wrap:wrap;
}
.callout h3 { color:#fff; margin-bottom:.3em; }
.callout p { color: rgba(255,255,255,.88); margin:0; }
.callout .callout-body { flex: 1 1 320px; }
.note { background: var(--sand-deep); border-left: 4px solid var(--gold); border-radius: 8px; padding: 1rem 1.2rem; font-size: .97rem; color: var(--ink-soft); }
.note strong { color: var(--ink); }

/* --- breadcrumb --- */
.breadcrumb { font-size: .85rem; color: var(--ink-soft); padding: 1rem 0 0; }
.breadcrumb ol { list-style:none; display:flex; flex-wrap:wrap; gap:.4rem; margin:0; padding:0; }
.breadcrumb li::after { content:"/"; margin-left:.4rem; color: var(--line); }
.breadcrumb li:last-child::after { content:""; }
.breadcrumb a { text-decoration:none; }

/* --- prose --- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose .note { margin: 1.4em 0; }

/* --- FAQ (details) --- */
.faq details {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  margin-bottom: .9rem; box-shadow: var(--shadow); overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 1.3rem;
  font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy); font-weight:600;
  display:flex; justify-content:space-between; align-items:center; gap:1rem;
}
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; color: var(--gold-dark); font-size:1.6rem; line-height:1; font-family: var(--font-sans); }
.faq details[open] summary::after { content:"–"; }
.faq .faq-a { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq .faq-a p:last-child { margin-bottom:0; }

/* --- footer --- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 56px 0 28px; }
.site-footer h4 { color:#fff; font-family: var(--font-sans); font-size: .82rem; letter-spacing:.16em; text-transform:uppercase; margin-bottom: 1rem; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr; gap:1.6rem; } }
.site-footer a { color: rgba(255,255,255,.82); text-decoration:none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style:none; margin:0; padding:0; }
.site-footer li { margin-bottom:.5rem; }
.footer-brand { font-family: var(--font-serif); font-size:1.4rem; color:#fff; margin-bottom:.5rem; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.16); margin-top:2.4rem; padding-top:1.4rem; font-size:.82rem; color: rgba(255,255,255,.6); display:flex; justify-content:space-between; flex-wrap:wrap; gap:.6rem; }

/* --- utilities --- */
.mt-0 { margin-top:0; } .mb-0 { margin-bottom:0; }
.text-muted { color: var(--ink-soft); }
.tac { text-align:center; }
.stack > * + * { margin-top: 1rem; }
.pill-list { display:flex; flex-wrap:wrap; gap:.6rem; list-style:none; padding:0; margin:0; }
.pill-list li { background:#fff; border:1px solid var(--line); border-radius:999px; padding:.4em 1em; font-size:.92rem; box-shadow: var(--shadow); }

/* --- foto's met bronvermelding --- */
.location-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
}
.photo-caption {
  font-size: .82rem;
  color: var(--ink-soft);
  margin-top: .5rem;
  line-height: 1.5;
}
.photo-caption a { color: var(--ink-soft); text-decoration: underline; }
.photo-caption a:hover { color: var(--navy); }

/* --- reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .card:hover, .btn:hover { transform: none; }
}
