* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #111827;
  color: #f8fafc;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}
a {
  text-decoration: none;
}
::selection {
  background: #d4f064;
  color: #111;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
}
nav.scrolled {
  background: rgba(14, 14, 14, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #252525;
}
.logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 18px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: #94a3b8;
  font-size: 14px;
}
.nav-links a:hover {
  color: #f0efe9;
}
@media (max-width: 700px) {
  .nav-links {
    display: none;
  }
  nav {
    padding: 0 20px;
  }
}

#landing {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.grote-naam {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 11vw, 130px);
  letter-spacing: -3px;
  line-height: 1;
  animation: opkomen 0.9s ease 0.2s both;
}
.naam-sub {
  margin-top: 18px;
  font-size: 15px;
  color: #94a3b8;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: opkomen 0.8s ease 0.6s both;
}
.naam-sub span {
  color: #d4f064;
}
.scroll-pijl {
  position: absolute;
  bottom: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  animation: opkomen 0.6s ease 1.1s both;
}
.scroll-pijl p {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
}
.pijl-cirkel {
  width: 38px;
  height: 38px;
  border: 1px solid #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: wiebel 2s ease-in-out 1.8s infinite;
}
.pijl-cirkel svg {
  width: 14px;
  height: 14px;
  stroke: #7a7872;
  fill: none;
  stroke-width: 2;
}
@keyframes opkomen {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wiebel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 32px;
  border-top: 1px solid #252525;
}
#intro {
  border-top: none;
}
#contact {
  border-bottom: none;
}
@media (max-width: 700px) {
  section {
    padding: 70px 20px;
  }
}
.klein-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4f064;
  margin-bottom: 14px;
  display: block;
}
h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.sectie-sub {
  color: #94a3b8;
  font-size: 15px;
  max-width: 480px;
  margin-bottom: 44px;
}

