@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: #ffffff;
  color: #1c1f23;
  line-height: 1.6; }

img {
  max-width: 100%;
  height: auto;
  display: block; }

nav a {
  color: #2F6364;
  text-decoration: none;
  font-weight: bold; }
  nav a:hover, nav a:focus {
    color: #007c77; }

h2 {
  color: #2F6364; }

h3 {
  color: #2F6364; }

strong {
  color: #007c77; }

.container {
  width: min(1100px, 92vw);
  margin-inline: auto; }

.section {
  padding-block: 4rem; }

.section--alt {
  background: #f6fbfb; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0; }

.nav__list {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0; }

.lang-toggle {
  padding: 0;
  border: none;
  font-family: "Open Sans";
  font-weight: bold;
  color: gray;
  background: transparent;
  font-size: inherit; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden; }

.hero__inner {
  position: relative;
  text-align: center;
  z-index: 2; }

.hero__title {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 1.5rem 0;
  color: #007c77;
  font-weight: 300; }

.hero__subtitle {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: #4a5661;
  margin: 0 auto 2rem auto;
  max-width: 70ch; }

.hero__content {
  max-width: 900px;
  margin: auto;
  padding: 23px 65px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px; }

.contact-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  justify-content: center; }
  .contact-links a {
    font-size: 2rem;
    color: #2F6364;
    transition: color 0.3s ease; }
    .contact-links a:hover {
      color: #1f4141; }

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: .9rem 1.1rem;
  border-radius: 1.9rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  font-weight: 600; }

.btn--primary {
  background: #2F6364;
  color: #fff;
  border-color: transparent; }

.btn--ghost {
  background: transparent;
  color: inherit; }

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden; }

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateZ(0) scale(1) translateX(0);
  will-change: transform, opacity;
  backface-visibility: hidden; }

.hero__slide.is-active {
  opacity: 1; }

@keyframes kb-zoom-pan-left {
  from {
    transform: scale(1) translateX(0); }
  to {
    transform: scale(1) translateX(0); } }
.hero__slide.is-active[data-anim="kenburns"] {
  animation: kb-zoom-pan-left 8000ms ease-in-out forwards; }

.grid {
  display: grid;
  gap: 2rem; }

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

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

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: 1.3fr 1fr;
    align-items: center; }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06); }

.list--check {
  margin: 0;
  padding-left: 1.2rem; }

.list--check li {
  margin-bottom: .5rem;
  list-style: none;
  position: relative; }

.list--check li::before {
  content: "✔";
  position: absolute;
  left: -1.2rem;
  top: 0;
  color: #2ea44f; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem; }

.steps li {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06); }

.portrait img {
  border-radius: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 12px 48px rgba(0, 0, 0, 0.09); }

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

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #f3f8f8;
  color: #4a5661; }

.fade-in, .fade-up {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .6s ease, transform .6s ease; }

.fade-up {
  transform: translateY(10px); }

.is-visible {
  opacity: 1 !important;
  transform: none !important; }

.service div {
  width: 100%;
  min-height: 180px; }

#research-image {
  background-image: url("../img/research.png");
  background-size: 100%;
  background-repeat: no-repeat; }

#design-image {
  background-image: url("../img/design.png");
  background-size: 100%;
  background-repeat: no-repeat; }

#training-image {
  background-image: url("../img/training.png");
  background-size: 100%;
  background-repeat: no-repeat; }

#quote-text1, #quote-text2 {
  color: #007c77;
  font-style: italic;
  font-size: large; }

.quote {
  max-width: 450px; }

#step-1-p, #step-2-p, #step-3-p, #step-4-p {
  max-width: 550px;
  display: inline-block; }

#quote-section .card {
  margin: auto; }

#diensten {
  display: flex;
  gap: 2rem; }
  #diensten .service {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center; }
  #diensten .service img {
    max-width: 100%;
    height: auto;
    margin-top: auto; }

#help ul {
  list-style: none;
  padding-left: 0 !important;
  margin-left: 0 !important; }

#whatitis .fa-ban {
  color: red; }
#whatitis .fa-hand-fist {
  color: goldenrod; }
#whatitis .fa-calendar {
  color: dimgray; }
#whatitis .fa-comment {
  color: dodgerblue; }
#whatitis .bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px; }
#whatitis .feat-icon {
  width: 24px;
  text-align: center;
  flex-shrink: 0; }
#whatitis .feat-text p {
  display: inline; }
#whatitis #afleiding-title, #whatitis #plan-title, #whatitis #mot-title, #whatitis #support-title {
  color: #007c77;
  font-weight: bold; }

