@charset "UTF-8";
/* layout.scss */
/* Reset / basisinstellingen */
* {
  box-sizing: border-box;
  padding: 0;
}

main {
  padding-bottom: 2rem;
}

/* Basis typografie */
body {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
}

/* Centrale container */
.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

/* Algemene section styling */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}

/* Tekst content beperking */
.text-content {
  width: 100%;
  max-width: 65ch;
  text-align: center;
  margin-inline: auto;
}

p, a, li {
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-decoration: none;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
}

/* ul basis */
ul {
  list-style-type: none;
}

.cta-button {
  margin-top: 2rem;
  background-color: transparent;
  border: 2px solid #007a5e;
  color: #007a5e;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
}
.cta-button:hover {
  background-color: #007a5e;
  color: white;
}

.cta-button-groen {
  margin-top: 2rem;
  background-color: #8faf8c;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-groen:hover, .cta-button-groen:focus {
  background-color: rgb(113.7076923077, 154.0769230769, 109.9230769231);
}

.cta-button-roze {
  margin-top: 2rem;
  background-color: #d8a18f;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-roze:hover, .cta-button-roze:focus {
  background-color: rgb(202.8278145695, 129.2516556291, 105.1721854305);
}

.cta-button-blauw {
  margin-top: 2rem;
  background-color: #a2b9c4;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-blauw:hover, .cta-button-blauw:focus {
  background-color: rgb(130.7960526316, 161.5131578947, 176.2039473684);
}

