/* General Styles */
/* Zorg voor soepele scroll-animatie in alle browsers */
html {
  scroll-behavior: smooth;
}

/* Fallback voor Safari */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    html {
      scroll-behavior: auto; /* Schakel standaard scroll-behavior uit voor Safari */
    }

    /* Voeg een vloeiende scroll-animatie toe met JavaScript */
    body {
      scroll-behavior: smooth;
    }
  }
}



/* Hamburger knop - standaard verborgen */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #ffd700;
  cursor: pointer;
}

/* Mobiele navigatie */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    /* background-color: #1a1a1a; */
    background-color: #101820;
    padding: 1rem 0;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 999;
  }

  nav.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  .submenu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
    background-color: #2a2a2a;
    padding: 0;
    box-shadow: none;
  }

  .has-submenu:hover .submenu {
    display: block;
  }

  .has-submenu > a::after {
    content: none; /* Verwijder pijltje */
  }
}










nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

/* Top-level menu items */
nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  padding: 12px 18px;
  display: block;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  color: white;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Submenu */
.submenu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: white;;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
}

.has-submenu {
  position: relative;
}

.submenu li {
  display: block;
}

.submenu li a {
  padding: 10px 16px;
  font-size: 15px;
  color: #1a1a1a;
  transition: background 0.2s ease, color 0.2s ease;
}

.submenu li a:hover {
  background-color: #e0e0e0;
  color: #1a1a1a;
}

/* Toon submenu bij hover */
.has-submenu:hover .submenu {
  /* display: block; */
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Pijltje naar beneden voor submenu's */
.has-submenu > a::after {
  content: " ▼";
  font-size: 10px;
  margin-left: 4px;
  color: white;
}







.speciaal .service-item p {
  color: white;
}

.speciaal .service-item {
  margin-top: 2em;
}

.video-step-image img.staand {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: inline-block;
}

/* .checklist {
  margin-left: 20px;
}

.checklist li {
  margin-bottom: 5px;
} */



.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.8em; /* ruimte voor het vinkje */
  margin-bottom: 0.6em;
}

.checklist li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffd700; /* goudgeel accent */
  font-weight: bold;
}







.video-steps-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.step-tab {
  padding: 1rem 2rem;
  border-radius: 999px;
  border: none;
  background-color: #eef1f5;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 0.85rem;
}

.step-tab:hover {
  background-color: #d3d6d8;
}

.step-tab.active {
  /* background-color: #1a1a1a; */
  background-color: #101820;
  color: #fff;
}

.video-step-content .video-step {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 2rem;
  /* background-color: #1a1a1a; */
  background-color: #101820;
  color: white;
  border-radius: 1.5rem;
}

.video-step.active {
  display: flex;
  animation: fadeInUp 0.6s ease;
}

.video-step-text {
  flex: 1;
}

.video-step-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
  color: #ffd700;
}

.video-step-text p {
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: left;

}

.video-step-image {
  flex: 1;
  text-align: right;
}

.video-step-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.video-buttons {
  display: flex;
  gap: 1rem;
}

h1 {
  margin-bottom: 50px;
  font-size: 2.8rem;
  color: white; /* Trendy gele accentkleur */
}

/* .hero h1 {
  margin-bottom: 50px;
  font-size: 2.8rem;
  color: white;  
} */

.btn.green {
  background-color: #ffd700;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.green:hover {
  background-color: #e6b800;
}

.btn.outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn.outline:hover {
  background: white;
  color: #0f2e3c;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .video-step {
    flex-direction: column;
    text-align: center;
  }

  .video-step-image {
    display: none;
  }

  .video-step-text {
    text-align: center;
  }

  .video-step-text h3,
  .video-step-text p {
    text-align: center;
  }
}


.packages-list {
  text-align: left;
  margin-bottom: 3em;
}











/* Algemene stijlen */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #ffffff; /* Witte tekst voor contrast */
  /* background-color: #1a1a1a; */
  background-color: #101820;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center; /* Centreer de inhoud */
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 65px; /* of een percentage zoals 50% */
  height: auto;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffd700; /* Trendy gele accentkleur */
  color: #000000; /* Zwarte tekst voor contrast */
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(255, 215, 0, 0.2);
}

.btn:hover {
  background-color: #e6b800; /* Donkerder geel bij hover */
  transform: translateY(-3px);
} 

