/* ==== Basisinstellingen ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Jost, Tahoma, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #2f3e2e;
}

.top-bar {
  background-color: #ffffff;
  height: 2rem;            
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Jost, sans-serif;
  font-size: 0.85rem;
  color: #1c1c1c;
  border-bottom: 1px solid #ccc;
}

.top-bar-content {
  max-width: 1400px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
}

.top-bar-content span a {
  color: #1c1c1c;
  text-decoration: underline;
}

.top-bar-content span a:hover {
  color: #388e3c;
}

/* ==== Navigatiebalk ==== */
nav {
  background-color: #166035;
  padding: 1rem 2rem;
  position: static;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

nav ul li a {
  color: #ebf3eb;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #b7e1a1;
}

.nav-links .blog-link a {
  font-weight: 500;
  font-style: italic;
}

.logo-svg {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  display: inline-block;
}

.logo {
  font-family: "Zen Loop", Tahoma, sans-serif;
  text-decoration: none;
  outline: none;
  border: none;
  font-size: 24px;
  font-weight: 900;
}

.schuin {
  display: inline-block;
  transform: skewX(12deg);
  font-style: normal;
  letter-spacing: -0.3rem
}

/* ==== Header ==== */
header {
  position: relative;
  z-index: 8;
  text-align: center;
  padding: 4vh 1rem 5vh;
  background-color: #e0f3df;
  clip-path: ellipse(100% 100% at 50% 0%);
}

header h1 {
  font-family: "Zen Loop", Tahoma, sans-serif;
  font-size: 105px;
  font-weight: 500;
  color: #254a25;
  margin-bottom: -2rem;
  margin-top: -2.5rem;
  text-shadow: 0 0 1px rgba(71, 67, 67, 0.6);
}

header h2 {
  font-family: "Chilanka", Tahoma, sans-serif;
  font-size: 16px;
  font-style: normal;
  color: #4a6140;
  margin-top: -1rem;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.float-icon {
  position: absolute;
  width: 18px;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
  opacity: 0.9;
  --rotate: 0deg; /* standaard geen rotatie */
  transform: rotate(var(--rotate));
}

/* 1. Spruit – zacht op en neer */
.float-updown {
  animation: floatUpDown 4s ease-in-out infinite;
}

/* 2. Bij – op en neer met zijwaartse S-beweging */
.float-sway {
  animation: floatSway 5s ease-in-out infinite;
}

/* 3. Worm – cirkelvormige beweging */
.float-circle {
  animation: floatCircle 6s linear infinite;
}

/* 4. Wortel – tegengestelde cirkelvormige beweging */
.float-circle-reverse {
  animation: floatCircleReverse 6s linear infinite;
}

/* 5. Boom – langzaam op en neer */
.float-updown-slow {
  animation: floatUpDown 6s ease-in-out infinite;
}

/* ANIMATIES */

@keyframes floatUpDown {
  0%   { transform: rotate(var(--rotate)) translateY(0); }
  50%  { transform: rotate(var(--rotate)) translateY(-5px); }
  100% { transform: rotate(var(--rotate)) translateY(0); }
}

@keyframes floatSway {
  0%   { transform: rotate(var(--rotate)) translate(0, 0); }
  25%  { transform: rotate(var(--rotate)) translate(2px, -3px); }
  50%  { transform: rotate(var(--rotate)) translate(0, -6px); }
  75%  { transform: rotate(var(--rotate)) translate(-2px, -3px); }
  100% { transform: rotate(var(--rotate)) translate(0, 0); }
}

@keyframes floatCircle {
  0%   { transform: rotate(var(--rotate)) translate(0px, 0px); }
  25%  { transform: rotate(var(--rotate)) translate(2px, -2px); }
  50%  { transform: rotate(var(--rotate)) translate(4px, 0px); }
  75%  { transform: rotate(var(--rotate)) translate(2px, 2px); }
  100% { transform: rotate(var(--rotate)) translate(0px, 0px); }
}

@keyframes floatCircleReverse {
  0%   { transform: rotate(var(--rotate)) translate(0px, 0px); }
  25%  { transform: rotate(var(--rotate)) translate(-2px, -2px); }
  50%  { transform: rotate(var(--rotate)) translate(-4px, 0px); }
  75%  { transform: rotate(var(--rotate)) translate(-2px, 2px); }
  100% { transform: rotate(var(--rotate)) translate(0px, 0px); }
}

@media (max-width: 768px) {
  header {
    text-align: center;
    padding: 16px;
  }

  header h1 {
    font-size: 3rem; /* kleiner dan op desktop */
    line-height: 1.2;
    margin: 6px 0 8px;
  }

  header h2 {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 20px 0;
  }

  .accent-lijn {
    width: 10%;
    height: 2px;
    background-color: #686868; /* of je bestaande kleur */
    margin: 0 auto 8px;
  }

  header img[alt="logo"] {
    width: 60px; /* iets kleiner als je wil, of laat staan op 70px */
  }
}

@media (max-width: 768px) {
  .float-icon {
    width: 9px !important;
    height: auto;
    opacity: 0.85;
  }
}

main h2 {
  font-family: Jost, Tahoma, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  color: #4a6140;
  margin-top: -1rem;
}

.main-blok h2 {
  height: 2rem;            
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0rem -5rem;
  font-style: italic;
}

main h3 {
  font-family: "Chilanka", Tahoma, sans-serif;
  font-size: 21px;
  font-style: normal;
  color: #4a6140;
  margin-bottom: 1rem;
}

main p {
  color: #464646;
}

.h2-met-divider {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #355e3b; /* donkergroen of je eigen kleur */
  font-style: italic;
  padding: 5rem 0 2rem;
}

.h2-met-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: auto;
  aspect-ratio: 3 / 1;
  background-image: url('../img/Naturaldividersimple.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

.diensten-sectie {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  padding: 2rem 2rem;
  max-width: 1800px;
  margin: 0 auto;
  justify-items: center;
}

.dienst-container {
  background-color: #f7fcff;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 460px;
  height: 720px;
}

.dienst-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dienst-container img {
  height: 60%;
  width: 100%;
  object-fit: cover;
}

.dienst-tekst {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  height: 40%; /* onderste helft */
}

.dienst-tekst h3 {
  color: #355e3b;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
  justify-content: center;
  font-size: 45px;
  letter-spacing: 0.5rem;
  font-weight: 700;
  font-family: "Zen Loop", Tahoma, sans-serif;
}

.dienst-tekst p {
  flex-grow: 1;
  margin-bottom: 2.5rem;
  margin-top: 1rem;
  padding: 0 2rem;
  color: #444;
  font-size: 1.05rem;
}

.huisstijl-button {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (max-width: 1200px) {
  .diensten-sectie {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .diensten-sectie {
    grid-template-columns: 1fr;
  }
}

.main-link-styling {
  color: #355e3b;            /* zelfde als h3-kleur */
  text-decoration: none;     /* geen onderstreping */
  font-weight: 500;          /* optioneel voor nadruk */
  transition: color 0.3s;    /* zachte overgang */
}

.main-link-styling:hover {
  color: #4b7849;            /* iets lichtere donkergroen bij hover */
  text-decoration: underline; /* onderstreping bij hover (optioneel) */
}

.main-link-styling:visited {
  color: #2e5c2d;            /* donkerder groen voor bezochte link */
}

.main-link-styling:active {
  color: #1e3d1e;            /* extra donker bij actief klikken */
}

.tussenknop-container {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: -5rem;
}

.center-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background-color: #ffffff;
}

.divider-container {
  display: flex;
  justify-content: center;
  margin: 8rem 0 -32rem;
}

.divider-onder-button {
  width: 600px;
  height: auto;
  opacity: 0.2;
}

.accent-lijn {
  width: 300px;
  height: 2px; /* Dunner maken */
  background: linear-gradient(
    to right,
    #4c845a 0%,   /* Beginpunt - donker groen */
    #3a6b4b 30%,   /* Gemiddelde dikte */
    #295034 70%,   /* Einde - dunner */
    #467551 100%   /* Herhaling van de kleur voor het verloop */
  );
  margin: 1rem auto 1.9rem;
  border-radius: 50%;  
  position: relative;
  display: block;
  transform: rotate(4deg) skewX(-20deg);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
}

.vier-afbeeldingen {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  max-width: 1800px;
  margin: 0 auto;
  flex-wrap: wrap;
  background-color: #f1f4f7;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}

.vier-afbeeldingen img {
  width: calc(25% - 0.75rem); /* 4 afbeeldingen per rij met ruimte ertussen */
  height: auto;
  aspect-ratio: 4 / 3; /* zorgt voor gelijke verhoudingen */
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vier-afbeeldingen img:hover {
  transform: scale(1.03);
}

/* Responsive: 2 per rij op tablet */
@media (max-width: 1024px) {
  .vier-afbeeldingen img {
    width: calc(50% - 0.5rem);
  }
}

/* 1 per rij op mobiel */
@media (max-width: 768px) {
  .vier-afbeeldingen img {
    width: 100%;
  }
}

.hero-image {
  width: 100%;
  height: 400px;
  background-image: url('img/DSC_2649-1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
  margin-top: -53px;
}

.hero-image-overmij {
  width: 100%;
  height: 400px;
  background-image: url('img/Geometrische\ tuin\ met\ levendige\ kleuren.png');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.hero-image-projecten {
  width: 100%;
  height: 400px;
  background-image: url('img/TuinPBliggendcrop.png');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.hero-image-ontwerp {
  width: 100%;
  height: 400px;
  background-image: url('img/signal-2025-06-02-091447_007.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.hero-image-contact {
  width: 100%;
  height: 400px;
  background-image: url('img/ChatGPT\ Image\ 24\ mei\ 2025\,\ 13_26_14.png');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
  margin-top: -40px;
  filter: saturate(90%) brightness(75%) contrast(95%);
}

@media (max-width: 768px) {
  .hero-image {
    height: 200px; /* of 180px – pas aan naar wens */
    background-size: cover;
    background-position: center;
  }

  .hero-buttons {
    display: none;
  }
}

/* ==== Flexsectie met profielfoto en tekst ==== */
main {
  justify-content: center;
  padding: 2rem 1rem;
}

main > .flex-section {
  max-width: 1200px;
  width: 100%;
  margin-top: 4rem;
}

.flex-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6rem;
  flex-direction: row;
}

.profielfoto-tekst {
  flex-direction: row-reverse;
  align-items: center;
  font-size: 19px;
}

.profielfoto-tekst img {
  max-width: 300px;
  width: 100%;
  height: auto;
  max-height: 480px;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%; /* niet-perfecte cirkel */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profielfoto-tekst .tekst {
  flex: 1;
  text-align: justify;
}

b {
  font-family: Jost, Tahoma, sans-serif;
  font-weight: 700;
}

.kernwoorden {
  max-width: 750px;
  margin: 8rem auto;
  padding: 1.4rem 2rem 0.7rem 2rem;
  background-color: #f7fcff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: Jost, Tahoma, sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #3a5a40;
  letter-spacing: 0.02em;
}

.kernwoorden ul {
  list-style-type: none;
  padding-left: 1.4rem;
  margin: 0;
}

.kernwoorden li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2d2d2d;
}

.kernwoorden li::before {
  content: "🌱";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: #4caf50; /* zachte groene kleur */
  font-size: 1.2rem;
}

.kernwoorden strong {
  font-family: "Chilanka", Tahoma, sans-serif;
  color: #6a9955;
}


/* Animatie voor main-sectie op index.html */
.main-blok {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 5rem;
  display: block; /* Belangrijk: geen flex of grid hier */
}

.main-blok.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  /* Algemeen voor main-blok */
  .main-blok {
    padding: 0 16px;
  }

  /* Tekst en afbeelding onder elkaar in flex-secties */
  .flex-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: left;
  }

  .flex-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .flex-section .tekst {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .flex-section .tekst h3 {
    font-size: 1rem;
    line-height: 1.5;
  }

  .flex-section .tekst p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .diensten-sectie {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }

  .dienst-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px;
    border-radius: 12px;
    background-color: #f9f9f9;
    overflow: hidden;
    margin: 0;
    height: auto !important;
  }

  .dienst-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
  }

  .dienst-tekst {
    margin-top: 12px;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .dienst-tekst h3 {
    font-size: 1.9rem;
    margin-bottom: 1px;
  }

  .dienst-tekst p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .huisstijl-button {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    margin: 0;
  }

  /* Reviews slider padding fix */
  .review-slider {
    padding: 0 16px;
  }

  .reviews-container {
    gap: 16px;
  }

  .review {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .flex-section:nth-of-type(3) img {
    display: none;
  }
}

/* ==== Footer & Contactformulier ==== */
footer {
  background-color: #ebf3eb;
  padding: 3rem 1rem;
  font-family: Jost, Tahoma, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
  max-width: 1500px;
  margin: 0 auto;
}

footer h1 {
  font-family: "Zen Loop", Tahoma, sans-serif;
  font-size: 60px;
  font-weight: 100;
  color: #1d271d;
}

footer h2 {
  font-family: Jost, Tahoma, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  font-size: 28px;
  margin-left: 5rem;
}

footer h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: #2e5939;
}

form {
  max-width: 800px;
  margin: 0 auto;
  font-family: Jost, Tahoma, sans-serif;
}

form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1.1rem;
}

form button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #2e5939;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-family: Jost, Tahoma, sans-serif;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #3f7a51;
}

.company-info {
  background-color: #fff;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  font-family: Jost, Tahoma, sans-serif;
}

.company-info h2 {
  color: #2e5939;
  margin-bottom: 1rem;
}

.company-info p {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-family: Jost, Tahoma, sans-serif;
}

.footer-nav {
  margin-top: 2.5rem;
  margin-bottom: -7rem;
}

.footer-nav a {
  font-family: Jost, Tahoma, sans-serif;
  color: inherit;
  text-decoration: none;
  font-weight: 400; 
  line-height: 2.5;
}

.company-info .footer-nav ul {
  list-style-type: none;
  padding: 0;           
}

.company-info .social-media {
  margin-top: 10rem;
}

.company-info .social-media a {
  margin-right: 1rem;
  color: #2e5939;
  text-decoration: none;
  font-weight: bold;
  font-family: Jost, Tahoma, sans-serif;
}

.company-info .social-media a:hover {
  color: #1e472b;
}

@media (max-width: 768px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.2rem;
    gap: 2rem; /* ruimte tussen formulier en info */
  }

  .contact-form,
  .company-info {
    width: 100%;
    max-width: 650px;
    box-sizing: border-box;
    padding: 0;
  }

  .contact-form h2,
  .company-info h1 {
    text-align: center;
    font-size: 1.3rem;
    margin-left: 0;
    padding-left: 0;
  }

  .company-info h1 {
    text-align: center;
    font-size: 2rem;

  }

  .company-info p,
  .company-info a,
  .footer-nav a {
    font-size: 0.9rem;
    text-align: center;
    display: block;
  }

  .footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }

  .footer-nav li {
    list-style: none;
  }

  .social-media {
    text-align: center;
    margin-top: 1rem;
  }

  .social-media a {
    display: inline-block;
    margin: 0 0.5rem;
  }
}

/* ==== Media Queries ==== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .flex-section {
    flex-direction: column;
    align-items: center;
  }
}

.landschap-artwork {
  width: 100%;
  height: 100px;
  background-color: #ebf3eb;
  border-top-left-radius: 100% 100%;
  border-top-right-radius: 100% 100%;
  margin-top: -50px; /* optioneel om het iets te laten overlappen met main */
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.logo {
  font-size: 2rem;
  line-height: 1;
  display: flex;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #d8eecf;
}

.social-media-icons {
  align-items: center;
  justify-content: space-between;
  display: flex;
}

.social-icon {
  margin: 0 0.4rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

.nav-links li a {
  text-decoration: none;
  color: #2d4d32;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #5b8a72;
}

/* Hamburgerknop basis */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background-color: #d8eecf;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Transformeer naar X als menu actief is */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.top-nav {
  background-color: #06574e;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.nav-links li a {
  color: #ebf3eb; /* Lichtgroen */
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
  font-size: 17px;
}

.nav-links li a:hover {
  color: #a2d0b5;
}

.scroll-btn {
  background-color: #4caf50;
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 6px;
  user-select: none;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.scroll-btn:hover {
  background-color: #3a8e3a;
}

.scroll-btn.left {
  margin-right: 0.5rem;
}

.scroll-btn.right {
  margin-left: 0.5rem;
}

.calendar-container {
  text-align: center;
}

.calendar-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.colofon-bar {
  background-color: #ffffff; /* zelfde tint als .top-bar */
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-family: 'Jost', sans-serif;
  color: #1d3024;  /* donkergroen zoals elders op je site */
  border-top: 1px solid #aab3a0;
}

.colofon-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.boven-afbeelding {
  display: block;
  margin: -3rem auto 5.5rem auto; /* boven/onderruimte + centrering */
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 12px; /* optioneel: afgeronde hoeken */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* optioneel: schaduw voor diepte */
  transform: rotate(-2deg);
}

.cards-sectie {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bullet-list {
  text-align: left;
  padding-left: 1.2rem;
  margin: 0.5rem 0;
  list-style-type: disc;
  line-height: 2rem;
}

.bullet-list li::marker {
  content: '▸ ';
  color: #3a6133;
}

.dienst-card {
  background-color: #f7fcff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dienst-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dienst-card-afbeelding {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.dienst-card h3 {
  color: #355e3b;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
  justify-content: center;
  font-size: 30px;
  letter-spacing: 0.3rem;
  font-weight: 700;
  line-height: 2.3rem;
  font-family: "Zen Loop", Tahoma, sans-serif;
}

.dienst-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.card-button {
  background-color: #256d3b;
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s;
}

.card-button:hover {
  background-color: #1a4f2a;
}

.diensten-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.dienst-card {
  background-color: #f7fcff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-met-pijl {
  position: relative;
}

.pijl-onder-card {
  display: block;
  width: 100%;
  height: auto;
  width: 45px;
  transform: rotate(130deg);
  position: absolute;
  left: 78%;
  margin-top: -4rem;
}

.pijl-onder-card-links {
  display: block;
  width: 100%;
  height: auto;
  width: 45px;
  transform: scaleX(-1) rotate(140deg);
  position: absolute;
  left: 18%;
  margin-top: -4rem;
}

.hugelkultur-afbeelding {
  display: block;
  margin: 4rem auto 1.5rem auto;
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 12px; /* optioneel: afgeronde hoeken */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* optioneel: schaduw voor diepte */
  transform: rotate(2deg);
}

.tuinmaatjes-link {
  text-decoration: none;
  color: #3a6133; /* zelfde groen als bulletpoint – pas dit aan als je een andere kleur gebruikt */
  font-weight: 500;
}

.tuinmaatjes-link:hover {
  text-decoration: underline; /* optioneel als je een hover-effect wil */
}

.klikbare-li {
  list-style: none;
  color: #3a6133;
  cursor: pointer;
  position: relative;
}

.klikbare-li .arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.klikbare-li .uitklap-info {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding-left: 1rem;
  font-size: 0.95em;
  color: #3a6133;
}

.klikbare-li.open .arrow {
  transform: rotate(180deg);
}

.klikbare-li.open .uitklap-info {
  max-height: 100px; /* pas aan indien nodig */
  opacity: 1;
}

.blog-grid-sectie {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.blog-grid-sectie h2 {
  font-family: "Chilanka", Tahoma, sans-serif;
  font-size: 25px;
  font-style: normal;
  color: #4a6140;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background-color: #f1f6f1;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-content {
  padding: 1rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.blog-content h3 {
  margin: 0.5rem 0 0.3rem;
  font-size: 1.2rem;
  font-weight: 300;
  color: #3a6133;
}

.blog-content .subtitel {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: auto;
}

.blog-content .datum {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
}

/* Navigatie onderaan */
.blog-navigatie {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.blog-navigatie button {
  background-color: #3a6133;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.blog-navigatie button:hover {
  background-color: #2e4927;
}

.blog-template {
  max-width: 600px;
  margin: 4rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-template h2 {
  font-size: 2.3rem;
  font-weight: 400;
  color: #2f552e;
}

.blog-template h3 {
  margin: 0.5rem 0 -1rem;
  font-size: 1.2rem;
  font-weight: 300;
  color: #3a6133;
}

.blog-template p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.blog-template img {
  display: block;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.form-popup-message {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 12px 20px;
  background-color: #e0ffe0;
  color: #245b24;
  border: 1px solid #4caf50;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 9999;
  font-weight: bold;
}

.popup-error {
  background-color: #ffe0e0;
  color: #7d1f1f;
  border-color: #f44336;
}

.werkgebied-lijst {
    list-style: none;
    padding: 0;
}

.werkgebied-lijst li {
    margin: 0.5em 0;
}

.werkgebied-lijst a {
    color: inherit;
    text-decoration: none;
    cursor: default;
}

.werkgebied-lijst a:hover, a:focus, a:active, a:visited {
  color: inherit;          
  text-decoration: none;
  cursor: default;
}

/* Wrapper voor alle werkgebied-pagina's */
.main-blok.werkgebied {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Jost, Tahoma, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #2f3e2e;
}

/* Koppen */
.main-blok.werkgebied h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.main-blok.werkgebied h2,
.main-blok.werkgebied h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

/* Paragrafen */
.main-blok.werkgebied p {
    margin: 1rem 0 1rem 0;
}

/* Afbeeldingen */
.main-blok.werkgebied img {
    display: block;
    margin: 2rem auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Lijsten */
.main-blok.werkgebied ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 1rem 0 2rem 0;
}

/* Links binnen werkgebied */
.main-blok.werkgebied a {
    color: #2a7ae2;
    text-decoration: underline;
}

.main-blok.werkgebied a:hover {
    color: #1a5bb8;
}

.hero-buttons {
  position: absolute;
  bottom: 60px;
  left: 60px;
  display: flex;
  gap: 1rem;
  z-index: 5;
}

.hero-buttons a {
  padding: 0.4rem 1rem;
  border: 2px solid #ebece8;
  background-color: transparent;
  color: #ebece8;
  text-decoration: none;
  font-family: Jost, sans-serif;
  font-size: 1.2rem;
  text-shadow: 0 0 1px rgba(132, 130, 130, 0.6);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.hero-buttons a:hover {
  background-color: #ebece8;
  color: #1d2f30;
}

.side-menu.active {
  right: 0;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-weight: 100;
}

.side-menu li {
  width: 100%;
}

.side-menu li a {
  font-weight: 150;
  font-size: 1.2rem;
  color: #ffffff;
}

.side-menu a:hover {
  color: #ffffff;
  transform: scale(1.05);
}

.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 30%;
  height: 100vh;
  background-color: #1c1c1c;
  transition: right 0.4s ease-in-out;
  z-index: 1000;
  padding: 4rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.4);
}

/* Verborgen standaard */
#side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 30%;
  height: 100vh;
  background-color: #1c1c1c;
  transition: right 0.4s ease-in-out;
  z-index: 1000;
  padding: 4rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.4);
}

/* Actieve staat – menu schuift in beeld */
#side-menu.active {
  right: 0;
}

/* ========================
   MOBIELE AANPASSINGEN
   ======================== */
@media (max-width: 1024px) {

  /* Top-bar: alleen hovenier + telefoon */
  .top-bar-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6px;
    font-size: 0.8rem;
  }

  .top-bar-content span:nth-child(1),
  .top-bar-content span:nth-child(3),
  .top-bar-content span:nth-child(4) {
    display: none; /* Verberg e-mail en zaaikalender */
  }

  /* Navigatie: verberg socials en menu */
  .social-media-icons,
  .menu-toggle,
  .side-menu {
    display: none !important;
  }

  /* Nav-links onder elkaar gecentreerd */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .nav-links li {
    display: block;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 4px 12px;
    display: block;
    text-align: center;
  }

  /* Optioneel: minder ruimte rondom */
  .nav-container {
    padding: 0 16px;
  }

  .hero-buttons a {
    display: none;
  }
}

.logo,
.menu-toggle {
  color: #ebf3eb;
}

.review-slider {
  max-width: 1400px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
  font-family: Arial, sans-serif;
}

.review-slider h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #2d2d2d;
}

.reviews-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.reviews-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.review {
  flex: 0 0 300px;
  background-color: #f7fcff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  color: #2d2d2d;
  font-style: italic;
  position: relative;
}

.review strong {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: #4caf50;
}

@media (max-width: 768px) {
  .review-slider h2 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .scroll-btn {
    font-size: 1rem;     /* Kleiner pijltje */
    padding: 4px 8px;     /* Compacte knop */
    width: 32px;
    height: 32px;
  }

  .reviews-container {
    gap: 0rem;
  }

  .review {
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 0.75rem;
    min-width: 240px;
  }

  .review p {
    margin-bottom: 0.5rem;
  }

  .review strong {
    font-size: 0.85rem;
  }

    .review-slider {
    position: relative;
    overflow: hidden;
  }

  .scroll-btn {
    display: none;
  }

  .reviews-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    height: 160px;
    margin-bottom: 2rem;
  }

  .review {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .review.active {
    opacity: 1;
    position: relative;
  }
}

.huisstijl-button {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #388e3c;
  color: #fff;
  border: 2px solid #06161a;
  font-size: 1.1rem;
  border-radius: 999px;
  font-family: Jost, Tahoma, sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.huisstijl-button:hover {
  background-color: #e9ecef;
  color: #1c1c1c;
}

.huisstijl-button:visited {
  color: inherit;
}



