/* Generic block grid styling */
.block-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.block-grid .block-item {
  flex: 1 1 200px;
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 0 2rem;
  padding-bottom: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block-grid .block-item.accent-groen {
  border-top: 5px solid #8faf8c;
}
.block-grid .block-item.accent-blauwgrijs {
  border-top: 5px solid #a2b9c4;
}
.block-grid .block-item.accent-roze {
  border-top: 5px solid #d8a18f;
}
.block-grid .block-item h3 {
  font-size: 1.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.block-grid .block-item p {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.block-grid .block-item .block-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.block-grid .block-item .block-content p {
  flex-direction: column;
}
.block-grid .block-item a[class^=cta-button] {
  margin-top: 1.5rem;
  align-self: center;
}
.block-grid .flex-start {
  justify-content: flex-start;
}

.image-placeholder {
  width: 100%;
  height: auto;
  background-color: #ddd;
  border-radius: 0.5rem;
  display: block;
}

.cta-contact {
  text-align: center;
}
.cta-contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-contact h2 {
  max-width: 40ch;
}
.cta-contact p {
  max-width: 65ch;
}
.cta-contact a {
  margin-top: 1rem;
}

.image-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}
/* wrapper-proof: styles op elk direct child */
.image-grid > * {
  transition: transform 180ms ease;
}

/* img basis */
.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Speelse offsets (per 3 herhalen) */
.image-grid > *:nth-child(3n+1) {
  transform: translateY(10px) rotate(-1deg);
}

.image-grid > *:nth-child(3n+2) {
  transform: translateY(-10px) rotate(1deg);
}

.image-grid > *:nth-child(3n+3) {
  transform: translateY(6px) rotate(-0.5deg);
}

/* Hover alleen waar hover echt bestaat */
@media (hover: hover) and (pointer: fine) {
  .image-grid > *:hover {
    transform: translateY(0) scale(1.03);
  }
}
/* Op small screens geen offsets */
@media (max-width: 776px) {
  .image-grid > * {
    transform: none !important;
  }
}
.inschrijven-page {
  /* optioneel: kleine tweak voor de sectie met formulier */
}
.inschrijven-page .inschrijf-formulier .block-item {
  /* formulierblok mag wat strakker zijn dan een standaard contentblok */
  max-width: 50rem;
  margin-inline: auto;
}

/* ============================
   Basis styling formulier
   ============================ */
.inschrijf-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  /* knoppen onder het formulier */
}
.inschrijf-form label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.inschrijf-form input,
.inschrijf-form select,
.inschrijf-form textarea {
  width: 100%;
  font: inherit;
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid #d0d0d0;
  background-color: #fff;
  line-height: 1.4;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.inschrijf-form input:focus,
.inschrijf-form select:focus,
.inschrijf-form textarea:focus {
  outline: none;
  border-color: #8faf8c;
  box-shadow: 0 0 0 2px rgba(143, 175, 140, 0.35);
  background-color: #fdfefc;
}
.inschrijf-form input[type=checkbox] {
  width: auto;
  padding: 0;
  margin: 0;
  border-radius: 0.25rem;
  box-shadow: none;
}
.inschrijf-form button[type=submit] {
  margin-top: 1rem;
  margin-right: 0.5rem;
}
.inschrijf-form .cta-button-roze {
  margin-top: 1rem;
}

/* ============================
   Dagen en tijden veldset
   ============================ */
.dagen-velden {
  margin-top: 0.5rem;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid #e0e0e0;
  background-color: #f9faf9;
}
.dagen-velden legend {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.dagen-velden p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.dagen-velden .dag-regel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed #e2e2e2;
}
.dagen-velden .dag-regel:last-child {
  border-bottom: none;
}
.dagen-velden .dag-regel > label {
  /* eerste label (met checkbox + dagnaam) mag iets minder vet */
  font-weight: 500;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.dagen-velden .dag-regel input[type=time] {
  width: 100%;
  max-width: 7rem;
}

/* ============================
   Responsiviteit
   ============================ */
@media (max-width: 768px) {
  .inschrijf-form {
    max-width: 100%;
  }
  .dagen-velden .dag-regel {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    grid-template-rows: auto auto auto;
    align-items: flex-start;
    /* layout:
       rij 1: [checkbox+dag]  [Van + time]
       rij 2: [spacer]        [Tot + time]
    */
  }
  .dagen-velden .dag-regel > label:nth-of-type(1) {
    grid-column: 1/3;
  }
  .dagen-velden .dag-regel label[for$=_vanaf],
  .dagen-velden .dag-regel input[id$=_vanaf] {
    grid-column: 1/2;
  }
  .dagen-velden .dag-regel label[for$=_tot],
  .dagen-velden .dag-regel input[id$=_tot] {
    grid-column: 2/3;
  }
}
@media (max-width: 480px) {
  .dagen-velden {
    padding: 1.25rem 1rem;
  }
  .dagen-velden .dag-regel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0.25rem 0;
  }
  .dagen-velden .dag-regel > label:nth-of-type(1),
  .dagen-velden .dag-regel label[for$=_vanaf],
  .dagen-velden .dag-regel input[id$=_vanaf],
  .dagen-velden .dag-regel label[for$=_tot],
  .dagen-velden .dag-regel input[id$=_tot] {
    grid-column: 1/2;
  }
  .dagen-velden .dag-regel input[type=time] {
    max-width: 100%;
  }
}
/* Contactformulier specifiek */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d0d0d0;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #007a5e;
  outline-offset: 2px;
  border-color: #007a5e;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

/* Knoppenrij onder het formulier */
.contact-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

/* Kleine tweak binnen block-item zodat formulier mooi uitlijnt */
.contact-page .contact-form .block-item {
  align-items: stretch;
}

/* layout.scss */
/* Reset / basisinstellingen */
* {
  box-sizing: border-box;
  padding: 0;
}

main {
  padding-bottom: 2rem;
}

/* Basis typografie */
body {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
}

/* Centrale container */
.container, .site-header .container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

/* Algemene section styling */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}

/* Tekst content beperking */
.text-content {
  width: 100%;
  max-width: 65ch;
  text-align: center;
  margin-inline: auto;
}

p, a, li {
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-decoration: none;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
}

/* ul basis */
ul {
  list-style-type: none;
}

.cta-button {
  margin-top: 2rem;
  background-color: transparent;
  border: 2px solid #007a5e;
  color: #007a5e;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
}
.cta-button:hover {
  background-color: #007a5e;
  color: white;
}

.cta-button-groen {
  margin-top: 2rem;
  background-color: #8faf8c;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-groen:hover, .cta-button-groen:focus {
  background-color: rgb(113.7076923077, 154.0769230769, 109.9230769231);
}

.cta-button-roze {
  margin-top: 2rem;
  background-color: #d8a18f;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-roze:hover, .cta-button-roze:focus {
  background-color: rgb(202.8278145695, 129.2516556291, 105.1721854305);
}

.cta-button-blauw {
  margin-top: 2rem;
  background-color: #a2b9c4;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-blauw:hover, .cta-button-blauw:focus {
  background-color: rgb(130.7960526316, 161.5131578947, 176.2039473684);
}

/* Generic block grid styling */
.block-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.block-grid .block-item {
  flex: 1 1 200px;
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 0 2rem;
  padding-bottom: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block-grid .block-item.accent-groen {
  border-top: 5px solid #8faf8c;
}
.block-grid .block-item.accent-blauwgrijs {
  border-top: 5px solid #a2b9c4;
}
.block-grid .block-item.accent-roze {
  border-top: 5px solid #d8a18f;
}
.block-grid .block-item h3 {
  font-size: 1.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.block-grid .block-item p {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.block-grid .block-item .block-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.block-grid .block-item .block-content p {
  flex-direction: column;
}
.block-grid .block-item a[class^=cta-button] {
  margin-top: 1.5rem;
  align-self: center;
}
.block-grid .flex-start {
  justify-content: flex-start;
}

.image-placeholder {
  width: 100%;
  height: auto;
  background-color: #ddd;
  border-radius: 0.5rem;
  display: block;
}

.cta-contact {
  text-align: center;
}
.cta-contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-contact h2 {
  max-width: 40ch;
}
.cta-contact p {
  max-width: 65ch;
}
.cta-contact a {
  margin-top: 1rem;
}

.image-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}
/* wrapper-proof: styles op elk direct child */
.image-grid > * {
  transition: transform 180ms ease;
}

/* img basis */
.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Speelse offsets (per 3 herhalen) */
.image-grid > *:nth-child(3n+1) {
  transform: translateY(10px) rotate(-1deg);
}

.image-grid > *:nth-child(3n+2) {
  transform: translateY(-10px) rotate(1deg);
}

.image-grid > *:nth-child(3n+3) {
  transform: translateY(6px) rotate(-0.5deg);
}

/* Hover alleen waar hover echt bestaat */
@media (hover: hover) and (pointer: fine) {
  .image-grid > *:hover {
    transform: translateY(0) scale(1.03);
  }
}
/* Op small screens geen offsets */
@media (max-width: 776px) {
  .image-grid > * {
    transform: none !important;
  }
}
.site-header {
  background-color: #ffffff;
  padding: 1rem 0;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Submenu toggle button (top-level label) */
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .header {
  width: min(100% - 2rem, 1600px);
  margin-inline: auto;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header .logo h1 {
  margin: 0;
  color: #333;
}
.site-header .logo img {
  max-height: 60px;
  height: auto;
  width: auto;
}
.site-header .main-navigation .submenu-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.site-header .main-navigation .submenu-icon {
  width: 0.7rem;
  height: 0.7rem;
  flex-shrink: 0;
}
.site-header .main-navigation .nav-cta {
  margin-left: 1.5rem;
}
.site-header .main-navigation .nav-cta a {
  font-weight: bold;
  color: white;
}
.site-header .main-navigation .nav-cta a:hover {
  color: white;
  font-weight: bold;
}
.site-header .main-navigation .header-cta {
  margin-top: 0;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
}
.site-header .main-navigation a.active {
  font-weight: 700;
}
.site-header .main-navigation .submenu {
  display: none;
}
.site-header .main-navigation .submenu.open {
  display: block;
}
.site-header .main-navigation ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.site-header .main-navigation ul li {
  position: relative;
}
.site-header .main-navigation ul li.has-submenu > a,
.site-header .main-navigation ul li.has-submenu > .nav-parent {
  display: inline-flex;
  align-items: center;
}
.site-header .main-navigation ul li.has-submenu > a .link-text,
.site-header .main-navigation ul li.has-submenu > .nav-parent .link-text {
  position: relative;
}
.site-header .main-navigation ul li.has-submenu > a .link-text::after,
.site-header .main-navigation ul li.has-submenu > .nav-parent .link-text::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 4px;
  right: 0;
  background: #8faf8c;
  transition: width 0.3s ease;
}
.site-header .main-navigation ul li.has-submenu > a:hover .link-text::after, .site-header .main-navigation ul li.has-submenu > a:focus .link-text::after,
.site-header .main-navigation ul li.has-submenu > .nav-parent:hover .link-text::after,
.site-header .main-navigation ul li.has-submenu > .nav-parent:focus .link-text::after {
  width: 100%;
  left: 0;
  right: auto;
}
.site-header .main-navigation ul li.has-submenu > a .submenu-icon,
.site-header .main-navigation ul li.has-submenu > .nav-parent .submenu-icon {
  width: 12px;
  height: 12px;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
  stroke: #333;
}
.site-header .main-navigation ul li.has-submenu.submenu-open .submenu-icon {
  transform: rotate(180deg);
}
.site-header .main-navigation ul li.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  flex-direction: column;
  min-width: 180px;
  z-index: 99;
  gap: 0;
}
.site-header .main-navigation ul li.has-submenu .submenu li {
  padding: 0.5rem 1rem;
}
.site-header .main-navigation ul li.has-submenu .submenu li a {
  color: #333;
  text-decoration: none;
  text-align: left;
}
.site-header .main-navigation ul li.has-submenu .submenu li a:hover {
  color: #8faf8c;
}
.site-header .main-navigation ul li.has-submenu.submenu-open > .submenu {
  display: flex;
  align-items: flex-start;
}
.site-header .main-navigation a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.site-header .main-navigation a:hover, .site-header .main-navigation a:focus {
  color: #8faf8c;
}
@media (max-width: 768px) {
  .site-header .main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    display: none;
    /* Submenu gedrag op mobiel: inline onder parent */
  }
  .site-header .main-navigation ul {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }
  .site-header .main-navigation.open {
    display: flex;
  }
  .site-header .main-navigation li.has-submenu {
    width: 100%;
  }
  .site-header .main-navigation li.has-submenu .submenu {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
  }
}
.site-header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1100;
}
.site-header .hamburger span {
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: 0.3s;
  width: 100%;
}
@media (max-width: 768px) {
  .site-header .hamburger {
    display: flex;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .site-header {
    /* CTA naar eigen rij onder de links */
  }
  .site-header .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  .site-header .main-navigation {
    width: 100%;
  }
  .site-header .main-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.75rem;
    column-gap: 1.25rem;
  }
  .site-header .main-navigation .nav-cta {
    flex-basis: 100%;
    margin-left: 0;
    display: flex;
    justify-content: center;
  }
  .site-header .main-navigation .nav-cta a {
    width: min(320px, 100%);
    text-align: center;
  }
}
/* Hover-submenu alleen op devices met hover + fijne pointer (laptop/desktop) */
@media (hover: hover) and (pointer: fine) {
  .site-header .main-navigation li.has-submenu:hover > .submenu,
  .site-header .main-navigation li.has-submenu:focus-within > .submenu {
    display: flex;
    align-items: flex-start;
  }
  .site-header .main-navigation li.has-submenu:hover .submenu-icon,
  .site-header .main-navigation li.has-submenu:focus-within .submenu-icon {
    transform: rotate(180deg);
  }
}
/* _footer.scss */
.site-footer {
  background-color: #f8f9fa;
  padding: 0;
  font-size: 0.95rem;
  color: #555;
}
.site-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.site-footer .footer-content .footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
}
.site-footer .footer-content .footer-columns .footer-column {
  flex: 1 1 250px;
}
.site-footer .footer-content .footer-columns .footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #8faf8c;
  margin-bottom: 1rem;
}
.site-footer .footer-content .footer-columns .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-content .footer-columns .footer-column ul li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-content .footer-columns .footer-column ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
}
.site-footer .footer-content .footer-columns .footer-column ul li a:hover, .site-footer .footer-content .footer-columns .footer-column ul li a:focus {
  color: #8faf8c;
}
.site-footer .footer-content .footer-columns .footer-column li {
  color: #444;
}
.site-footer .footer-bottom {
  background-color: #e9ecef;
  padding: 1rem 0;
  text-align: center;
  width: 100%;
}
.site-footer .footer-bottom p {
  margin: 0;
}
.site-footer .footer-bottom p a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}
.site-footer .footer-bottom p a:hover, .site-footer .footer-bottom p a:focus {
  color: #8faf8c;
}

