* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Zorg dat er geen horizontaal scrollen kan optreden */
html, body {
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
  }
  

/* Fix eventueel zoom en weergave op mobiel */
body {
  position: relative;
  overflow-x: hidden;
}

/* Zorg dat secties niet per ongeluk te breed worden */
* {
  box-sizing: border-box;
  word-wrap: break-word;
}

@media (max-width: 100vw) {
  body {
    overflow-x: hidden;
  }
}


/* ========== BASIS INSTELLINGEN ========== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
}

/* ========== HERO ========== */

.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(to right, #002244, #003366);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
    padding: 0 20px;
        padding-top: 50px;
}


.hero-content h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #f5f5f5;
}

.hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  text-transform: uppercase;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-block;
  margin-top: 65px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #F2A65A;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background-color: #e8903f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


/* ========== NAVBAR ========== */

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1000;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  width: 180px;
  height: auto;
  margin-top: 0;
}

/* Menu */
.navbar__menu {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
    font-family: 'Montserrat', sans-serif;

}

.navbar__item {
  list-style: none;
}

.navbar__links {
  text-decoration: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  white-space: nowrap;
}




.navbar__links:hover {
  transform: scale(1.1) translateY(5px);
  color: #f0f0f0;
}

/* Contact Button */
.navbar__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  background-color: #F2A65A;
  color: #fff;
  transition: all 0.3s ease;
}

.button:hover {
  background: #f0f0f0;
  color: #003366;
  transform: scale(1.1);
}

 /* HAMBURGER */
 .navbar__toggle {
  display: none;
}


#mobile-menu {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: white;
  transition: 0.3s ease;
}

/* ACTIVE TOGGLE ANIMATIE */
#mobile-menu.is-active .bar:nth-child(2) {
  opacity: 0;
}
#mobile-menu.is-active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#mobile-menu.is-active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========== MOBILE MENU ========== */
@media screen and (max-width: 960px) {
.navbar__container {
  padding: 0 20px;
  text-align: center;
}

#mobile-menu {
  display: block;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1001;
}

  .navbar-logo img {
    width: 160px;
    margin-top: -36px;
  }


.navbar__menu {
  display: grid;
  grid-template-columns: 1fr;
  position: absolute;
  top: -1000px;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #002244, #003366);
  transition: top 0.5s ease;
  z-index: 999;
}

.navbar-center-text {
    top: 60%;
    transform: translateY(-50%);
    left: 50%;
    right: 0%;
    text-align: center;
    position: absolute;
    transform: translate(-50%, -50%); /* beide assen centreren */
    text-align: center;
    width: 80%;
}

.navbar-center-text h3 {
  font-size: 25px !important;/* was 70px */
}

.navbar-center-text h4 {
  font-size: 16px; /* was 20px */
}

.navbar__menu.active {
  top:50%;
  height: 80vh;
  font-size: 1.6rem;
}

.navbar__item {
  width: 100%;
}

.navbar__links {
  width: 100%;
  text-align: center;
  padding: 1rem;
  display: table;
}

.navbar__btn {
  justify-content: center;
  padding-bottom: 2rem;
}

.button {
  width: 80%;
  height: 60px;
  margin: 0 auto;
}
}


