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

:root {
  --oranje: #E8471A;
  --blauw:  #2176AE;
  --groen:  #7DC23E;
  --donker: #1a1a2e;
  --grijs:  #f7f7f5;
  --tekst:  #2d2d2d;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--tekst);
  background: #fff;
  line-height: 1.7;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 3rem;
}

nav img.logo { height: 52px; width: auto; }

nav ul { list-style: none; display: flex; gap: 2rem; }

nav ul a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--tekst);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

nav ul a:hover,
nav ul a.actief { color: var(--oranje); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tekst);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  background: var(--grijs);
  padding: 4rem 3rem 3rem;
  border-bottom: 1px solid #eee;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero p.sectie-label {
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--donker);
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 1.25rem;
}

.page-hero .lead {
  font-size: 1.15rem;
  color: #555;
  max-width: 640px;
  line-height: 1.7;
}

/* ── HOMEPAGE HERO ───────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 88vh;
  padding: 4rem 3rem;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-tekst h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--donker);
}

.hero-tekst h1 span.accent-o { color: var(--oranje); }
.hero-tekst h1 span.accent-g { color: var(--groen); }
.hero-tekst h1 span.accent-b { color: var(--blauw); }

.hero-tekst p {
  font-size: 1.15rem;
  color: #555;
  max-width: 480px;
  margin-bottom: 1.25rem;
}

.hero-quote {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blauw);
  max-width: 440px;
  border-left: 3px solid var(--groen);
  padding-left: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  max-width: 420px;
  width: 100%;
  border-radius: 24px;
}

/* ── KNOPPEN ─────────────────────────────────────────── */
.knop {
  display: inline-block;
  background: var(--oranje);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(232,71,26,0.3);
}

.knop:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,71,26,0.4);
}

.knop.secundair {
  background: transparent;
  color: var(--blauw);
  border: 2.5px solid var(--blauw);
  box-shadow: none;
  margin-left: 1rem;
}

.knop.secundair:hover {
  background: var(--blauw);
  color: #fff;
  box-shadow: 0 4px 16px rgba(33,118,174,0.3);
}

/* ── INTRO STRIP ─────────────────────────────────────── */
.intro-strip {
  background: var(--grijs);
  padding: 3.5rem 3rem;
  text-align: center;
}

.intro-strip p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--donker);
  line-height: 1.6;
}

/* ── SECTIES ─────────────────────────────────────────── */
section {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sectie-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--oranje);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--donker);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.sectie-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ── TIJDLIJN STAPPEN ────────────────────────────────── */
.stappen {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}

.stap {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 1.5rem;
  align-items: start;
  position: relative;
}

.stap:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -1rem;
  width: 2px;
  background: #e8e8e8;
}

.stap-links { display: flex; align-items: center; }

.stap-nr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blauw);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.stap:nth-child(2) .stap-nr { background: var(--oranje); }
.stap:nth-child(3) .stap-nr { background: var(--groen); }
.stap:nth-child(4) .stap-nr { background: var(--donker); }
.stap:nth-child(5) .stap-nr { background: var(--oranje); }
.stap:nth-child(6) .stap-nr { background: var(--blauw); }

.stap-rechts { padding: 0.6rem 0 2.5rem 0; }

.stap-rechts h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--donker);
  margin-bottom: 0.35rem;
}

.stap-rechts p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  max-width: 540px;
}

/* ── THEMA TAGS ──────────────────────────────────────── */
.thema-sectie {
  background: var(--grijs);
  padding: 4rem 3rem;
}

.thema-sectie > div { max-width: 1200px; margin: 0 auto; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.tag {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--donker);
}

.tag.o { border-color: var(--oranje); color: var(--oranje); }
.tag.b { border-color: var(--blauw);  color: var(--blauw);  }
.tag.g { border-color: var(--groen);  color: var(--groen);  }

