
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
  background-color: #f8f8f4;
  color: #1f1f1f;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-header {
  background-color: #efb104;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.nav-logo {
  height: 56px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.nav-menu > * {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Taalwissel */
.language-switch {
  position: absolute;
  top: 16px;
  right: 0;
  font-size: 14px;
  font-weight: 500;
}

.language-switch a {
  color: #efb104;
  margin-left: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.language-switch a:hover {
  color: #ffffff;
}

/* Algemene knopstijl */
.nav-menu a,
.dropbtn {
  color: black;
  font-weight: 600;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
  padding: 8px 0;
}

.nav-menu a:hover,
.dropbtn:hover {
  color: white;
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 36px;
  left: 0;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  min-width: 180px;
  border-radius: 6px;
  z-index: 999;
  flex-direction: column;
}

.dropdown-content a {
  padding: 12px 20px;
  font-size: 16px;
  color: #3f768a;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
  color: #efb104;
}

/* Dropdown activeren op hover én via klik */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: flex;
}

/* Hero */
.hero-content {
  background: #3f768a;
  color: white;
  text-align: center;
  padding: 100px 20px 80px;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero-logo {
  height: 120px;
  margin-bottom: 20px;
}

.cta {
  background-color: #efb104;
  color: #111;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta:hover {
  background-color: #d99c00;
}

/* Secties */
.section-light {
  background-color: #f7f7f7;
  padding: 80px 20px;
}

.section-dark {
  background-color: #3f768a;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  gap: 40px;
  flex-wrap: wrap;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-block .text {
  flex: 1 1 400px;
}

.service-block .image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.service-block .image img {
  width: 100%;
  max-width: 500px;
  max-height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

/* Mobiele navigatie fallback */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding-top: 10px;
  }

  .dropdown-content {
    position: relative;
    top: 0;
    box-shadow: none;
  }
}

/* Minimalistische styling voor klantlogo's */
.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 0;
  background-color: #f9f9f4; /* optioneel voor lichte achtergrond */
}

.client-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2c3e50;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 100px;
  padding: 0 20px;
}

.client-logos img {
  height: 90px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeInLogo 1s ease forwards;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-logos img:hover {
  filter: grayscale(0%);
}

/* Animatie in fade */
@keyframes fadeInLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optionele vertraging per logo */
.client-logos img:nth-child(1) { animation-delay: 0.2s; }
.client-logos img:nth-child(2) { animation-delay: 0.4s; }
.client-logos img:nth-child(3) { animation-delay: 0.6s; }
.client-logos img:nth-child(4) { animation-delay: 0.8s; }

