body {
  margin: 0;
  background-color: #b40202;
}

.navbar {
  background-color: #333;
  font-family: sans-serif;
  position: relative;
}

.nav-list,
.dropdown-menu {
  list-style: none; /* Haalt bullets overal weg */
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
}

.nav-list li {
  position: relative;
}

.navbar a {
  display: block;
  padding: 14px 20px;
  color: white;
  text-decoration: none;
}

.navbar a:hover {
  background-color: #444;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background-color: #333;
  min-width: 600px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a:hover {
  background-color: #555;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
  padding: 14px 20px;
}


/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }
}

.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

.footer p {
  margin: 0;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 20px 0; /* optioneel: extra ruimte boven en onder */
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.welcome-text {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
  color: white;
  padding: 0 20px; /* extra padding voor kleinere schermen */
}

.welcome-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.welcome-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
  text-align: justify;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background-color: #333;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #555;
}

.success {
  color: green;
  text-align: center;
}

.error {
  color: red;
  text-align: center;
}

h1 {
  color: #ffffff; 
}

label {
  color: #ffffff; 
}

a {
  color: white;
  
}

a:visited {
  color: white;
}

a:hover {
  color: #ddd; /* optioneel: lichtere kleur bij hover */
}

a:active {
  color: white;
}

.slideshow-container {
      max-width: 500px;
      position: relative;
      margin: auto;
    }
    .mySlides {
      display: none;
    }
    .fade {
      animation-name: fade;
      animation-duration: 1.5s;
    }
    @keyframes fade {
      from {opacity: 0.4}
      to {opacity: 1}
    }
    