:root{
  /* Brand */
  --brand-blue: #1E3A8A;
  --brand-green: #22C55E;
  --brand-sky: #38BDF8;

  /* Neutrals */
  --bg: #F8FAFC;
  --panel: #FFFFFF;
  --card: #FFFFFF;
  --text: #0F172A;
  --muted: #475569;
  --line: #E2E8F0;

  /* UI */
  --radius: 18px;
  --shadow: 0 12px 30px rgba(15,23,42,0.08);
  --shadow-soft: 0 8px 20px rgba(15,23,42,0.06);
  --max: 1220px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(1000px 600px at 12% -8%, rgba(34,197,94,0.14), transparent 65%),
    radial-gradient(900px 560px at 92% -6%, rgba(56,189,248,0.18), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.section{ padding: 62px 0; }
.section--tight{ padding: 34px 0; }

.full-bleed{ width: 100%; }

.panel{
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card-pad{ padding: 18px; }

.grid{ display: grid; gap: 16px; }
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }

@media (max-width: 900px){
  .grid-2, .grid-3{ grid-template-columns: 1fr; }
}

/* Typography */
h1{ font-size: clamp(28px, 3.4vw, 38px); line-height:1.15; margin:0 0 10px; color: var(--text); }
h2{ font-size: clamp(20px, 2.1vw, 28px); margin: 0 0 10px; color: var(--text); }
h3{ font-size: 18px; margin: 0 0 8px; color: var(--text); }
p{ margin: 0 0 12px; color: var(--muted); }
.lead{ font-size: 18px; color: #1F2937; opacity: 0.95; }

.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15,23,42,0.72);
}

/* Header / Nav */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(248,250,252,0.78);
  border-bottom: 1px solid var(--line);
  /* Nodig zodat uitklapmenu absoluut t.o.v. header staat */
  overflow: visible;
}

.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand-badge{
  background-image: url('assets/logo.png');
  background-size: cover;
  background-position: center;

  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34,197,94,0.95), rgba(56,189,248,0.90));
  box-shadow: 0 10px 20px rgba(15,23,42,0.12);
}

.navlinks{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}

.navlinks a{
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(15,23,42,0.80);
}

.navlinks a.active{
  background: rgba(30,58,138,0.06);
  border: 1px solid rgba(30,58,138,0.14);
}

/* Buttons */
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.14);
  background: rgba(255,255,255,0.80);
  color: var(--text);
  font-weight: 700;
  cursor:pointer;
  transition: transform 0.08s ease, background 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 6px 14px rgba(15,23,42,0.06);
}

.cta:hover{
  background: rgba(255,255,255,1);
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15,23,42,0.10);
}

.cta--primary{
  background: linear-gradient(135deg, #22C55E, #38BDF8);
  border: 0;
  color: rgba(8,12,20,0.92);
  box-shadow: 0 12px 26px rgba(34,197,94,0.18);
}
.cta--primary:hover{ filter: brightness(1.02); }

/* Hero */
.hero{ padding: 28px 0 40px; }

.hero-wrap{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 900px){
  .hero-wrap{ grid-template-columns: 1fr; }
}

.hero-left{
  padding: 22px;
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(700px 420px at 10% 0%, rgba(34,197,94,0.16), transparent 60%),
    radial-gradient(700px 420px at 90% 10%, rgba(56,189,248,0.14), transparent 60%),
    rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-right{
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
  min-height: 240px;
  display:flex;
  align-items: stretch;
}

.hero-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
}

.badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}
.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.90);
  color: rgba(15,23,42,0.82);
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(15,23,42,0.06);
}

.actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Lists / dividers */
.list{ margin:0; padding-left: 18px; color: var(--muted); }
.list li{ margin: 6px 0; }

.hr{
  border:0;
  height:1px;
  background: var(--line);
  margin: 16px 0;
}

/* Footer */
.footer{
  padding: 22px 0;
  padding-bottom: 80px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.70);
  color: rgba(15,23,42,0.70);
  font-size: 13px;
}

.footer-row{
  display:flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}

small{ color: rgba(15,23,42,0.58); }

/* Forms */
.field{
  display:flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
label{ font-size: 13px; color: rgba(15,23,42,0.82); }
input, select, textarea{
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  color: var(--text);
  padding: 10px 12px;
  outline: none;
  box-shadow: 0 6px 14px rgba(15,23,42,0.04);
}
textarea{ min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(34,197,94,0.55);
}

/* Utility */
.note{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(56,189,248,0.22);
  background: rgba(56,189,248,0.10);
  color: rgba(15,23,42,0.78);
}


/* Image cards */
.img-card{
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
}
.img-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.img-card--sm{ height: 210px; }
.img-card--md{ height: 260px; }

/* Form Success message */
.form-success {
  background: #e6f7ec;
  color: #1f7a3f;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* ── Mobiel menu ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
  }

  .navlinks {
    display: none !important;
    flex-direction: column;
    /* Plak het menu onder de gehele sticky header */
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 12px 18px 20px;
    z-index: 49;
    gap: 2px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  }

  .navlinks.is-open {
    display: flex !important;
  }

  .navlinks a {
    padding: 11px 12px;
    border-radius: 12px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .navlinks a:last-child {
    border-bottom: none;
    margin-top: 6px;
    justify-content: center;
  }
}