.contact__links {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem; }
  .contact__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    color: #2F6364;
    text-decoration: none;
    /* <── haalt de streep weg */
    transition: background 0.2s, color 0.2s; }
    .contact__links a:hover {
      background: rgba(0, 161, 154, 0.1);
      color: #007c77; }
    .contact__links a i {
      font-size: 1.6rem;
      /* <── icoon iets groter */
      line-height: 1;
      /* <── voorkomt extra ruimte onder het icoon */ }

/* ===== Accessible hamburger (1 element + 2 pseudo's) ===== */
.nav-toggle {
  position: relative;
  display: none;
  /* wordt via media query getoond op mobiel */
  width: 44px;
  /* fatsoenlijk touch target */
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; }

.nav-toggle__line,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #2F6364;
  /* jouw kleur */
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease; }

/* middenstreep */
.nav-toggle__line {
  top: 50%;
  transform: translateY(-50%); }

/* boven- en onderstreep */
.nav-toggle::before {
  top: 14px; }

.nav-toggle::after {
  bottom: 14px; }

/* open state -> kruisje */
.nav-toggle.is-open .nav-toggle__line {
  opacity: 0; }

.nav-toggle.is-open::before {
  transform: translateY(8px) rotate(45deg); }

.nav-toggle.is-open::after {
  transform: translateY(-8px) rotate(-45deg); }

/* Toon hamburger en maak nav uitklapbaar op klein scherm */
@media (max-width: 767px) {
  .nav-toggle {
    display: inline-block; }

  .nav {
    display: none; }

  /* dicht */
  .nav.is-open {
    display: block; }

  /* open */ }
/* ========== MOBILE-FIRST NAV ========== */
/* 1) Basis: mobiel = dicht */
.header__inner {
  position: relative; }

#primary-navigation {
  display: none;
  /* dicht op mobiel */
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  z-index: 100; }

#primary-navigation.is-open {
  display: block; }

#primary-navigation .nav__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none; }

/* ====== NAV: mobile-first basis ====== */
.header__inner {
  position: relative; }

#nav-toggle {
  /* hamburger */
  display: inline-block;
  /* mobiel zichtbaar */ }

#primary-navigation {
  /* het <nav> element */
  display: none;
  /* mobiel = dicht */
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  z-index: 100; }

#primary-navigation.is-open {
  display: block; }

#primary-navigation .nav__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center; }

/* ====== NAV: desktop layout ====== */
@media (min-width: 768px) {
  #nav-toggle {
    display: none; }

  /* hamburger verbergen */
  #primary-navigation {
    display: flex !important;
    /* NAV WEER ZICHTBAAR */
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    align-items: center;
    gap: 1.25rem; }

  #primary-navigation .nav__list {
    flex-direction: row;
    /* horizontaal */
    gap: 2rem; } }
.comic {
  display: inline-block;
  max-width: 49%; }

.buddy {
  min-width: 290px; }

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

.werkwijze-text {
  flex: 1; }

.werkwijze-image img {
  max-width: 250px;
  height: auto; }

.banner-medium {
  display: block;
  width: 100%;
  margin-top: 1.2em; }

.banner-small {
  display: none; }

/* Responsiveness */
@media (max-width: 768px) {
  .werkwijze-step {
    flex-direction: column;
    /* afbeelding onder/boven */
    text-align: center;
    /* mooi centreren */ }

  .comic {
    max-width: 49%; }

  .banner-large {
    display: none; }

  .banner-medium {
    display: none; }

  .banner-small {
    display: block; } }
/* === Container wider for werkwijze === */
.container--wide {
  max-width: 1200px; }

/* === Werkwijze: mobile/tablet (stack) === */
.werkwijze-step {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center; }

.werkwijze-text {
  max-width: 550px;
  width: 100%; }

.werkwijze-image img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain; }

/* === Werkwijze: desktop side-by-side === */
@media (min-width: 1024px) {
  .werkwijze-step {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem; }

  .werkwijze-text {
    flex: 0 0 550px;
    /* keep text comfortable */
    max-width: 550px; }

  .werkwijze-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 0; }

  .werkwijze-image img {
    width: 100%;
    /* fill the remaining column */
    max-width: 210px;
    /* keep it balanced */
    height: auto;
    object-fit: contain; }

  .comic {
    max-width: 24%; }

  .portrait {
    margin: 70px; } }
/* Guard against other rules shrinking images */
#werkwijze .werkwijze-image img {
  max-width: 210px; }

.portrait {
  padding: 0;
  margin: 30px; }

/*# sourceMappingURL=main.css.map */
