/* Algemene Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  header {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  
  .navbar {
    height: 80px; /* vaste hoogte */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo img {
    margin-left: -30px;
    height: 120%;      /* neemt de volle hoogte van de navbar in */
    max-height: 100px;  /* beperk hoe groot het maximaal mag zijn */
    object-fit: contain;
  }
  
  
  /* Navigatielinks */
  .nav-links {
    display: flex;
    gap: 40px;
  }
  
  .nav-link {
    margin-right: -20px;
    text-decoration: none;
    color: #346ca3;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .nav-link:hover {
    color: #00a99d;
  }
  
  .nav-link.active {
    color: #00a99d;
    font-weight: 500;
  }
  
  /* Mobiele menu-icon */
  .menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }
  
 /* === DESKTOP MENU === */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.nav-links li a {
  text-decoration: none;
  color: #2e6ba2;
  font-weight: 500; /* ipv bold */
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

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

/* === HAMBURGER KNOP (verborgen op desktop) === */
#menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #2e6ba2;
}

/* === MOBIEL MENU (onder 768px) === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: max-content;
  }

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

  #menu-toggle {
    display: block;
  }

  .nav-links li a {
    font-size: 16px;
    font-weight: 500;
    text-align: right;
  }
}

  



  body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    color: #2c3e50;
    background-color: #ffffff;
  }
  
  main {
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  h1 {
    margin-top: 40px;
    font-size: 60px;
    color: #4aa198;
    margin-bottom: 40px;
  }
  
  p {
    margin-top: 60px;
    font-size: 18px;
    color: #346ca3;
    line-height: 1.6;
    margin-bottom: 60px;
  }
  


  .button {
    display: inline-block;
    background-color: #4aa198;
    color: white;
    padding: 16px 60px;
    font-size: 20px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 40px;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #3d887e;
  }
  




  .carousel-section {
    padding: 40px;
    background: #fff;
    display: flex;
    justify-content: center;
  }
  
  .carousel {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .carousel-track {
    display: flex;
    width: calc(200%); /* dubbele set van 5 afbeeldingen */
    animation: scroll-loop 40s linear infinite;
  }
  
  .carousel-track img {
    width: 20%;
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
  }
  
  /* Oneindige scroll animatie */
  @keyframes scroll-loop {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Pauze bij hover (optioneel) */
  .carousel:hover .carousel-track {
    animation-play-state: paused;
  }
  




  .services {
    padding: 60px 20px;
    text-align: center;
  }
  
  .services h2 {
    font-size: 48px;
    color: #4aa198;
    margin-bottom: 20px;
  }
  
  .services .intro {
    max-width: 900px;
    margin: 0 auto 60px;
    color: #346ca3;
    font-size: 18px;
    line-height: 1.6;
  }
  
  .service-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .service {
    flex: 1;
    max-width: 300px;
    text-align: center;
  }
  
  .service img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
  }
  
  .service h3 {
    color: #4aa198;
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .service p {
    font-size: 16px;
    color: #346ca3;
    line-height: 1.6;
  }

  



  

 
  .footer {
    background-color: #fff;
    padding: 60px 20px 30px;
    text-align: center;
    font-family: sans-serif;
  }
  
  .footer-columns {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .footer-column h3 {
    color: #418f89;
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .footer-column a {
    color: #2c61a2;
    text-decoration: none;
    font-size: 18px;
  }
  
  .footer-column a:hover {
    text-decoration: underline;
  }
  
  .social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
  }
  
  .footer .copyright {
    font-size: 14px;
    color: #2c61a2;
  }
  
  /* Mobile-friendly styles */
  @media (max-width: 768px) {
    .footer-columns {
      flex-direction: column;
      gap: 40px;
    }
  
    .footer-column h3 {
      font-size: 18px;
    }
  
    .footer-column a {
      font-size: 16px;
    }
  
    .footer .copyright {
      font-size: 12px;
    }
  }

  





  
  
  
  body {
    margin: 0;
    font-family: sans-serif;
    background-color: #ffffff;
    color: #418f89;
  }
  
  .portfolio-section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .portfolio-title {
    font-size: 48px;
    color: #2c61a2;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .portfolio-description {
    font-size: 20px;
    margin-bottom: 50px;
    color: #418f89;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .portfolio-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .portfolio-grid img:hover {
    transform: scale(1.03);
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .portfolio-title {
      font-size: 36px;
    }
  
    .portfolio-description {
      font-size: 18px;
    }
  }
  

  .portfolio-section {
    text-align: center;
    padding: 80px 20px 60px;
    background-color: #fff;
    font-family: sans-serif;
  }
  
  .portfolio-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c61a2; /* Diep blauw */
    margin-bottom: 30px;
  }
  
  .portfolio-description {
    font-size: 18px;
    color: #418f89; /* Groen/blauw tint */
    margin: 10px auto;
    max-width: 850px;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .portfolio-title {
      font-size: 32px;
    }
  
    .portfolio-description {
      font-size: 18px;
      padding: 0 10px;
    }
  }




  
  .project-detail {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    color: #418f89;
    text-align: center;
  }
  
  .project-detail h1 {
    font-size: 36px;
    color: #418f89;
    margin-bottom: 20px;
  }
  
  .project-description {
    font-size: 18px;
    color: #2c61a2;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  .project-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .project-images img {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .back-link {
    display: inline-block;
    margin-top: 40px;
    text-decoration: none;
    color: #2c61a2;
    font-weight: bold;
  }

  .project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 5px;
    justify-items: center;
    margin-top: 40px;
  }






  



  body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #003366;
  }
  
  .over-mij {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .foto {
    flex: 1 1 300px;
    max-width: 400px;
    padding: 10px;
  }
  
  .foto img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .tekst {
    flex: 2 1 500px;
    padding: 10px 30px;
  }
  
  .tekst h2 {
    color: #009688;
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .tekst p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  






  body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #006e7f;
  }
  
  .contactformulier {
    max-width: 500px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .contactformulier h2 {
    color: #009688;
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  label {
    text-align: left;
    font-weight: bold;
    color: #006e7f;
  }
  
  input,
  textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #0074a2;
    border-radius: 4px;
    outline: none;
  }
  
  input:focus,
  textarea:focus {
    border-color: #009688;
  }
  
  button {
    margin-top: 15px;
    padding: 14px;
    background-color: #009688;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background-color: #007e70;
  }
  
  .lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }
  
  .lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
  }
  
  .close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .close:hover {
    color: #ccc;
  }

 