.intro-raster {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 760px) {
  .intro-raster {
    grid-template-columns: 1fr;
  }
}
.intro-tekst p {
  color: #94a3b8;
  font-size: 16px;
  margin-bottom: 16px;
}
.intro-tekst strong {
  color: #f0efe9;
}
.knoppen {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.btn-groen {
  background: #d4f064;
  color: #111;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 6px;
}
.btn-lijn {
  background: transparent;
  color: #f0efe9;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 6px;
  border: 1px solid #374151;
}
.btn-lijn:hover {
  border-color: #555;
}
.stat-blokken {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #252525;
}
.stat-blok {
  background: #1f2937;
  padding: 26px;
}
.stat-blok b {
  font-family: "Syne", sans-serif;
  font-size: 30px;
  display: block;
}
.stat-blok span {
  font-size: 12px;
  color: #94a3b8;
}

.project-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.project-kaart {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.project-kaart:hover {
  border-color: #3a3a3a;
}
.kaart-info {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.tag {
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 4px;
  background: #1e1e1e;
  color: #888;
  border: 1px solid #374151;
}
.project-kaart h3 {
  font-family: "Syne", sans-serif;
  font-size: 17px;
  margin-bottom: 8px;
}
.project-kaart p {
  font-size: 13px;
  color: #94a3b8;
  flex: 1;
}
.meer-info {
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: #d4f064;
}

.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.modal-bg.open {
  display: flex;
}
.modal-box {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 16px;
  max-width: 620px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
}
.modal-balk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid #252525;
  position: sticky;
  top: 0;
  background: #1f2937;
}
.modal-balk span {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  color: #94a3b8;
}
.sluit {
  background: #111;
  border: 1px solid #374151;
  color: #888;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.sluit:hover {
  color: #f0efe9;
}
.modal-tekst {
  padding: 26px;
}
.project-media {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  margin: 20px 0;
}

.image-container {
  position: relative;
  flex-shrink: 0;
}

.image-container img,
video {
  height: 200px;
  width: auto;
  border-radius: 10px;
}

.image-container button {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
.modal-tekst h3 {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}
.modal-tekst .omschrijving {
  color: #94a3b8;
  font-size: 14.5px;
  margin-bottom: 20px;
}
.modal-tekst ul {
  list-style: none;
  margin-bottom: 20px;
}
.modal-tekst ul li {
  font-size: 14px;
  padding-left: 18px;
  position: relative;
  margin-bottom: 9px;
}
.modal-tekst ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d4f064;
}
.stack-rij {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.stack-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background: #111;
  color: #888;
  border: 1px solid #374151;
}
.notitie {
  font-size: 12.5px;
  color: #94a3b8;
  background: #111;
  border-left: 3px solid #d4f064;
  padding: 12px 14px;
  border-radius: 8px;
}

.stage-kaart {
  display: flex;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 12px;
  overflow: hidden;
  max-width: 680px;
}
.stage-streep {
  background: #d4f064;
  width: 4px;
  flex-shrink: 0;
}
.stage-info {
  padding: 30px 32px;
}
.stage-bedrijf {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.stage-functie {
  color: #d4f064;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}
.stage-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.stage-meta span {
  font-size: 12.5px;
  color: #94a3b8;
}
.stage-info p {
  color: #94a3b8;
  font-size: 14.5px;
}

.over-raster {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
}
@media (max-width: 760px) {
  .over-raster {
    grid-template-columns: 1fr;
  }
}
.over-tekst p {
  color: #94a3b8;
  font-size: 15.5px;
  margin-bottom: 16px;
}
.over-tekst strong {
  color: #f0efe9;
}
.eigenschap-raster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.eigenschap {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 10px;
  padding: 18px;
}
.eigenschap h4 {
  font-family: "Syne", sans-serif;
  font-size: 13.5px;
  margin-bottom: 5px;
}
.eigenschap p {
  font-size: 12px;
  color: #94a3b8;
}

.tab-rij {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #252525;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tab-knop {
  font-family: "Syne", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #94a3b8;
  cursor: pointer;
  padding: 10px 20px;
  margin-bottom: -1px;
}
.tab-knop.actief {
  color: #d4f064;
  border-bottom-color: #d4f064;
}
.tab-inhoud {
  display: none;
}
.tab-inhoud.actief {
  display: block;
}
.pill-rij {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1f2937;
  border: 1px solid #374151;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.pill:hover {
  border-color: #3a3a3a;
}
.kleine-titel {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 14px;
  display: block;
}
.talen-lijst {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}
.taal-kaart {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.taal-naam {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.taal-niveau {
  font-size: 12px;
  color: #94a3b8;
}
.taal-badge {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
}
.badge-groen {
  background: rgba(212, 240, 100, 0.12);
  color: #d4f064;
  border: 1px solid rgba(212, 240, 100, 0.25);
}
.badge-blauw {
  background: rgba(100, 180, 255, 0.1);
  color: #6ab4ff;
  border: 1px solid rgba(100, 180, 255, 0.2);
}
.badge-grijs {
  background: rgba(180, 180, 180, 0.08);
  color: #aaa;
  border: 1px solid rgba(180, 180, 180, 0.15);
}
.leer-banner {
  margin-top: 48px;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 14px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.leer-bol {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d4f064;
  flex-shrink: 0;
  animation: puls 2s infinite;
}
@keyframes puls {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 240, 100, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 240, 100, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 240, 100, 0);
  }
}
.leer-titel {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}
.leer-tekst {
  font-size: 13.5px;
  color: #94a3b8;
}
.leer-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}
.leer-tags span {
  font-size: 11.5px;
  font-weight: 600;
  color: #d4f064;
  background: rgba(212, 240, 100, 0.08);
  border: 1px solid rgba(212, 240, 100, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
}

/* CONTACT */
.contact-vak {
  background: #1f2937;
  border-radius: 18px;
  padding: 64px 44px;
  text-align: center;
}
.contact-vak h2 {
  margin-bottom: 14px;
}
.contact-vak p {
  color: #94a3b8;
  max-width: 460px;
  margin: 0 auto 28px;
}
.contact-knoppen {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .contact-vak {
    padding: 44px 24px;
  }
}

footer {
  border-top: 1px solid #252525;
  padding: 26px 32px;
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
}
