* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  color: #222;
}

/* LAYOUT */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* TOP BAR (USP) */
.topbar {
  background: #f2f8f4;
  border-bottom: 1px solid #e6efe8;
  font-size: 0.78rem;
  line-height: 1.2;
}

.topbar-inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;   /* 👈 dit maakt ’m smaller */
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.topbar-icon {
  font-size: 1.10rem;   /* iets subtieler */
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
  position: relative; /* handig voor mobile nav */
}

/* LOGO IMAGE */
.logo img {
  height: 70px;  /* pas aan */
  width: auto;
  display: block;
}

/* NAV */
.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.nav a:hover {
  text-decoration: underline;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  background: url("../images/achtergrond.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 3.5rem 1rem;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* BUTTON */
.btn-primary {
  background: #ffb703;
  color: #000;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
}

.btn-primary:hover {
  opacity: 0.92;
}

/* FOOTER */
.footer {
  background: #f2f8f4;
  padding: 3rem 1rem;
  text-align: center;
}

.footer-handjes {
  max-width: 170px;
  margin-bottom: 1rem;
}

.footer-inner p {
  margin-top: 0.4rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
 @media (max-width: 768px) {
  .topbar-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 0.35rem 0.75rem;
  }

  .topbar-inner::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .topbar-item {
    flex: 0 0 auto;     /* voorkomt breken */
    white-space: nowrap;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(0,0,0,0.06);
  }
}

  .nav {
    position: absolute;
    top: 78px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: min(85vw, 260px);
    padding: 1rem;
    display: none;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    gap: 1rem;
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* CONTACT */
.contact {
  padding: 4rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.contact-card h2 {
  font-size: 1.9rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.contact-intro {
  color: #444;
  margin-bottom: 1.25rem;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  background: #f2f8f4;
  border: 1px solid #e6efe8;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* FORM */
.contact-form {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field label {
  font-weight: 700;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #6a4cff;
  box-shadow: 0 0 0 4px rgba(106, 76, 255, 0.12);
}

.btn-send {
  width: 100%;
  text-align: center;
  padding: 1rem 1.25rem;
}

.form-status {
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

/* Honeypot hidden */
.hidden-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ABOUT */
.about {
  padding: 4.5rem 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.2rem;
  align-items: center;
}

.about-image {
  background: #f7fbff;
  border: 1px solid #eee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.about-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.about-content h2 {
  font-size: 2.1rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-content p {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-signoff {
  font-weight: 600;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0 1.4rem;
}

.about-cta {
  display: inline-block;
}

/* Mobile */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 1.9rem;
  }
}
/* OPVANG VERHAAL – VERFIJND */
.opvang-verhaal {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.opvang-title {
  font-size: 2.2rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

/* RIJ */
.opvang-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* tekst groter, beeld kleiner */
  gap: 2.8rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

/* standaard: afbeelding RECHTS */
.opvang-text {
  order: 1;
}

.opvang-illustratie {
  order: 2;
}

/* 2e rij: afbeelding LINKS */
.opvang-row.reverse .opvang-text {
  order: 2;
}

.opvang-row.reverse .opvang-illustratie {
  order: 1;
}

/* TEKST */
.opvang-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.opvang-text p {
  margin-bottom: 1.05rem;
}

.opvang-afsluiter {
  font-weight: 600;
}

/* ILLUSTRATIE */
.opvang-illustratie {
  position: relative;
  padding: 1.1rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  max-width: 420px;   /* 👈 dit maakt ’m kleiner */
  margin-left: auto;
  margin-right: auto;
}

/* kleurvlak erachter */
.opvang-illustratie::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 26px;
  z-index: -1;
  background: linear-gradient(135deg, #eaf3ff, #f2f8f4);
}

/* andere kleur bij links geplaatste illustratie */
.opvang-row.reverse .opvang-illustratie::before {
  background: linear-gradient(135deg, #fff3e8, #f7fbff);
}

.opvang-illustratie img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* subtiele speelsheid */
.opvang-row:nth-of-type(odd) .opvang-illustratie {
  transform: rotate(-0.4deg);
}

.opvang-row:nth-of-type(even) .opvang-illustratie {
  transform: rotate(0.4deg);
}

/* MOBIEL */
@media (max-width: 900px) {
  .opvang-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.2rem;
  }

  .opvang-text,
  .opvang-illustratie {
    order: unset;
  }

  .opvang-illustratie {
    max-width: 360px;
    transform: none;
  }

  .opvang-title {
    font-size: 2rem;
  }
}