/* RESPONSIVE */
@media (max-width: 768px) {
  .textmenu nav {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nav-link {
    font-size: 20px;
  }
}




/* Algemene stijlen */
header {
  background-color: white;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

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

.logo {
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #2c61a2;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #2c61a2;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #418f89;
}

/* Hamburger knop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #2c61a2;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
  }

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

/* Alleen tonen op kleine schermen */
#mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  #desktop-menu {
    display: none; /* Verberg hoofdmenu op mobiel */
  }

  #mobile-menu {
    display: block; /* Toon alleen op mobiel */
  }
}





.contactformulier {
  max-width: 500px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: left;
  font-family: 'Segoe UI', sans-serif;
}

.contactformulier h2 {
  text-align: center;
  color: #009688;
  font-size: 24px;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px; /* ruimte tussen velden */
}

label {
  font-weight: bold;
  color: #006e7f;
}

input,
textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #0074a2;
  border-radius: 4px;
  outline: none;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: #009688;
}

.button {
  margin-top: 10px;
  padding: 14px;
  background-color: #009688;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.button:hover {
  background-color: #007e70;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contactformulier {
  max-width: 500px;
  margin: 60px auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #006e7f;
}

.contactformulier h2 {
  text-align: center;
  color: #009688;
  font-size: 28px;
  margin-bottom: 30px;
}

.contactformulier form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contactformulier label {
  font-weight: bold;
}

.contactformulier input,
.contactformulier textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #0074a2;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

.contactformulier button.button {
  padding: 14px 40px;
  background-color: #009688;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: center;
}

.contactformulier button.button:hover {
  background-color: #007e70;
}

.contact-intro {
  max-width: 700px;
  margin: 20px auto 40px;
  color: #346ca3;
  font-size: 16px;
  line-height: 1.3;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.contact-intro h2 {
  font-size: 38px;
  color: #4aa198;
  margin-bottom: 12px;
  font-weight: 600;
}
