/* VARIABELEN */
:root {
  --rood: #cc0000;
  --rood-hover: #aa0000;
  --zwart: #111111;
  --wit: #ffffff;
  --grijs: #f5f5f5;
  --grijs-tekst: #666666;
  --border: #e0e0e0;

  --font: "Barlow", sans-serif;

  --nav-hoogte: 110px;
  --max-breedte: 1200px;
  --padding-x: clamp(1.5rem, 5vw, 4rem);

  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--zwart);
  background: var(--wit);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: break-word;
}

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

ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* HERBRUIKBAAR */
.rood {
  color: var(--rood);
}

.sectie__inner {
  max-width: var(--max-breedte);
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

.sectie__titel {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--zwart);
}
/* NAVBAR */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-hoogte);
  background: var(--wit);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  box-shadow: var(--shadow);
}

.nav__inner {
  max-width: var(--max-breedte);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo img {
  height: 75px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--zwart);
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--rood);
}

/* DROPDOWN */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--wit);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  color: var(--zwart);
  transition: all 0.15s ease;
}

.nav__dropdown li a:hover {
  background: var(--grijs);
  color: var(--rood);
  padding-left: 1.5rem;
}

/* WHATSAPP KNOP */
.nav__whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rood);
  color: var(--wit);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.nav__whatsapp:hover {
  background: var(--zwart);
}

.nav__whatsapp svg {
  width: 18px;
  height: 18px;
}

/* HAMBURGER */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--zwart);
  transition: all 0.3s ease;
}

.nav__hamburger.actief span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.actief span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.actief span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* WHATSAPP OVERLAY */
.wa__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.wa__overlay.actief {
  opacity: 1;
  visibility: visible;
}

.wa__menu {
  background: var(--wit);
  border-radius: 16px 16px 0 0;
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.wa__overlay.actief .wa__menu {
  transform: translateY(0);
}

.wa__titel {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  color: var(--zwart);
}

.wa__knop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--grijs);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--zwart);
  transition: background 0.2s ease;
}

.wa__knop:hover {
  background: #e0e0e0;
}

.wa__sluiten {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  font-size: 0.9rem;
  color: var(--grijs-tekst);
  cursor: pointer;
  transition: all 0.2s ease;
}

.wa__sluiten:hover {
  background: var(--grijs);
}
/* HERO */
.hero {
  min-height: auto;
  padding-top: calc(var(--nav-hoogte) + 3rem);
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  gap: 0;
  background: #111111;
}
.hero__tekst,
.hero__foto {
  min-width: 0;
}
.hero__tekst {
  max-width: 700px;
  padding: 4rem var(--padding-x) 4rem calc(var(--padding-x) + 2rem);
}

.hero__locatie {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--rood);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero__locatie svg {
  width: 16px;
  height: 16px;
}

.hero__titel {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--wit);
}

.hero__subtitel {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__knoppen {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.knop__wa {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rood);
  color: var(--wit);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.knop__wa:hover {
  background: var(--zwart);
}

.knop__diensten {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--wit);
  border-bottom: 2px solid var(--rood);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.knop__diensten:hover {
  color: var(--rood);
}

.hero__foto {
  height: 100%;
  min-height: 420px;
  max-height: 500px;
}

.hero__foto img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0;
}

/* DIENSTEN */
.diensten {
  padding: 6rem 0;
  background: var(--grijs);
}

.diensten__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dienst__kaart {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  cursor: pointer;
}

.dienst__kaart:hover {
  border-color: var(--rood);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.dienst__icoon {
  width: 56px;
  height: 56px;
  background: #fff0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.dienst__icoon svg {
  width: 26px;
  height: 26px;
  stroke: var(--rood);
}

.dienst__kaart h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--zwart);
}

.dienst__detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.dienst__detail p {
  overflow: hidden;
  font-size: 0.85rem;
  color: var(--grijs-tekst);
  line-height: 1.6;
}

.dienst__kaart.actief .dienst__detail {
  grid-template-rows: 1fr;
  margin-top: 0.75rem;
}
/* OVER ONS */
.over {
  padding: 6rem 0;
}

.over__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.over__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.over__grid .sectie__titel {
  margin-bottom: 1.25rem;
}

.over__grid p {
  font-size: 0.95rem;
  color: var(--grijs-tekst);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.over__punten {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.over__punten li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--zwart);
}