@media (max-width: 768px) {
  .site-footer .footer-content .footer-columns {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
  }
  .site-footer .footer-content .footer-column {
    width: 100%;
  }
}
/* _home.scss */
/* layout.scss */
/* Reset / basisinstellingen */
* {
  box-sizing: border-box;
  padding: 0;
}

main {
  padding-bottom: 2rem;
}

/* Basis typografie */
body {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
}

/* Centrale container */
.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

/* Algemene section styling */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}

/* Tekst content beperking */
.text-content {
  width: 100%;
  max-width: 65ch;
  text-align: center;
  margin-inline: auto;
}

p, a, li {
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-decoration: none;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
}

/* ul basis */
ul {
  list-style-type: none;
}

.cta-button {
  margin-top: 2rem;
  background-color: transparent;
  border: 2px solid #007a5e;
  color: #007a5e;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
}
.cta-button:hover {
  background-color: #007a5e;
  color: white;
}

.cta-button-groen {
  margin-top: 2rem;
  background-color: #8faf8c;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-groen:hover, .cta-button-groen:focus {
  background-color: rgb(113.7076923077, 154.0769230769, 109.9230769231);
}

.cta-button-roze {
  margin-top: 2rem;
  background-color: #d8a18f;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-roze:hover, .cta-button-roze:focus {
  background-color: rgb(202.8278145695, 129.2516556291, 105.1721854305);
}