/* ── PORTFOLIO GRID ──────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.project-kaart {
  border-radius: 16px;
  overflow: hidden;
  background: var(--grijs);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-kaart:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.project-kaart-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.project-kaart-body { padding: 1.25rem 1.5rem 1.5rem; }

.project-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blauw);
  margin-bottom: 0.4rem;
}

.project-kaart-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--donker);
  margin-bottom: 0.5rem;
}

.project-kaart-body p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* ── CASE DETAIL ─────────────────────────────────────── */
.case-blok {
  border-top: 2px solid #eee;
  padding: 3rem 0;
}

.case-blok:first-child { border-top: none; padding-top: 0; }

.case-blok h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--donker);
  margin-bottom: 0.25rem;
}

.case-meta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blauw);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.case-rijen {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.case-rij-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--oranje);
  margin-bottom: 0.4rem;
}

.case-rij p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ── VIDEO EMBED ─────────────────────────────────────── */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  margin-top: 2.5rem;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── DUBBELE OPBRENGST ───────────────────────────────── */
.opbrengst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.opbrengst-kaart {
  background: var(--grijs);
  border-radius: 16px;
  padding: 2rem;
}

.opbrengst-kaart h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--donker);
  margin-bottom: 0.5rem;
}

.opbrengst-kaart p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ── BULLET LIJSTEN ──────────────────────────────────── */
.bullet-lijst {
  list-style: none;
  margin-top: 1rem;
}

.bullet-lijst li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  color: var(--tekst);
  line-height: 1.6;
}

.bullet-lijst li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oranje);
}

/* ── MATCH GRID ──────────────────────────────────────── */
.match-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.match-kaart {
  border-radius: 16px;
  padding: 2rem;
}

.match-kaart.goed { background: #edf7e5; }
.match-kaart.minder { background: #fdf0ec; }

.match-kaart h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.match-kaart.goed h3 { color: var(--groen); }
.match-kaart.minder h3 { color: var(--oranje); }

/* ── VOOR WIE DONKER ─────────────────────────────────── */
.voor-wie-sectie {
  background: var(--donker);
  color: #fff;
  padding: 5rem 3rem;
}

.voor-wie-sectie > div { max-width: 1200px; margin: 0 auto; }
.voor-wie-sectie .sectie-label { color: var(--groen); }
.voor-wie-sectie h2 { color: #fff; }
.voor-wie-sectie .sectie-intro { color: #aab; }

.doelgroep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.doelgroep {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1.5rem;
}

.doelgroep h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.doelgroep p { font-size: 0.88rem; color: #99aacc; line-height: 1.5; }

/* ── CTA SECTIE ──────────────────────────────────────── */
.cta-sectie {
  background: var(--grijs);
  padding: 4rem 3rem;
  text-align: center;
}

.cta-sectie h2 { margin-bottom: 0.75rem; }

.cta-sectie p {
  font-size: 1.1rem;
  color: #555;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact-sectie {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 0.75rem; }

.contact-info p {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.contact-praktisch {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #777;
}

.contact-praktisch strong { color: var(--tekst); }

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea, form select {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  padding: 0.85rem 1.1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
  background: var(--grijs);
  color: var(--tekst);
}

form input:focus, form textarea:focus {
  border-color: var(--blauw);
  background: #fff;
}

form textarea { min-height: 140px; resize: vertical; }

form button {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.9rem 2rem;
  background: var(--oranje);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(232,71,26,0.3);
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,71,26,0.4);
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--grijs);
  border-top: 1px solid #eee;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #888;
}

footer .powered-by-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #888;
  font-size: 0.8rem;
  font-weight: 700;
  transition: color 0.2s;
}

footer .powered-by-link:hover { color: var(--tekst); }

footer .powered-by-link img {
  height: 180px;
  width: auto;
}

footer .social-links { display: flex; gap: 1rem; }

footer .social-links a {
  color: #888;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: color 0.2s;
}

footer .social-links a:hover { color: var(--oranje); }

/* ── PROJECT KAART AFBEELDINGEN ─────────────────────── */
.project-kaart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── FOTO GRID (projectpagina) ───────────────────────── */
.foto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.foto-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

/* ── CASE FEATURED AFBEELDING ────────────────────────── */
.case-featured {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
  display: block;
}

/* ── BIO / PERSOON KAARTEN ───────────────────────────── */
.persoon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.persoon-kaart {
  background: var(--grijs);
  border-radius: 16px;
  padding: 2rem 2.5rem;
}

.persoon-kaart h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--donker);
  margin-bottom: 0.3rem;
}

.persoon-kaart .persoon-rol {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--oranje);
  margin-bottom: 1rem;
  display: block;
}

.persoon-kaart p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
}