.over__punten li svg {
  width: 18px;
  height: 18px;
  stroke: var(--rood);
  flex-shrink: 0;
}

/* PROJECTEN */
.projecten {
  padding: 6rem 0;
  background: var(--grijs);
}

.projecten__scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--padding-x);
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.projecten__scroll::-webkit-scrollbar {
  display: none;
}

.project__kaart {
  position: relative;
  flex: 0 0 300px;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--wit);
  border: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.project__kaart:hover {
  transform: translateY(-4px);
}

.project__foto {
  width: 100%;
  height: 100%;
}

.project__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project__kaart:hover .project__foto img {
  transform: scale(1.05);
}

.project__foto--placeholder {
  background: #e0e0e0;
}

.project__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.project__overlay h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wit);
  margin-bottom: 0.4rem;
}

.project__tag {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--wit);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.projecten__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.projecten__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.projecten__dot.actief {
  background: var(--rood);
}
/* CONTACT */
.contact {
  padding: 6rem 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  cursor: pointer;
}

.contact__item:hover {
  border-color: var(--rood);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.contact__item--wa {
  border-color: var(--rood);
  background: #fff0f0;
}

.contact__item--wa:hover {
  background: var(--rood);
  color: var(--wit);
}

.contact__item--wa:hover .contact__label,
.contact__item--wa:hover .contact__waarde {
  color: var(--wit);
}

.contact__item--wa:hover .contact__icoon svg {
  stroke: var(--wit);
  fill: var(--wit);
}

.contact__icoon {
  width: 44px;
  height: 44px;
  background: var(--grijs);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__item--wa .contact__icoon {
  background: var(--rood);
}

.contact__item--wa .contact__icoon svg {
  fill: var(--wit);
  width: 22px;
  height: 22px;
}

.contact__icoon svg {
  width: 20px;
  height: 20px;
  stroke: var(--grijs-tekst);
}

.contact__tekst {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.contact__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grijs-tekst);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact__item--wa .contact__label {
  color: var(--rood);
}

.contact__waarde {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--zwart);
}

.contact__pijl {
  font-size: 1.1rem;
  color: var(--grijs-tekst);
  transition: color 0.2s ease;
}

.contact__item:hover .contact__pijl {
  color: var(--rood);
}

/* GOOGLE MAPS */
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 350px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}
/* FOOTER */
.footer {
  background: var(--zwart);
  padding: 3rem 0 2rem;
}

.footer__inner {
  max-width: var(--max-breedte);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer__logo img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__tekst {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.7;
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.85rem;
  color: #999;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--wit);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: all 0.2s ease;
}

.footer__social a:hover {
  color: var(--wit);
  border-color: var(--rood);
  background: var(--rood);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  width: 100%;
  border-top: 1px solid #222;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: #666;
}

.footer__juridisch a {
  color: #999;
  transition: color 0.2s ease;
}

.footer__juridisch a:hover {
  color: var(--wit);
}

.footer__juridisch span {
  color: #444;
  margin: 0 0.3rem;
}

.footer__bottom a {
  transition: color 0.2s ease;
}

.footer__bottom a:hover {
  color: var(--rood-hover);
}
/* MOBIEL */
@media (max-width: 1024px) {
  .diensten__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.container {
  max-width: 1200px; /* of 1280/1440px, smaakkwestie */
  margin: 0 auto; /* centreert horizontaal */
  padding: 0 24px; /* lucht aan de zijkanten op mobiel/tablet */
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__whatsapp {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }

  .nav__links.actief {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-hoogte);
    left: 0;
    width: 100%;
    background: var(--wit);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    gap: 0;
  }

  .nav__links.actief .nav__link {
    display: block;
    padding: 0.85rem var(--padding-x);
  }

  .nav__links.actief .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    padding: 0.5rem 0;
    border-radius: 0;
  }

  .nav__links.actief .nav__dropdown li a {
    padding-left: calc(var(--padding-x) + 1rem);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-hoogte) + 2rem);
    padding-bottom: 3rem;
  }

  .hero__tekst {
    max-width: 100%;
    padding: 0 var(--padding-x);
  }

  .hero__foto {
    min-height: 300px;
  }

  .over__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .over__grid > * {
    min-width: 0;
  }

  .over__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .project__kaart {
    flex-basis: 260px;
  }

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

  .contact__grid > * {
    min-width: 0;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

  .project__kaart {
    flex-basis: 82vw;
  }

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