* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;  /* Dit voorkomt horizontale scroll */
    font-family: 'Helvetica', sans-serif;
    background-color: #ffffff;
    color: white;
    scroll-behavior: smooth;
  }

  
  #contact-form {
    scroll-margin-top: 80px; /* hoogte van vaste header */
}


  header {
    background: rgba(0, 0, 0, 0.8); /* 👈 half transparant zwart */
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    backdrop-filter: blur(5px); /* optioneel: mooie blur onder de header */
  }
  .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    padding: 0 1rem;
    position: relative;
  }
  
  .logo-large {
    height: 4.8rem;
    object-fit: contain;
    margin-top: 20px;
  }
  
  /* Standaard alleen grote logo zichtbaar */
  .logo-small {
    display: none;
  }
  .logo-large {
    display: block;
  }
  
  /* Op kleinere schermen (bijv. mobiel): alleen kleine logo zichtbaar */
  @media (max-width: 768px) {
    .logo-small {
      display: block;
      scale: 0.8;
    }
    .logo-large {
      display: none;
    }
  }
  

  
  .hamburger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  nav {
    display: flex;
    gap: 3rem;
  }
  
  nav a {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-right: 10px;
  }
  
  nav a:hover {
    color: #a7a7a7;
  }
  
  /* MOBILE STYLES */
  @media screen and (max-width: 600px) {
    .hamburger {
      display: block;
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
    }
  
    nav {
      display: flex;
      flex-direction: column;
      background: rgba(0, 0, 0, 0.8);
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 1.5rem 2rem;
      text-align: right;
    
      /* Animatie basis */
      opacity: 0;
      transform: translateY(-20px);
      pointer-events: none;
      transition: all 0.3s ease;
      z-index: 10;
    }
    
    nav.show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    
  }
















  .contact-sectie {
    padding: 4rem 2rem;
    background-color: #fff;
    font-family: Arial, sans-serif;
  }
  
  .contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-tekst {
    flex: 1 1 55%;
    max-width: 700px;
  }
  
  .contact-tekst h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #000;
  }
  
  .contact-tekst h2 span {
    display: block;
    font-size: 1.7rem;
    font-weight: 600;
    color: #666;
  }
  
  .contact-tekst p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #222;
    margin-bottom: 1rem;
  }
  
  .contact-tekst strong {
    color: #000;
  }
  
  .bedrijf-info p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  
  .btn-contact {
    background-color: #00c9b7;
    color: white;
    padding: 0.6rem 1.5rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .btn-contact:hover {
    background-color: #00a99d;
  }
  
  .contact-afbeelding {
    flex: 1 1 35%;
    max-width: 350px;
  }
  
  .contact-afbeelding img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
  }
  
  /* Responsive: stacked on mobile */
  @media (max-width: 850px) {
    .contact-wrapper {
      flex-direction: column;
      text-align: left;
    }
  
    .contact-tekst, .contact-afbeelding {
      max-width: 100%;
    }
  
    .contact-tekst h2, .contact-tekst h2 span {
      text-align: center;
    }
  
    .contact-afbeelding {
      margin: 2rem auto 0;
    }
  
    .btn-contact {
      display: block;
      margin: 1.5rem auto 0;
      text-align: center;
    }
  }
  








  .eigenaartje {
    padding: 4rem 2rem;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .owner-content,
  .team-content {
    margin-bottom: 3rem;
  }
  
  .eigenaartje h2 {
    font-size: 1.7rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .eigenaartje h2 span {
    color: #00c8ff;
    font-weight: 700;
  }
  
  .eigenaartje p {
    font-size: 1rem;
    line-height: 1.7;
    color: #222;
    max-width: 900px;
  }
  
  .eigenaartje strong {
    color: #000;
    font-weight: bold;
  }
  
  @media (max-width: 768px) {
    .eigenaartje {
      padding: 3rem 1.2rem;
    }
  
    .eigenaartje h2 {
      font-size: 1.5rem;
      text-align: center;
    }
  
    .eigenaartje p {
      text-align: left;
    }
  }
  
  .info-blok {
    background-color: #ffffff;
    padding: 4rem 2rem;
  }
  
  @media (max-width: 768px) {
    .info-blok {
      padding: 3rem 1rem;
    }
  }
  





























  

.contact-form {
  background: #1E3B58;
  color: white;
  padding: 6rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
.legend{
  text-align: center;
}
.contact-form p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* FORM CONTAINER GROTER EN CENTREREN */
form {
  background: #15324c;
  max-width: 900px;        /* 👈 iets breder */
  margin: 0 auto;
  padding: 3rem 2rem;
  border: 2px solid #fff;
  border-radius: 12px;
  box-sizing: border-box;
}

fieldset {
  border: none;
  padding: 0;
}

legend {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: center;
}

input, select, textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
  min-width: 200px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* 1. Center de verzendknop */
button[type="submit"] {
  background: cyan;
  border: none;
  padding: 1rem 2.5rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border-radius: 6px;
  margin: 2rem auto 0 auto; /* 👈 dit centreert 'm */
  transition: background 0.3s;
  display: block; /* 👈 nodig voor centreren met margin auto */
  font-size: 1rem;

}


button[type="submit"]:hover {
  background: #00b6cc; /* iets donkerder dan cyan */
  color: #352a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 201, 255, 0.3);
}
.form-checkboxes {
  display: flex;
  flex-direction: column;
  margin-top: 1.7rem;
}

.form-checkboxes label {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: white;
}

.form-checkboxes input[type="checkbox"] {
  accent-color: cyan;
  width: 15px;
  position: relative;
  height: 15px;
  cursor: pointer;
  margin-right: 0.5rem;
  top:9px;
}

.form-checkboxes a {
  color: #00c9ff;
  text-decoration: underline;
}

label {
  flex-wrap: wrap;
}

.form-checkboxes {
  margin-top: 0px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 2px;
}



.form-checkboxes a {
  color: #00c9ff;
  text-decoration: underline;
}


@media (max-width: 768px) {
  .form-checkboxes input[type="checkbox"] {
    transform: scale(0.85);
    top: 6px; /* adjust vertical alignment if needed */
  }

  .form-checkboxes label {
    font-size: 0.75rem; /* optionally make label text smaller too */
  }
}





















/* Footer Styles */
.footer {
  background-color: #1e3b58;
  color: white;
  padding: 3rem 2rem;
  font-family: Arial, sans-serif;
  position: relative; /* maakt het mogelijk om de footer op een vaste locatie te houden */
  bottom: 0;
  width: 100%;
  margin-top: auto; /* Voorkomt dat de footer zich uitrekt of verschuift */
}
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
}


.footer-middle,
.footer-right {
  width: 18%;

}
.footer-left {
  width: 25%;
  margin-left: 50px;
}

.footer-left {
  text-align: left;
}

.footer-left .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-logo p{
  font-size: 1.5rem;
}
.footer-left .footer-logo img {
  width: 120px; /* Adjust the logo size */
  margin: 1rem auto;
}

.footer-left hr.footer-line {
  border: 0;
  border-top: 1px solid #ffffff;
  margin: 1rem 0;
}

.footer-left .footer-menu h3,
.footer-middle h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: bold;
}

.footer-menu ul,
.footer-business-info ul,
.footer-contact ul {
  list-style-type: none;
  padding: 0;
}

.footer-menu li,
.footer-business-info li,
.footer-contact li {
  margin-bottom: 0.8rem;
}

.footer-line-1 {
  margin-bottom: 15px;
  margin-top: 20px;
}


.footer-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-contact i {
  margin-right: 0.5rem;
}

.footer-cta h3{
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-cta {
  background-color: #00F6FF;
  color: rgb(0, 0, 0);
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  margin-top: 1rem;
  box-shadow: 10px 10px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.btn-cta:hover{
  background-color: #00c9ff;
}

.footer-social ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-social a {
  color: #ffffff;
  font-size: 1.5rem;
  text-decoration: none;
}

.footer-social a:hover {
  color: #00c9ff;
}

.footer-bottom {
  position: relative;
  bottom: 1; /* Zet de footer helemaal aan de onderkant */
  max-width: 100%; /* Zorg ervoor dat het de volledige breedte van de pagina gebruikt */
  text-align: center;
  font-size: 0.8rem;
  padding: 1rem 0;
}

.footer-bottom a {
  color: #00c9ff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-cta-1 {
  margin-top: 1.2rem;
}
.footer-cta-1 h3{
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

/* Adjustments for Small Screen Sizes */
@media (max-width: 1250px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem auto;
  }

  .footer-left {
    margin-left: 0; /* 🔧 Fix de verschuiving */
    text-align: center;
  }

  .footer-left .footer-logo {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-left .footer-logo img {
    margin: 0 auto;
  }

  .footer-left hr.footer-line {
    margin: 1rem auto;
    width: 80%;
    border: 0;
    border-top: 1px solid #ffffff;
  }

  .footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .footer-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }

  .footer-menu li {
    margin-bottom: 0.5rem;
  }

  .footer-social ul {
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-cta,
  .footer-cta-1 {
    text-align: center;
  }

  .footer-cta p,
  .footer-left p {
    margin: 0 auto;
  }
}
