/* Bij Hoge Nood — pre-launch
   Font-format en typografie 1-op-1 uit code/website/public/css/shared.css.
   Palet: Warm & Menselijk uit huisstijl/palet-voorstellen.html. */

@font-face {
  font-family: "Agrandir Wide Bold";
  src: url("assets/fonts/agrandir-wide-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palet: Warm & Menselijk */
  --warm-wit:    #faf6f0;
  --zand-licht:  #efe7d8;
  --rood:        #e32511;
  --rood-hover:  #ab1b0b;
  --tekst:       #2a2622;
  --tekst-muted: #6b6358;
  --border:      #d9cfbe;

  /* Typografie — gelijk aan shared.css */
  --font-body:    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Agrandir Wide Bold", Inter, system-ui, sans-serif;

  /* Layout — gelijk aan shared.css */
  --container: 1152px;
  --r-sm: 6px;
  --r-md: 12px;

  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--tekst);
  background: var(--warm-wit);
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.1; text-wrap: balance; }
h3, h4 { font-weight: 600; line-height: 1.3; text-wrap: balance; }
p { text-wrap: pretty; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 5rem 0; }
.section-zand { background: var(--zand-licht); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0.75rem;
}
.brand { display: flex; align-items: center; }
.brand img { height: 56px; width: auto; }

.site-header .header-nav {
  /* desktop: inline naast brand, rechts uitgelijnd via flex */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tekst-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rood); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-bar {
  width: 22px;
  height: 2px;
  background: var(--tekst);
  border-radius: 2px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-cta { background: var(--rood); color: #fff; }
.btn-cta:hover { background: var(--rood-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); color: #fff; }

/* ---- Hero ---- */
.hero { padding: 5rem 0; }
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
  }
}
.hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
}
.hero .sub {
  font-size: 1.125rem;
  color: var(--tekst);
  margin-bottom: 1rem;
  max-width: 32em;
}
.hero .voor-wie {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tekst-muted);
  margin-bottom: 0.5rem;
}
.hero .status {
  font-size: 0.875rem;
  color: var(--tekst-muted);
  margin: 0 0 1.75rem;
}
.hero .btn-cta { margin-top: 1rem; }
.hero-foto {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: none;
  display: block;
}

/* ---- Section header (1-op-1 uit website) ---- */
section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 1rem;
  color: var(--tekst);
}
.section-header {
  text-align: left;
  max-width: 680px;
  margin: 0 0 3rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tekst-muted);
  margin-bottom: 0.75rem;
}
.section-label-danger { color: var(--rood); }
.section-header p {
  font-size: 1.125rem;
  color: var(--tekst-muted);
  line-height: 1.75;
  margin: 0 0 1rem;
}
.section-header p:last-child { margin-bottom: 0; }

/* ---- Contact form ---- */
.contact form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 600px;
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1.75rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tekst);
}
.field .hint { font-weight: 400; color: var(--tekst-muted); }
.field input,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--warm-wit);
  color: var(--tekst);
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--rood);
  outline-offset: 1px;
}
.field textarea { min-height: 120px; resize: vertical; }
.contact .actions { margin-top: 0.5rem; }
.form-status {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--tekst-muted);
  min-height: 1.4em;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--warm-wit);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  font-size: 0.85rem;
  color: var(--tekst-muted);
}
.site-footer .container { display: grid; gap: 0.5rem; }
.site-footer .copy { margin-top: 0.75rem; font-size: 0.8rem; color: var(--tekst-muted); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .btn { padding: 0.75rem 1.25rem; }
  .menu-toggle { display: flex; padding: 10px; }
  .hero-foto { max-width: 360px; margin: 0; }
  .site-header .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-wit);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .site-header .header-nav.open { display: block; }
  .nav-links { flex-direction: column; gap: 0; padding: 0.5rem 0; }
  .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
    width: 100%;
  }
  .nav-links a:last-child { border-bottom: none; }
  .hero h1 { font-size: clamp(1.5rem, 4.2vw, 2.125rem); }
}

/* Honeypot-veld voor het contactformulier — visueel weggeschoven,
   maar wel in de tab-volgorde van screenreaders zodat bots geen
   accessibility-tree-trick kunnen gebruiken om 'm te ontdekken.
   Echte gebruikers zien dit veld niet. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