/* Alleen de header aanpassen */
header {
  /* background-color: #111111;   */
  background-color: #101820;
  padding-top: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1); */
}

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

/* Titel links */
header .home-button {
  color: #ffd700; /* Trendy gele accentkleur */
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

header .home-button:hover {
  color: #e6b800; /* Donkerder geel bij hover */
}

/* Navigatiemenu rechts */
header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: #ffffff;
  font-weight: 600;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #ffd700; /* Trendy gele accentkleur bij hover */
}

.hero {
  position: relative;
  background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('https://via.placeholder.com/1500x800') no-repeat center center/cover;
  height: clamp(300px, 60vh, 600px); /* responsieve hoogte */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* .hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
} */

.hero h2 {
  font-size: clamp(1.5rem, 5vw, 3rem);
}

/* .hero h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
} */

.hero p {
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Zorgt dat de hele video zichtbaar blijft */
  z-index: -1;
}

/* Services Sectie */
.services {
  padding: 50px 0 25px 0;
  background-color: white; /* Donkergrijze achtergrond */
  text-align: center;
}

.services h2 {
  margin-bottom: 50px;
  font-size: 2.8rem;
  color: black; 
}

.service-list {
  display: flex;
  flex-direction: column; /* Items onder elkaar */
  gap: 30px;
}

.service-list p {
  color: white;
}

.service-item {
  /* background-color: #1a1a1a;  */
  background-color: #101820;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
  background-color: #1c2837;
}

.service-item:hover h3 {
  transition: color 0.3s ease, transform 0.3s ease;
  color: #e6b800;
}

.speciaal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* laat elementen naar volgende regel springen */
  gap: 30px;
  /* background-color: yellow; */
  margin: 0 auto;
}

.speciaal div {
  flex: 0 1 500px;
  text-align: left;
  /* background-color: blue; */
}

.service-item h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #ffd700; /* Trendy gele accentkleur */
}

.service-item p {
  color: white; /* Lichtgrijze tekst */
  margin: 0 auto;
  max-width: 900px;
}

/* Portfolio Sectie */
.portfolio {
  padding: 40px 0 80px 0;
  /* background-color: #111111;  */
  background-color: #101820;
  text-align: center;
  position: relative; /* Voor de positionering van de knoppen */
}

.portfolio h2 {
  margin-bottom: 50px;
  font-size: 2.8rem;
  color: #ffd700; /* Trendy gele accentkleur */
}

.gallery-container {
  overflow: hidden; /* Verberg de scrollbar */
  position: relative;
  padding: 0 60px; /* Ruimte voor de knoppen */
}

.gallery {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease; /* Soepele scroll-animatie */
  overflow-x: auto; /* Maak de galerij scrollbaar */
  scroll-behavior: smooth; /* Soepele scroll */
  scroll-snap-type: x mandatory; /* Scroll naar het volgende item */
}

.gallery-item {
  flex: 0 0 auto; /* Voorkom dat items krimpen of groeien */
  width: 550px; /* Vaste breedte voor elk item */
  overflow: hidden;
  border-radius: 15px;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  scroll-snap-align: start; /* Scroll naar het begin van elk item */
}

/* .gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
} */

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Scrollknoppen */
.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color:  rgba(255, 215, 0, 1);/* Gele accentkleur */ 
  color: #000000; /* Zwarte tekst */
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10; /* Zorg ervoor dat de knoppen boven de galerij komen */
}

.scroll-button:hover {
  background-color: rgba(255, 215, 0, 0.8); /* Volledig geel bij hover */
}

.scroll-button.left {
  left: 10px; /* Positie links */
}

.scroll-button.right {
  right: 10px; /* Positie rechts */
}

/* About Us Sectie */
.about {
  padding: 0;
}

.about h2 {
  font-size: 2.8rem;
  color: #ffd700;
}

.about p {
  max-width: 650px;
}

/* About Section (dark) */
.about-section {
  /* background-color: #1a1a1a; */
  background-color: #101820;
  color: #f5f5f5;
  padding: 80px 0;
}

.pictures {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.text-block {
  flex: 1 1 500px;
  text-align: left;
  z-index: 2;
}

.image-block {
  flex: 0 1 330px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background-color: #0d0d0d;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  margin-top: 20px;

  /* Schuine uitsnede met clip-path */
  /* clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%); */
  border-radius: 1rem;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;

  /* zwart-wit zonder animatie */
  filter: grayscale(100%) contrast(110%);
  transform: none; /* verwijder skew */
}
/* Mission Section (light) */
.mission-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.mission-section2 {
  background-color: #ffffff;
  padding: 0 20px 80px 0;
  text-align: center;
}

.mission-section h2 {
  font-size: 2.8rem;
  color: black;
}

.mission-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2e2d2d;
  padding-top: 30px;
  text-align: left;
}

