/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --groen:   #2C5F2E;
  --groen-d: #1e4220;
  --oranje:  #E87C2E;
  --donker:  #1a1a1a;
  --grijs:   #f5f5f2;
  --tekst:   #333;
  --wit:     #ffffff;
  --radius:  12px;
  --schaduw: 0 4px 20px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--tekst);
  background: var(--wit);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--oranje);
  color: var(--wit);
}
.btn--primary:hover { background: #cf6d24; }

.btn--ghost {
  background: transparent;
  color: var(--wit);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover { border-color: var(--wit); background: rgba(255,255,255,.1); }

.btn--nav {
  background: var(--oranje);
  color: var(--wit);
  padding: 10px 20px;
  font-size: .875rem;
}
.btn--nav:hover { background: #cf6d24; }

/* ─── Section titles ─── */
.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--donker);
  margin-bottom: 12px;
}
.section-title--light { color: var(--wit); }

.section-sub {
  color: #666;
  max-width: 560px;
  margin-bottom: 48px;
}
.section-sub--light { color: rgba(255,255,255,.8); }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wit);
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo__img {
  height: 44px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  text-decoration: none;
  color: var(--tekst);
  font-size: .9rem;
  font-weight: 500;
}
.nav a:not(.btn):hover { color: var(--groen); }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, var(--groen-d) 0%, var(--groen) 60%, #3a7a3c 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.hero__label {
  color: var(--oranje);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--wit);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__desc {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  background: var(--oranje);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--wit);
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(232,124,46,.4);
}
.badge__number {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}
.badge__label {
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
}

/* ─── Diensten ─── */
.diensten {
  padding: 80px 0;
  background: var(--grijs);
}
.diensten__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.dienst-kaart {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--schaduw);
  transition: transform .2s, box-shadow .2s;
}
.dienst-kaart:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.dienst-kaart__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.dienst-kaart h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--groen);
  margin-bottom: 10px;
}
.dienst-kaart p {
  font-size: .9rem;
  color: #555;
  line-height: 1.6;
}

/* ─── Over mij ─── */
.over {
  padding: 80px 0;
}
.over__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.over__text .section-title { margin-bottom: 20px; }
.over__text p {
  color: #555;
  margin-bottom: 16px;
}
.over__list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.over__list li {
  font-weight: 600;
  color: var(--groen);
}

.info-kaart {
  background: var(--grijs);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--oranje);
}
.info-kaart h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--donker);
}
.info-kaart table { width: 100%; border-collapse: collapse; }
.info-kaart td {
  padding: 8px 0;
  font-size: .9rem;
  border-bottom: 1px solid #e0e0e0;
}
.info-kaart td:first-child {
  color: #888;
  font-weight: 600;
  width: 40%;
}
.info-kaart td:last-child { color: var(--donker); }

/* ─── Contact ─── */
.contact {
  padding: 80px 0;
  background: var(--groen);
}
.contact .section-title,
.contact .section-sub { margin-bottom: 12px; }
.contact .section-sub { margin-bottom: 48px; }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.contact-kaart {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  text-decoration: none;
  color: var(--wit);
  transition: background .2s, transform .2s;
  display: block;
}
.contact-kaart:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.contact-kaart__icon { font-size: 2rem; margin-bottom: 14px; }
.contact-kaart h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-kaart p {
  font-size: .9rem;
  opacity: .85;
  line-height: 1.5;
}

/* ─── Footer ─── */
.footer {
  background: var(--donker);
  padding: 24px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer p {
  color: #888;
  font-size: .8rem;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav a:not(.btn) { display: none; }

  .hero { padding: 60px 0; }
  .hero__inner { flex-direction: column; align-items: flex-start; }
  .hero__badge { display: none; }

  .over__inner { grid-template-columns: 1fr; gap: 32px; }

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