/* ðŸŒ¿ BASIS */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background: #fff;
}
html {
  overflow-y: scroll;
}

.site-header img {
  height: 60px;
  width: auto;
  display: block;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* 🔧 Zorg dat alle kaarten gelijke hoogte hebben en knoppen onderaan staan */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  flex: 1 1 calc(33.333% - 2rem);
  max-width: 330px;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column; /* Belangrijk */
  justify-content: space-between; /* duwt knop naar onder */
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card h3 {
  color: #1e6f43;
  margin: 1rem 0 0.5rem;
  font-size: 1.3rem;
}
.video-cta {
  text-align: center;
  margin-top: 20px;
}

.video-cta .btn {
  display: inline-block;
}
.card p {
  padding: 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1; /* duwt knop naar onder als tekst korter is */
}

.card .btn-outline {
  margin: 1rem auto 1.5rem;
  align-self: center;
}
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 400px;
  }
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.alert-success {
  background-color: #e0f7ec;
  color: #0b5137;
  border: 1px solid #0b5137;
}
.alert-error {
  background-color: #fdecea;
  color: #611a15;
  border: 1px solid #611a15;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */

.site-header .logo img {
  height: 90px !important; /* was ±60px → nu dubbel zo groot */
  width: auto;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

.main-nav a:hover {
  opacity: 0.7;
}

/* HERO */
.hero {
  background: url("/assets/img/hero.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons .btn {
  margin: 0 0.5rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #1e6f43;
  color: white;
}

.btn-primary:hover {
  background: #174e2f;
}

.btn-secondary {
  background: linear-gradient(135deg, #0d6538, #1e6f43);
  color: #fff;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #0b5b32, #1a5d3d);
}

.btn-outline {
  border: 2px solid #1e6f43;
  color: #1e6f43;
  background: transparent;
}

.btn-outline:hover {
  background: #1e6f43;
  color: white;
}

/* INTRO */
.intro {
  text-align: center;
  padding: 4rem 1rem;
  background: #f5f5f5;
}

.intro h2 {
  color: #1e6f43;
}

/* ðŸ§© CARDS */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 1rem;
  background: #fff;
}

.card {
  flex: 1 1 calc(33.333% - 2rem);
  max-width: 330px;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card h3 {
  color: #1e6f43;
  margin: 1rem 0 0.5rem;
  font-size: 1.3rem;
}

.card p {
  padding: 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.card .btn-outline {
  margin-top: 1rem;
}

/* ðŸ“± RESPONSIVE */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* CTA-BANNER */
.cta-banner {
  background: #1e6f43;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.cta-banner h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}


/* Pagina "Wie zijn wij" */
.page-hero {
  background: #1e6f43;
  color: white;
  text-align: center;
  padding: 5rem 1rem 3rem;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-intro {
  padding: 4rem 1rem;
  background: #f5f5f5;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
/* 🌿 Algemene buttonstijl voor de site */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #1e6f43, #2a9e5c);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.btn:hover {
  background: linear-gradient(135deg, #1b5a38, #23884f);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* ✳️ Optioneel: maak btn-primary gelijk aan .btn */
.btn-primary {
  background: linear-gradient(135deg, #1e6f43, #2a9e5c);
  color: #fff;
  border: none;
}

.about-text {
  flex: 1 1 500px;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Teamsectie */
.team {
  padding: 4rem 1rem;
  text-align: center;
}

.team h2 {
  color: #1e6f43;
  margin-bottom: 2rem;
}

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

.team-member {
  background: #fafafa;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1.5rem;
  width: 250px;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.team-member h3 {
  margin: 0.5rem 0 0.2rem;
  color: #1e6f43;
}

.team-member p {
  color: #555;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
  }
  .team-grid {
    flex-direction: column;
  }
}
/* âœ¨ Ons verhaal */
.our-story {
  background: #fff;
  padding: 5rem 1rem;
}

.our-story h2 {
  text-align: center;
  color: #1e6f43;
  margin-bottom: 3rem;
}


/* ðŸ“± Responsive */
@media (max-width: 768px) {
  .timeline {
    border-left: 3px solid #1e6f43;
    padding-left: 15px;
  }

  .timeline-item::before {
    width: 16px;
    height: 16px;
    left: -9px;
  }
}
/* âœ¨ Partners pagina */
.partners-intro {
  padding: 4rem 1rem;
  background: #f5f5f5;
  text-align: center;
}

.partners-intro h2 {
  color: #1e6f43;
  margin-bottom: 1rem;
}
/* 🔹 Algemene layout */
.timeline {
  position: relative;
  margin: 3rem 0;
  padding-left: 2rem;
  border-left: 4px solid #1e6f43; /* groene lijn */
}

/* 🔹 Elke item */
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

/* 🔹 De bolletjes */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -10px; /* uitlijning met lijn */
  top: 0.6rem; /* verticale positie in lijn met titel */
  width: 16px;
  height: 16px;
  background-color: #1e6f43;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #1e6f43;
}

/* 🔹 De inhoud */
.timeline-content {
  background: #fff;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

/* 🔹 Titels */
.timeline-content h3 {
  margin-top: 0;
  color: #1e6f43;
  font-weight: 700;
}

/* 🔹 Responsief */
@media (max-width: 768px) {
  .timeline {
    padding-left: 1.5rem;
  }
  .timeline-item::before {
    left: -8px;
  }
}

.partners-intro p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Partner grid */
.partners-logos {
  padding: 5rem 1rem;
  background: #fff;
  text-align: center;
}

.partners-logos h2 {
  color: #1e6f43;
  margin-bottom: 2.5rem;
}

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

.partner-card {
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 2rem 1rem;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.15);
}

.partner-card img {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.partner-card h3 {
  color: #1e6f43;
  margin: 0.5rem 0;
}

.partner-card p {
  font-size: 0.95rem;
  color: #444;
}

/* Partner CTA */
.partner-call {
  background: #1e6f43;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

.partner-call h2 {
  margin-bottom: 1rem;
}

.partner-call p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ðŸ“± Responsive */
@media (max-width: 768px) {
  .partners-grid {
    flex-direction: column;
    align-items: center;
  }

  .partner-card {
    width: 90%;
  }
}
/* ✉️ Contactpagina */
.contact-header {
  text-align: center;
  padding: 3rem 1rem 1rem;
  background: #f5f5f5;
}

.contact-header h1 {
  color: #1e6f43;
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: #444;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  padding: 4rem 1rem;
  background: white;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 40%;
}

.contact-info a {
  color: #1e6f43;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1 1 50%;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.contact-form label {
  font-weight: bold;
  color: #1e6f43;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-form, .contact-info {
    flex: 1 1 100%;
  }
}
/* 🌿 Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, #1e6f43 40%, #2a8a5d 100%);
  color: white;
  padding: 4rem 1rem;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  flex: 1 1 400px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-image {
  flex: 1 1 350px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 💬 Contact main */
.contact-main {
  background: #f5f5f5;
  padding: 4rem 1rem;
}

.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.contact-form {
  flex: 1 1 50%;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.contact-form h2 {
  color: #1e6f43;
  margin-bottom: 0.5rem;
}

.contact-form p {
  color: #555;
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-weight: bold;
  color: #1e6f43;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button {
  margin-top: 1rem;
}

/* 📍 Contact info cards */
.contact-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  color: #1e6f43;
  margin-bottom: 0.5rem;
}

.info-card p a {
  color: #1e6f43;
  text-decoration: none;
}

.map-card iframe {
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero-grid, .contact-layout {
    flex-direction: column;
  }

  .hero-image img {
    max-width: 100%;
  }

  .contact-form, .contact-info {
    flex: 1 1 100%;
  }
}
/* 🌟 Contact top section - 3 blokken naast elkaar */
.contact-top {
  background: #f9f9f9;
  padding: 3rem 1rem 2rem;
}

.contact-top-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.contact-top .info-card {
  flex: 1 1 250px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-top .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.contact-top .info-card h3 {
  color: #1e6f43;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-top .info-card p {
  font-size: 1rem;
  color: #333;
}

.contact-top .info-card a {
  color: #1e6f43;
  font-weight: bold;
  text-decoration: none;
}

.contact-top .info-card a:hover {
  text-decoration: underline;
}

/* Responsief */
@media (max-width: 768px) {
  .contact-top-grid {
    flex-direction: column;
    align-items: center;
  }
  .contact-top .info-card {
    width: 90%;
  }
}
/* 🌿 Contact Hero - nieuwe stijl */
.contact-hero {
  position: relative;
  background: url("/assets/img/contact-bg.jpg") center/cover no-repeat;
  color: white;
  padding: 6rem 1rem;
  overflow: hidden;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(20, 50, 30, 0.45),
    rgba(10, 25, 15, 0.6)
  );
  z-index: 1;
}



.contact-hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  flex: 1 1 420px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
}

.hero-buttons {
  margin-top: 1.5rem;
}

.hero-buttons a {
  margin-right: 1rem;
}

.hero-image {
  flex: 1 1 350px;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.3);
}

/* 📱 Responsief */
@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons a {
    display: inline-block;
    margin: 0.5rem;
  }
}
/* 🌿 About Hero */
.about-hero {
  position: relative;
  background: url("/assets/img/about-bg.png") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 8rem 1rem 6rem;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 35, 20, 0.45),
    rgba(5, 15, 5, 0.65)
  );
  z-index: 1;
}

.about-hero {
  position: relative;
  background: url("/assets/img/about-bg.png") center center / cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem 4rem; /* minder hoogte */
  overflow: hidden;

  min-height: 40vh; /* niet meer schermvullend */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 35, 20, 0.35),
    rgba(5, 15, 5, 0.55)
  );
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.about-hero p {
  font-size: 1.15rem;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  margin: 0 auto;
  max-width: 650px;
}

/* 📱 Mobiel */
@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 1rem 3rem;
    min-height: 35vh;
    background-position: 50% 30%;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }
}

/* 🌿 Partners Hero */
.partners-hero {
  position: relative;
  background: url("/assets/img/partners-bg.svg") center center / cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem 4rem;
  overflow: hidden;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 35, 20, 0.45),
    rgba(5, 15, 5, 0.6)
  );
  z-index: 1;
}

.partners-hero .container {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.partners-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.partners-hero p {
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: 650px;
  margin: 0 auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* 📱 Responsief */
@media (max-width: 768px) {
  .partners-hero {
    padding: 4rem 1rem 3rem;
    min-height: 35vh;
    background-position: 50% 30%;
  }

  .partners-hero h1 {
    font-size: 2.2rem;
  }

  .partners-hero p {
    font-size: 1rem;
  }
}
/* 📱 Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 5rem 1rem 4rem;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }
}
/* ===== NAV STYLING ===== */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem; /* wat ruimte tussen de links */
}
.main-nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* actieve link: witte streep */
.main-nav a.active::after {
    width: 100%;
}

/* optioneel: maak header donker voor contrast */
/* 🌿 Verbeterde CTA-banner */
.cta-banner.improved {
  position: relative;
  background: url("/assets/img/cta-bg.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem 5rem;
  overflow: hidden;
}

.cta-banner.improved .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 50, 30, 0.7);
  z-index: 1;
}

.cta-banner.improved .container {
  position: relative;
  z-index: 2;
}

.cta-banner.improved h2 {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.cta-banner.improved p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #f0f0f0;
  text-shadow: 0 2px 5px rgba(0,0,0,0.25);
}

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

/* 🌿 Website-info sectie */
.site-info {
  background: #FFFF;
  padding: 4rem 1rem;
  text-align: center;
}

.site-info h3 {
  color: #1e6f43;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.site-info p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #333;
  line-height: 1.7;
}

.site-info ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.site-info li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: #1e6f43;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 🌿 Verbeterde site-info sectie */
.site-info.improved {
  background: #f5f5f5;
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
}

.site-info.improved h2 {
  color: #1e6f43;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.site-info.improved .intro {
  color: #444;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* 🌿 Grid */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* 🌿 Kaartjes */
.info-card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
  flex: 1 1 280px;
  max-width: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* 🌿 Iconen */
.info-card .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  filter: hue-rotate(50deg) brightness(1.1);
}

.info-card h3 {
  color: #1e6f43;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .info-grid {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    max-width: 90%;
  }
}
.info-card .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}
/* 📱 Algemene mobiele optimalisaties */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  .container {
    width: 95%;
    padding: 0 1rem;
  }

  /* Navigatie */
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  /* Hero sectie */
  .hero {
    padding: 4rem 1rem;
    background-position: center;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 90%;
    margin: 0.5rem 0;
  }

  /* Kaarten */
  .cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .card {
    flex: 1 1 100%;
    width: 100%;
    max-width: 95%;
    text-align: center;
  }

  .card img {
    height: 180px;
  }

  /* CTA-banners */
  .cta-banner.improved {
    padding: 4rem 1rem;
  }

  .cta-banner.improved h2 {
    font-size: 1.8rem;
  }

  .cta-banner.improved p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons a {
    width: 100%;
    max-width: 300px;
  }

  /* Info-secties */
  .site-info.improved {
    padding: 3rem 1rem;
  }

  .site-info.improved h2 {
    font-size: 1.8rem;
  }

  .site-info.improved .intro {
    font-size: 1rem;
  }

  .info-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .info-card {
    width: 100%;
    max-width: 90%;
  }

  /* Contact & footer */
  .contact-top-grid,
  .contact-layout {
    flex-direction: column;
    align-items: center;
  }

  footer .container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* 📱 Kleinere schermen (<480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .card img {
    height: 150px;
  }

  .info-card .icon {
    width: 50px;
    height: 50px;
  }

  .site-info.improved h2 {
    font-size: 1.6rem;
  }
}
/* 📱 Fix: Info-cards (Over de stichting) centreren zoals .cards */
@media (max-width: 768px) {
  .site-info.improved .info-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }

  .site-info.improved .info-card {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }

  .site-info.improved .info-card img.icon {
    margin: 0 auto 1rem;
    display: block;
  }
}
/* ✅ Definitieve fix: centrering info-cards Over de stichting op mobiel */
@media (max-width: 768px) {
  .site-info.improved .container {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .site-info.improved .info-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    width: 100%;
    padding: 0;
  }

  .site-info.improved .info-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }

  .site-info.improved .info-card img.icon {
    display: block;
    margin: 0 auto 1rem;
  }
}
/* ✅ Over de stichting – mobiele centrering, geen dubbele padding */
@media (max-width: 768px) {
  /* 1) Haal padding van container weg binnen deze sectie */
  .site-info.improved .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;   /* geen 100vw i.v.m. scrollbar-shift */
    box-sizing: border-box;
  }

  /* 2) Gebruik grid zodat items altijd exact centreren */
  .site-info.improved .info-grid {
    display: grid !important;
    grid-template-columns: 1fr;   /* alles onder elkaar */
    justify-items: center;        /* horizontaal centreren van de kaart */
    gap: 1.6rem;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  /* 3) Kaartje zelf netjes max-breed en gecentreerd */
  .site-info.improved .info-card {
    width: min(92%, 400px) !important;
    margin: 0 auto !important;
    text-align: center;
    box-sizing: border-box;
  }

  .site-info.improved .info-card .icon {
    display: block;
    margin: 0 auto 1rem;
  }
}

/* 4) (optioneel) als je toch nog een lichte “drift” ziet: 
      zet specifiek voor deze sectie de horizontale padding van de sectie zelf uit */
@media (max-width: 768px) {
  .site-info.improved {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* 5) Voor de zekerheid: voorkom horizontale scroll in deze sectie */
@media (max-width: 768px) {
  .site-info.improved {
    overflow-x: hidden;
  }
}
/* Video sectie */
.video-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.video-title {
  text-align: center;
  margin-bottom: 25px;
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 500;
}

.video-wrapper {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  background: #000;
  transition: box-shadow 0.3s ease;
}

.video-wrapper:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobiel - prominenter */
@media (max-width: 768px) {
  .video-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
  }
  
  .video-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .video-wrapper {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  
  .video-wrapper:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
}