/* Contact Sectie */
.contact {
  padding-top: 80px;
  /* background-color: #111111;  */
  background-color: #101820;
  text-align: center;
}

.contact h2 {
  margin-bottom: 50px;
  font-size: 2.8rem;
  color: #ffd700; /* Trendy gele accentkleur */
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ffffff;
}

#widget {
  padding: 0;
  padding-bottom: 50px;
}

.contact input, .contact textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #333333;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #262626; /* Donkergrijze achtergrond */
  color: #ffffff;
  transition: border-color 0.3s ease;
}

.contact input:focus, .contact textarea:focus {
  border-color: #ffd700; /* Trendy gele accentkleur bij focus */
  outline: none;
}

.contact button {
  width: 100%;
  padding: 15px;
  background-color: #ffd700; /* Trendy gele accentkleur */
  color: #000000; /* Zwarte tekst voor contrast */
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-bottom: 50px;
}

.contact button:hover {
  background-color: #e6b800; /* Donkerder geel bij hover */
  transform: translateY(-3px);
}

.contact p {
  padding-bottom: 40px;
}

/* Footer */
footer {
  /* background-color: #111111;  */
  background-color: #101820;
  color: #ffffff;
  text-align: center;
  padding: 30px 0;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Achtergrondkleur van de Calendly-widget aanpassen */
.calendly-inline-widget {
  /* background-color: #1a1a1a; */
  background-color: #101820;
  color: black;
  border-radius: 15px; /* Afgeronde hoeken */
  padding: 0px;
  margin: 0px;
  overflow: hidden; /* Zorg ervoor dat de inhoud binnen de randen blijft */
}

/* Achtergrondkleur van de iframe zelf aanpassen */
.calendly-inline-widget iframe {
  /* background-color: #1a1a1a !important; */
  background-color: #101820 !important;
  padding: 0px;
  margin: 0px;
  border: none;
}

#meeting {
  padding-top: 60px;
}


.testimonials {
  padding: 60px 0;
  background-color: white;
  text-align: center;
  color: black;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

.testimonial-item p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-item h4 {
  font-weight: bold;
  color: #333;
}

.testimonials h2 {
  font-size: 2em;
  margin-bottom: 40px;
}



.has-submenu .submenu li a {
  font-size: 14px; /* iets kleiner voor taal */
  padding: 8px 16px;
}

/* Hover effect blijft hetzelfde */
.has-submenu:hover .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}





#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #101820;
  color: #fff;
  padding: 20px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
}

.cookie-content {
  max-width: 900px;
  text-align: center;
}

.cookie-content p { margin: 0 0 10px 0; }

.cookie-buttons button {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}

#accept-cookies { background: #ffd700; color: #000; }
#decline-cookies { background: #444; color: #fff; }
#customize-cookies { background: #888; color: #fff; }

.cookie-customize {
  display: none;
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: #101820;
  color: #fff;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  z-index: 99999;
  max-width: 400px;
  text-align: left;
}

.cookie-customize h3 { margin-top: 0; color: #ffd700; }
.cookie-customize label { display: block; margin: 10px 0; }

.customize-buttons { text-align: right; }
.customize-buttons button {
  margin-left: 10px;
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

#save-preferences { background: #ffd700; color: #000; }
#cancel-preferences { background: #444; color: #fff; }


a.lightblue-link {
  color: #5bc0ff;      /* Lichtblauw */
  text-decoration: underline; /* Onderlijn */
  transition: color 0.3s ease;
}

a.lightblue-link:hover {
  color: #33aaff;      /* Iets donkerder bij hover */
}

.cookie-buttons {
  display: flex;
  justify-content: center;   /* centreren horizontaal */
  align-items: center;       /* centreren verticaal */
  gap: 12px;                 /* ruimte tussen knoppen */
  flex-wrap: wrap;           /* breekt netjes als er te weinig breedte is */
}
.cookie-buttons button {
  padding: 10px 16px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.5rem !important;
  }
  h2 {
    font-size: 1.5rem !important;
  }
}