@media screen and (min-width: 1400px) {
.navbar__container {
  max-width: 1400px;
  padding: 0 80px;
}

.navbar-center-text {
  width: 700px;
}

.navbar-center-text h3 {
  font-size: 80px;
}

.navbar-center-text h4 {
  font-size: 24px;
}

.navbar__menu {
  font-size: 1.3rem;
  gap: 50px;
  background: linear-gradient(to right, #002244, #003366);
}
}








.services {
  padding: 80px 5% 100px;
  background: #f8fafd;
  text-align: center;
}

.services-header h2 {
  font-size: 2.8rem;
  text-transform: uppercase;
  font-family: 'League Spartan', sans-serif;
  margin-bottom: 10px;
  color: #003366;
}

.services-header p {
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #444;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  font-size: 1.4rem;
  color: #002244;
  margin-bottom: 15px;
  font-family: 'League Spartan', sans-serif;
  text-transform: uppercase;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}



























































/* Laatste call-to-action sectie */
.centered-section-last {
background: #f8fafd;
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Titel styling */
  .centered-section__title-last {
    font-size: 40px;
    max-width: 1000px;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #003366;
  }
  
  /* Knop met ademend effect */
  .centered-section__button-last {
    display: inline-block;
    text-decoration: none;
    background: #f2a65a;
    color: #fff;
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 0.9rem;
  font-size: 0.8rem;
    font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease;
    animation: breathe 2.5s ease-in-out infinite;
  }
  
  .centered-section__button-last:hover {
    background: #fff;
    color: #003366;
    transform: scale(1.1);
  }











  .faq-contact-section {
    padding: 100px 20px;
  background: linear-gradient(to right, #002244, #003366);
    text-align: center;
        font-family: 'Poppins', sans-serif;
  }
  
  .section-heading {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
        font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* voor vet */
    text-transform: uppercase;
  }
  
  .toggle-buttons {
    display: inline-flex;
    background: #eaeaea;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 50px;
  }
  
  .toggle-btn {
    background: transparent;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .toggle-btn.active {
    background: #003366;
    color: white;
  }
  
  .toggle-content {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
  }
  
  .content-section {
    display: none;
    animation: fadeIn 0.5s ease;
  }
  
  .content-section.active {
    display: block;
  }
  
  .faq-item {
    margin-bottom: 30px;
  }
  
  .faq-item h3 {
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 10px;
  }
  
  .faq-item p {
    font-size: 1rem;
    color: #666;
      font-family: 'Montserrat', sans-serif;
  }
  
#contact {
  padding: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

form label {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 600;
  color: #003366;
}

form input,
form textarea {
  margin-top: 8px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  background: #fafafa;
  transition: border 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #003366;
  outline: none;
}

form button {
  background: #F2A65A;
  color: white;
  border: none;
  padding: 14px 0;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

form button:hover {
  background: #f0f0f0;
  color: #003366;
}

  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
  }

  .form-message {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #1ebe5a;
    display: none;
    animation: fadeIn 0.5s ease;
  }
  


  



  .project-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.project-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.project-image {
  flex: 1;
  text-align: center;
}

.project-image img {
max-width: 100%;
  height: auto;
    transform-style: preserve-3d;
  backface-visibility: hidden;
}

.project-info {
  flex: 1;
}

.project-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
          font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* voor vet */
    text-transform: uppercase;
}

.project-info ul {
  list-style-type: none;
  padding: 0;
}

.project-info li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  padding-left: 1.5rem;
  position: relative;
  color: #444;
}

.project-info li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007bff;
}

@media screen and (max-width: 768px) {
  .project-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .project-info h2 {
    font-size: 1.5rem;
  }
}












  

  .footer {
    background: linear-gradient(to right, #002244, #003366);
    color: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;
    padding: 60px 20px 20px;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #F2A65A;
  }
  
  .footer-section p {
    margin: 0;
    line-height: 1.6;
  }
  
  /* Onderste laag */
  .footer-bottom {
    border-top: 1px solid #f0f0f0;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 10px;
    color: #f0f0f0;
  }
  
  .footer-bottom a {
    color: #f0f0f0;
    text-decoration: underline;
  }
  
  .footer-bottom a:hover {
    color: #F2A65A;
  }
  
  @media (max-width: 600px) {
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }


















.animate {
    opacity: 1; /* Volledig zichtbaar */
    transform: translateY(0); /* Terug naar de oorspronkelijke positie */
    transition: all 0.8s ease-out; /* Soepel verschijnen */
}

.not-animated {
    opacity: 0; /* Onzichtbaar */
    transform: translateY(50px); /* Start iets lager */
}










.animate-on-scroll {
    opacity: 0;
    transform: translateX(100px); /* Of een andere gewenste startpositie */
    transition: all 0.8s ease-out; /* Soepel verschijnen */
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateX(0); /* Terug naar oorspronkelijke positie */
}





 .whatsapp-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .whatsapp-message {
      background-color: #25D366;
      color: white;
      padding: 10px 15px;
      border-radius: 20px;
      margin-bottom: 10px;
      font-family: sans-serif;
      font-size: 14px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.5s ease, transform 0.5s ease;
      pointer-events: none;
    }

    .whatsapp-message.show {
      opacity: 1;
      transform: translateY(0);
    }

    .whatsapp-button {
      background-color: #25D366;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .whatsapp-button img {
      width: 30px;
      height: 30px;
    }