/* ═══════════════════════════════════════════════
   Hulp met ICT – Gedeelde stylesheet
   Inspired Creations · Steven van Gool · 2026
═══════════════════════════════════════════════ */

:root {
  --blauw: #1a3a5c;
  --lichtblauw: #e8f2ff;
  --accent: #f97316;
  --accentlicht: #fff4ed;
  --groen: #16a34a;
  --tekst: #1e293b;
  --subtekst: #64748b;
  --wit: #ffffff;
  --lichtgrijs: #f8fafc;
  --rand: #e2e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--tekst);
  background: var(--wit);
  font-size: 17px;
  line-height: 1.7;
}

h1, h2, h3 { font-family: 'Fraunces', serif; line-height: 1.2; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rand);
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-family: 'Fraunces', serif; font-size: 1.3rem;
  color: var(--blauw); font-weight: 700; text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a {
  text-decoration: none; color: var(--subtekst);
  font-size: 0.95rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--blauw); }
.nav-cta {
  background: var(--accent) !important; color: white !important;
  padding: 0.5rem 1.2rem; border-radius: 6px; font-weight: 500 !important;
}
.nav-cta:hover { background: #ea6c0a !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--blauw); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: white; border-bottom: 1px solid var(--rand);
  padding: 1rem 2rem 1.5rem;
  position: sticky; top: 61px; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--tekst);
  font-size: 1.05rem; font-weight: 500;
  padding: 0.6rem 0; border-bottom: 1px solid var(--rand);
}
.mobile-menu a:last-child {
  border-bottom: none; margin-top: 0.5rem;
  background: var(--accent); color: white !important;
  padding: 0.75rem 1rem; border-radius: 8px; text-align: center;
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 900px; margin: 0 auto; }

.section-label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--blauw); margin-bottom: 1rem;
}
.section-intro {
  font-size: 1.05rem; color: var(--subtekst);
  max-width: 620px; margin-bottom: 3rem;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: white;
  padding: 0.85rem 1.8rem; border-radius: 8px;
  text-decoration: none; font-weight: 500; font-size: 1rem;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: #ea6c0a; transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.12); color: white;
  padding: 0.85rem 1.8rem; border-radius: 8px;
  text-decoration: none; font-weight: 500; font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.25); transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* ── FOOTER ── */
footer {
  background: #0f2440; color: rgba(255,255,255,0.6);
  padding: 2rem; text-align: center; font-size: 0.85rem;
}
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: white; }

/* ── DOC PAGINA'S (AV + Privacy) ── */
.hero-doc {
  background: linear-gradient(135deg, var(--blauw) 0%, #2563a8 100%);
  color: white; padding: 3.5rem 2rem;
}
.hero-doc-inner { max-width: 780px; margin: 0 auto; }
.doc-label {
  display: inline-block; background: rgba(249,115,22,0.2); color: #fdba74;
  border: 1px solid rgba(249,115,22,0.3); padding: 0.25rem 0.8rem;
  border-radius: 20px; font-size: 0.8rem; font-weight: 500;
  margin-bottom: 1rem; letter-spacing: 0.03em;
}
.hero-doc h1 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.75rem; }
.hero-doc p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.doc-body { max-width: 780px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.doc-meta {
  background: var(--lichtgrijs); border: 1px solid var(--rand);
  border-radius: 10px; padding: 1.25rem 1.5rem; margin-bottom: 2.5rem;
  font-size: 0.9rem; color: var(--subtekst);
  display: flex; flex-direction: column; gap: 0.35rem;
}
.doc-meta strong { color: var(--tekst); }
.doc-body h2 {
  font-family: 'Fraunces', serif; font-size: 1.25rem;
  color: var(--blauw); margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--rand);
}
.doc-body h2:first-of-type { margin-top: 0; }
.doc-body p { margin-bottom: 0.85rem; }
.doc-body ul { margin: 0.5rem 0 0.85rem 1.5rem; }
.doc-body li { margin-bottom: 0.4rem; }
.artikel-num {
  display: inline-block; color: white;
  font-size: 0.72rem; font-weight: 700; padding: 0.15rem 0.5rem;
  border-radius: 4px; margin-right: 0.4rem; vertical-align: middle;
  letter-spacing: 0.04em;
}
.nav-terug {
  font-size: 0.9rem; color: var(--subtekst);
  text-decoration: none; display: flex; align-items: center; gap: 0.4rem;
}
.nav-terug:hover { color: var(--blauw); }

/* ── ANIMATIES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-inner > * { animation: fadeUp 0.6s ease both; }
.hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.3s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.4s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.5s; }

/* ── MOBIEL ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 1.25rem; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; text-align: center; }
  .doc-body { padding: 2rem 1.25rem 4rem; }
  .hero-doc { padding: 2.5rem 1.25rem; }
}
@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
}