/* ── RESPONSIVE ──────────────────────────────────────── */

/* Tablet: 901px – 1100px */
@media (max-width: 1100px) {
  nav { padding: 0.75rem 2rem; }
  section { padding: 4rem 2rem; }
  .thema-sectie,
  .voor-wie-sectie,
  .cta-sectie,
  .intro-strip { padding: 3.5rem 2rem; }
  .contact-sectie { padding: 4rem 2rem; }
  .page-hero { padding: 3.5rem 2rem 2.5rem; }

  .hero {
    padding: 3rem 2rem;
    gap: 2rem;
  }
}

/* Tablet: tot 900px */
@media (max-width: 900px) {
  .case-rijen { grid-template-columns: 1fr; gap: 1rem; }
  .match-grid { grid-template-columns: 1fr; }
  .opbrengst-grid { grid-template-columns: 1fr; }
  .persoon-grid { grid-template-columns: 1fr; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 2rem;
    text-align: center;
  }

  .hero-tekst p,
  .hero-quote { margin-left: auto; margin-right: auto; }
  .hero-logo { order: -1; }
  .hero-logo img { max-width: 280px; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobiel: tot 768px */
@media (max-width: 768px) {
  nav { padding: 0.75rem 1.25rem; }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  nav ul.open { display: flex; }

  nav ul li a {
    display: block;
    padding: 0.6rem 0;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
  }

  nav ul li:last-child a { border-bottom: none; }

  .nav-toggle { display: flex; }

  .page-hero { padding: 2.5rem 1.25rem 2rem; }

  section { padding: 3rem 1.25rem; }
  .thema-sectie,
  .voor-wie-sectie,
  .cta-sectie { padding: 2.5rem 1.25rem; }
  .intro-strip { padding: 2rem 1.25rem; }

  /* Portfolio: 1 kolom op mobiel */
  .portfolio-grid { grid-template-columns: 1fr; }

  /* CTA knoppen stapelen */
  .cta-sectie .knop,
  .cta-sectie .knop.secundair {
    display: block;
    width: fit-content;
    margin: 0 auto 0.75rem;
  }

  .knop.secundair { margin-left: 0; }

  .contact-sectie {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.25rem;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1.25rem;
  }
}

/* Klein mobiel: tot 480px */
@media (max-width: 480px) {
  .hero-logo img { max-width: 200px; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* Foto-grid: horizontale swipe-carousel op mobiel */
@media (max-width: 768px) {
  .foto-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    /* verberg scrollbar visueel maar laat het werken */
    scrollbar-width: none;
  }
  .foto-grid::-webkit-scrollbar { display: none; }

  .foto-grid img {
    flex-shrink: 0;
    width: 82vw;
    max-width: 360px;
    aspect-ratio: 4/3;
    scroll-snap-align: start;
    border-radius: 10px;
    object-fit: cover;
  }
}

/* ── LIGHTBOX ─────────────────────────────────────────── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox-overlay.actief {
  display: flex;
}

.lightbox-overlay img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.foto-grid img,
.case-featured {
  cursor: zoom-in;
}
