/* Testsite — bewust minimaal. Doel is testen, niet etaleren. */
:root {
  --bg: #0f1115;
  --panel: #161a21;
  --text: #e8eaed;
  --dim: #9aa3af;
  --line: #262c36;
  --gold: #c9a227;
  --radius: 10px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { line-height: 1.25; margin: 0 0 .5em; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
p { margin: 0 0 1em; }
.muted, .lead { color: var(--dim); }
.lead { margin-bottom: 1.5em; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(15,17,21,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 600; }
.brand img { height: 32px; width: auto; display: block; }
.nav-list { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; margin-left: auto; }
.nav-list a { color: var(--dim); text-decoration: none; font-size: .95rem; }
.nav-list a:hover { color: var(--text); }
.lang-switch { display: flex; gap: 6px; }
.lang-switch button {
  background: transparent; color: var(--dim); border: 1px solid var(--line);
  border-radius: 6px; padding: 4px 8px; font-size: .8rem; cursor: pointer;
}
.lang-switch button.active { color: var(--gold); border-color: var(--gold); }

/* Hero */
.hero { position: relative; }
.hero img, .hero video { width: 100%; height: min(58vh, 460px); object-fit: cover; display: block; opacity: .5; }
.hero-copy { position: absolute; inset: auto 0 0 0; padding-bottom: 32px; }

/* Secties */
.section { padding: 56px 20px; scroll-margin-top: 72px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.about-media img { width: 100%; height: auto; border-radius: var(--radius); display: block; }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.card h3 { font-size: 1.05rem; }
.card .meta { color: var(--gold); font-size: .85rem; margin: 0; }

/* Formulieren */
.form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; max-width: 720px; }
.form label { display: block; margin-bottom: 14px; }
.form label span { display: block; font-size: .85rem; color: var(--dim); margin-bottom: 5px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 9px 11px; border-radius: 7px;
  border: 1px solid var(--line); background: #0d1015; color: var(--text);
  font: inherit; font-size: 16px; /* 16px voorkomt auto-zoom op iOS */
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn {
  background: var(--gold); color: #1a1408; border: none; border-radius: 7px;
  padding: 10px 18px; font-weight: 600; cursor: pointer; font-size: .95rem;
}
.btn:hover { filter: brightness(1.08); }
.form-msg { margin: 12px 0 0; font-size: .9rem; color: var(--gold); min-height: 1.2em; }
/* Honeypot: onzichtbaar, maar niet display:none (bots slaan dat over). */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--dim); font-size: .9rem; }

@media (max-width: 760px) {
  .two-col, .row { grid-template-columns: 1fr; }
  .nav-list { display: none; }
}