.cta-button-blauw {
  margin-top: 2rem;
  background-color: #a2b9c4;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-blauw:hover, .cta-button-blauw:focus {
  background-color: rgb(130.7960526316, 161.5131578947, 176.2039473684);
}

/* Generic block grid styling */
.block-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.block-grid .block-item {
  flex: 1 1 200px;
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 0 2rem;
  padding-bottom: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block-grid .block-item.accent-groen {
  border-top: 5px solid #8faf8c;
}
.block-grid .block-item.accent-blauwgrijs {
  border-top: 5px solid #a2b9c4;
}
.block-grid .block-item.accent-roze {
  border-top: 5px solid #d8a18f;
}
.block-grid .block-item h3 {
  font-size: 1.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.block-grid .block-item p {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.block-grid .block-item .block-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.block-grid .block-item .block-content p {
  flex-direction: column;
}
.block-grid .block-item a[class^=cta-button] {
  margin-top: 1.5rem;
  align-self: center;
}
.block-grid .flex-start {
  justify-content: flex-start;
}

.image-placeholder {
  width: 100%;
  height: auto;
  background-color: #ddd;
  border-radius: 0.5rem;
  display: block;
}

.cta-contact {
  text-align: center;
}
.cta-contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-contact h2 {
  max-width: 40ch;
}
.cta-contact p {
  max-width: 65ch;
}
.cta-contact a {
  margin-top: 1rem;
}

.image-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}
/* wrapper-proof: styles op elk direct child */
.image-grid > * {
  transition: transform 180ms ease;
}

/* img basis */
.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Speelse offsets (per 3 herhalen) */
.image-grid > *:nth-child(3n+1) {
  transform: translateY(10px) rotate(-1deg);
}

.image-grid > *:nth-child(3n+2) {
  transform: translateY(-10px) rotate(1deg);
}

.image-grid > *:nth-child(3n+3) {
  transform: translateY(6px) rotate(-0.5deg);
}

/* Hover alleen waar hover echt bestaat */
@media (hover: hover) and (pointer: fine) {
  .image-grid > *:hover {
    transform: translateY(0) scale(1.03);
  }
}
/* Op small screens geen offsets */
@media (max-width: 776px) {
  .image-grid > * {
    transform: none !important;
  }
}
.homepage {
  /* 1. Hero blok */
  /* 2. USP blok */
  /* 3. Impressie (fotoblok) */
  /* 4. Praktische info: locaties, tijden, inschrijven */
  /* 5. Rondleiding CTA blok */
  /* 6. Wachtlijst/FOMO blok */
  /* 7. Testimonials (meervoudig) */
}
.homepage .hero {
  position: relative;
  background: #8faf8c;
  background-image: url("../images/Headerhome");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: #e0e0e0;
  padding: clamp(4rem, 10vw, 8rem) 1rem;
  top: -20px;
}
.homepage .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.homepage .hero .text-content {
  position: relative;
  z-index: 1;
}
.homepage .block-grid {
  flex-direction: row;
}
.homepage .usp .container .block-item h3 {
  min-height: 0;
  margin-bottom: 0;
}
.homepage .impressie .cta-button {
  margin: auto;
}
.homepage .impressie .container p {
  text-align: center;
  padding-bottom: 2rem;
  padding-top: 0;
  margin-top: 0;
}
.homepage .impressie .container h2 {
  text-align: center;
  padding: 0;
  margin: 0;
}
.homepage .rondleiding-cta {
  background-color: #ffffff;
  text-align: center;
  padding: 4rem 1rem;
}
.homepage .rondleiding-cta .cta-button {
  margin-top: 1rem;
}
.homepage .fomo {
  background-color: #eaf2ed;
  text-align: center;
  padding: 4rem 1rem;
}
.homepage .quote {
  background-color: #ffffff;
  padding: 4rem 1rem;
}
.homepage .quote blockquote {
  font-style: italic;
  max-width: 50ch;
  margin: 2rem auto;
  position: relative;
}
.homepage .quote blockquote::before {
  content: "“";
  font-size: 3rem;
  position: absolute;
  top: -1rem;
  left: -1.5rem;
  color: #a2b9c4;
}
.homepage .quote blockquote::after {
  content: "”";
  font-size: 3rem;
  position: absolute;
  bottom: -1rem;
  right: -1.5rem;
  color: #a2b9c4;
}
.homepage .quote blockquote footer {
  margin-top: 1rem;
  font-weight: 800;
  font-style: normal;
}

/* layout.scss */
/* Reset / basisinstellingen */
* {
  box-sizing: border-box;
  padding: 0;
}

main {
  padding-bottom: 2rem;
}

/* Basis typografie */
body {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
}

/* Centrale container */
.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

/* Algemene section styling */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}

/* Tekst content beperking */
.text-content {
  width: 100%;
  max-width: 65ch;
  text-align: center;
  margin-inline: auto;
}

p, a, li {
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-decoration: none;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
}

/* ul basis */
ul {
  list-style-type: none;
}

.cta-button {
  margin-top: 2rem;
  background-color: transparent;
  border: 2px solid #007a5e;
  color: #007a5e;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
}
.cta-button:hover {
  background-color: #007a5e;
  color: white;
}

.cta-button-groen {
  margin-top: 2rem;
  background-color: #8faf8c;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-groen:hover, .cta-button-groen:focus {
  background-color: rgb(113.7076923077, 154.0769230769, 109.9230769231);
}

.cta-button-roze {
  margin-top: 2rem;
  background-color: #d8a18f;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-roze:hover, .cta-button-roze:focus {
  background-color: rgb(202.8278145695, 129.2516556291, 105.1721854305);
}

.cta-button-blauw {
  margin-top: 2rem;
  background-color: #a2b9c4;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-blauw:hover, .cta-button-blauw:focus {
  background-color: rgb(130.7960526316, 161.5131578947, 176.2039473684);
}

/* Generic block grid styling */
.block-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.block-grid .block-item {
  flex: 1 1 200px;
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 0 2rem;
  padding-bottom: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block-grid .block-item.accent-groen {
  border-top: 5px solid #8faf8c;
}
.block-grid .block-item.accent-blauwgrijs {
  border-top: 5px solid #a2b9c4;
}
.block-grid .block-item.accent-roze {
  border-top: 5px solid #d8a18f;
}
.block-grid .block-item h3 {
  font-size: 1.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.block-grid .block-item p {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.block-grid .block-item .block-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.block-grid .block-item .block-content p {
  flex-direction: column;
}
.block-grid .block-item a[class^=cta-button] {
  margin-top: 1.5rem;
  align-self: center;
}
.block-grid .flex-start {
  justify-content: flex-start;
}

.image-placeholder {
  width: 100%;
  height: auto;
  background-color: #ddd;
  border-radius: 0.5rem;
  display: block;
}

.cta-contact {
  text-align: center;
}
.cta-contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-contact h2 {
  max-width: 40ch;
}
.cta-contact p {
  max-width: 65ch;
}
.cta-contact a {
  margin-top: 1rem;
}

.image-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}
/* wrapper-proof: styles op elk direct child */
.image-grid > * {
  transition: transform 180ms ease;
}

/* img basis */
.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Speelse offsets (per 3 herhalen) */
.image-grid > *:nth-child(3n+1) {
  transform: translateY(10px) rotate(-1deg);
}

.image-grid > *:nth-child(3n+2) {
  transform: translateY(-10px) rotate(1deg);
}

.image-grid > *:nth-child(3n+3) {
  transform: translateY(6px) rotate(-0.5deg);
}

/* Hover alleen waar hover echt bestaat */
@media (hover: hover) and (pointer: fine) {
  .image-grid > *:hover {
    transform: translateY(0) scale(1.03);
  }
}
/* Op small screens geen offsets */
@media (max-width: 776px) {
  .image-grid > * {
    transform: none !important;
  }
}
/* layout.scss */
/* Reset / basisinstellingen */
* {
  box-sizing: border-box;
  padding: 0;
}

main {
  padding-bottom: 2rem;
}

/* Basis typografie */
body {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
}

/* Centrale container */
.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

/* Algemene section styling */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}

/* Tekst content beperking */
.text-content {
  width: 100%;
  max-width: 65ch;
  text-align: center;
  margin-inline: auto;
}

p, a, li {
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-decoration: none;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
}

/* ul basis */
ul {
  list-style-type: none;
}

.cta-button {
  margin-top: 2rem;
  background-color: transparent;
  border: 2px solid #007a5e;
  color: #007a5e;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
}
.cta-button:hover {
  background-color: #007a5e;
  color: white;
}

.cta-button-groen {
  margin-top: 2rem;
  background-color: #8faf8c;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-groen:hover, .cta-button-groen:focus {
  background-color: rgb(113.7076923077, 154.0769230769, 109.9230769231);
}

.cta-button-roze {
  margin-top: 2rem;
  background-color: #d8a18f;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-roze:hover, .cta-button-roze:focus {
  background-color: rgb(202.8278145695, 129.2516556291, 105.1721854305);
}

.cta-button-blauw {
  margin-top: 2rem;
  background-color: #a2b9c4;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.cta-button-blauw:hover, .cta-button-blauw:focus {
  background-color: rgb(130.7960526316, 161.5131578947, 176.2039473684);
}

/* Generic block grid styling */
.block-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.block-grid .block-item {
  flex: 1 1 200px;
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 0 2rem;
  padding-bottom: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block-grid .block-item.accent-groen {
  border-top: 5px solid #8faf8c;
}
.block-grid .block-item.accent-blauwgrijs {
  border-top: 5px solid #a2b9c4;
}
.block-grid .block-item.accent-roze {
  border-top: 5px solid #d8a18f;
}
.block-grid .block-item h3 {
  font-size: 1.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.block-grid .block-item p {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.block-grid .block-item .block-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.block-grid .block-item .block-content p {
  flex-direction: column;
}
.block-grid .block-item a[class^=cta-button] {
  margin-top: 1.5rem;
  align-self: center;
}
.block-grid .flex-start {
  justify-content: flex-start;
}

.image-placeholder {
  width: 100%;
  height: auto;
  background-color: #ddd;
  border-radius: 0.5rem;
  display: block;
}

.cta-contact {
  text-align: center;
}
.cta-contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-contact h2 {
  max-width: 40ch;
}
.cta-contact p {
  max-width: 65ch;
}
.cta-contact a {
  margin-top: 1rem;
}

.image-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}
/* wrapper-proof: styles op elk direct child */
.image-grid > * {
  transition: transform 180ms ease;
}

/* img basis */
.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Speelse offsets (per 3 herhalen) */
.image-grid > *:nth-child(3n+1) {
  transform: translateY(10px) rotate(-1deg);
}

.image-grid > *:nth-child(3n+2) {
  transform: translateY(-10px) rotate(1deg);
}

.image-grid > *:nth-child(3n+3) {
  transform: translateY(6px) rotate(-0.5deg);
}

/* Hover alleen waar hover echt bestaat */
@media (hover: hover) and (pointer: fine) {
  .image-grid > *:hover {
    transform: translateY(0) scale(1.03);
  }
}
/* Op small screens geen offsets */
@media (max-width: 776px) {
  .image-grid > * {
    transform: none !important;
  }
}
.onze-locaties-page .section {
  padding: 1rem;
  margin: 0;
  gap: 0;
}

.locaties-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.locaties-grid .locatie-item {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  border-top: 5px solid transparent;
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}
.locaties-grid .locatie-item.accent-roze {
  border-top-color: #d8a18f;
}
.locaties-grid .locatie-item.accent-blauwgrijs {
  border-top-color: #a2b9c4;
}
.locaties-grid .locatie-item .image-placeholder {
  width: 100%;
  height: clamp(200px, 30vw, 300px);
  background-color: #ddd;
  border-radius: 0.5rem;
}
.locaties-grid .locatie-item h2 {
  margin-top: 0.5rem;
  text-align: left;
}
.locaties-grid .locatie-item p {
  margin: 0;
}
.locaties-grid .locatie-item a {
  margin-top: 1rem;
}

.locatie-info .container, .binnen .container, .buiten .container {
  flex-direction: row;
}

.puk-club-page .activiteiten .container h2, .puk-club-page .activiteiten .container h3 {
  text-align: left;
}

.visie-missie .container {
  flex-direction: row;
}

.over-mengelmoes-page section {
  padding: 1rem;
  gap: 0;
}

.over-mengelmoes-page h2, .over-mengelmoes-page section h3 {
  text-align: left;
}

.tarieven-info .block-grid {
  display: block;
}

.tarieven-page .block-item {
  max-width: 1200px;
}

/* Tarieven: forceer horizontale scroll op kleine schermen */
.tarieven-page .table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  display: block;
  text-align: left;
}

.tarieven-page .tarieven-tabel {
  border-collapse: collapse;
  width: 100%; /* laat hem zo breed worden als nodig */
  min-width: 720px; /* dwing scroll op mobiel */
  max-width: 1200px;
  text-align: left;
}

/* Zorg dat cellen niet alles op 1 regel proppen */
.tarieven-page .tarieven-tabel th,
.tarieven-page .tarieven-tabel td {
  white-space: normal;
}

.opvang-groepen .container {
  flex-direction: row;
}

.dagindeling .block-grid {
  flex-direction: row;
}

.activiteiten .block-grid {
  flex-direction: row;
}

.onze-opvang-page .section .block-item h3 {
  min-height: 2em;
}

.onze-opvang-page .section .block-item div:nth-child(2) {
  justify-content: center;
  align-items: center;
  display: flex;
  text-align: center;
}

.kinderdagverblijf-page .image-placeholder, .baby-opvang-page .image-placeholder, .bso-page .image-placeholder, .puk-club-page .image-placeholder {
  max-height: 350px;
  width: 100%;
  object-fit: cover;
}

.privacybeleid-page p, .privacybeleid-page h2 {
  text-align: left;
  margin-bottom: 0;
}

.privacybeleid-page .text-content {
  max-width: 1200px;
}

.cookiebeleid-page p, .cookiebeleid-page h2 {
  text-align: left;
  margin-bottom: 0;
}

.cookiebeleid-page .text-content {
  max-width: 1200px;
}

.klachtenprocedure-page .block-item ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.klachtenprocedure-page .block-grid p {
  min-height: 0;
}

.klachtenprocedure-page .section {
  padding: 1rem;
}

.disclaimer-page .container h2, .disclaimer-page .container h1, .disclaimer-page .container p {
  text-align: left;
  padding: 0;
  margin: 0;
}

.disclaimer-page .text-content {
  max-width: 1200px;
}

.disclaimer-page .section {
  padding: 1rem;
}

.ggd-inspectie-page section {
  padding: 0;
  margin: 0;
  gap: 0;
}

.ggd-inspectie-page section h2 {
  text-align: left;
}

.werken-bij-page section {
  padding: 1rem;
  margin: 0;
  gap: 0;
}

.goed-om-te-weten-page .section ul {
  list-style-type: disc;
  list-style-position: inside;
}

.goed-om-te-weten-page .block-grid {
  flex-direction: row;
}

.goed-om-te-weten-page .block-item {
  justify-content: space-between;
  padding-bottom: 1rem;
}

.goed-om-te-weten-page .block-item a[class^=cta-button] {
  margin-top: 0;
}

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