/* Algemene opmaak */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f1e9;
  overflow-y: scroll; /* voorkomt verspringen bij wisselen van pagina */
}

/* Navigatie */
.navbar {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  height: 250px; /* groter op desktop */
}

/* Menu */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  display: inline-block;
  padding: 12px 24px;
  background-image: url('menuknop.png'); /* jouw boomstamfoto */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #000000; /* zwarte tekst */
  font-weight: bold;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

/* Wiebelen bij hover */
.nav-links li a:hover {
  animation: wiggle 0.4s ease;
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
  75% { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #ffffff;
text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero-tekst {
  text-align: center;
  padding: 30px 20px;
  background-color: #fdf6e3;
  color: #333;
}

.hero-tekst h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-tekst p {
  font-size: 1.2rem;
  margin-top: 5px;
}

/* Mobiel */
@media (max-width: 768px) {
  .logo {
    height: 120px; /* kleiner op mobiel */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: transparent;
    position: absolute;
    top: 100px;
    left: 20px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Extra mobiel fix voor kleinere schermen */
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text h2 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .textblok {
    padding: 20px;
  }
}

/* Tekstsectie voor 'Wie zijn wij' */
.content {
  padding: 60px 20px;
  background-color: #f4f1e9;
  color: #2f4f2f;
  font-size: 18px;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 5;
  position: relative;
}

.textblok {
  background-color: #ffffffcc;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/* Contactpagina layout */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  background-color: #ffffffcc;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-form,
.contact-info {
  flex: 1 1 300px;
  min-width: 280px;
}

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

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #2f4f2f;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 15px;
  background-color: #fff;
}

.contact-form input[type="submit"] {
  background-color: #2f4f2f;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
  background-color: #3d5c3d;
}

.contact-info h3 {
  margin-top: 0;
  color: #2f4f2f;
  font-size: 20px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #2f4f2f;
}

.contact-info a {
  color: #2f4f2f;
  text-decoration: underline;
}
/* Slider styling met gecentreerde foto's en zwart frame */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000; /* zwart frame rondom de foto */
  padding: 10px;
  box-sizing: border-box;
}

.swiper-slide img {
  max-height: 600px;
  max-width: 100%;
  width: auto;
  height: auto;
  border: 4px solid #000; /* zwart kader om de foto */
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.terugknop {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #2f4f2f;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.terugknop:hover {
  background-color: #3d5c3d;
}
/* Algemene content layout voor alle pagina's, inclusief bedankpagina */
.content {
  max-width: 1000px;
  margin: 80px auto 40px auto;
  padding: 0 20px;
  background-color: #f4f1e9;
  color: #2f4f2f;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  z-index: 5;
  position: relative;
}

/* Terugknop styling voor bedankpagina's */
.terugknop {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #2f4f2f;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.terugknop:hover {
  background-color: #3d5c3d;
}
.btw-toelichting {
  font-size: 14px;
  color: #555;
  margin-top: -5px;
  margin-bottom: 20px;
}
/* === Visuele waarschuwing bij bestelformulier === */
.bestel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bestel-waarschuwing {
  display: flex;
  align-items: center;
  background-color: #ffe5e5;
  border: 2px solid #cc0000;
  border-radius: 50px;
  padding: 10px 15px;
  color: #cc0000;
  font-weight: bold;
  font-size: 0.95rem;
  max-width: 100%;
}

.bestel-waarschuwing .icoon {
  font-size: 1.5rem;
  margin-right: 10px;
}

/* === Desktop layout: waarschuwing links van formulier === */
@media screen and (min-width: 768px) {
  .bestel-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }

  .bestel-waarschuwing {
    max-width: 250px;
  }
}
.bestel-info {
  display: flex;
  justify-content: center;      /* zet icoon + tekst samen in het midden */
  align-items: center;          /* verticaal uitlijnen */
  background-color: #ffe5e5;    /* lichtrode achtergrond */
  border: 2px solid #cc0000;    /* rode rand */
  border-radius: 50px;          /* afgeronde hoeken */
  padding: 10px 15px;           /* binnenruimte */
  color: #cc0000;               /* rode tekstkleur */
  font-weight: bold;            /* vetgedrukt */
  font-size: 0.95rem;           /* iets kleinere tekst */
  margin-top: 30px;             /* ruimte boven het blok */
}

.bestel-info .icoon {
  font-size: 1.5rem;            /* icoon groter */
  margin-right: 10px;           /* ruimte tussen icoon en tekst */
}

