@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/* ========== RESET / BASIS ========== */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; }
body { background: #f0faff; color: #333; }
a { color: #000; text-decoration: none; }

/* ========== NAVIGATIE ========== */
.nav {
  z-index: 9999; /* FIX: boven alles (was 3) */
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 10px 50px; background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex; justify-content: space-between; align-items: center;
}
.nav .nav-links { display: flex; align-items: center; column-gap: 20px; list-style: none; z-index: 10000; } /* extra zekerheid */
.nav .nav-links a { transition: all 0.2s linear; }

.nav .logo {
  display: flex; align-items: center; font-size: 33px; font-weight: 500; color: #000;
  transition: font-size .3s ease, color .3s ease;
}
.nav .logo:hover { color: #2B6777; font-size: 24px; }

.logo-image {
  height: 120px; width: auto; max-height: 120px; margin-right: 10px; object-fit: contain;
  display: inline-block; vertical-align: middle; transition: opacity .3s ease; filter: brightness(0.85);
}
.logo-image:hover { opacity: .8; }

.navOpenBtn, .navCloseBtn, .search-icon {
  cursor: pointer; font-size: 1.5rem; color: #2B6777; display: none;
}

/* ========== SUBMENU ========== */
.nav .nav-links li { position: relative; }
.nav .nav-links .submenu {
  display: none; position: absolute; top: 100%; left: 0; list-style: none;
  margin: 0; padding: 8px 0; background: #fff; min-width: 220px;
  border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.08); z-index: 1000;
}
.nav .nav-links .submenu li a {
  display: block; padding: 10px 14px; color: #333; font-weight: 400; white-space: nowrap;
}
.nav .nav-links .submenu li a:hover { background: #f0faff; color: #2B6777; }

/* Hover alleen op echte hover-devices (desktop) */
@media (hover: hover) and (pointer: fine) {
  .nav .nav-links li.has-submenu:hover > .submenu { display: block; }
}

/* Chevron bij Services */
.nav .nav-links li.has-submenu > a::after {
  content: "\f078"; font-family: "Font Awesome 5 Free"; font-weight: 900;
  font-size: .75rem; margin-left: 8px; transition: transform .2s ease; display: inline-block; transform: translateY(-1px);
}
.nav .nav-links li.has-submenu.open > a::after { transform: rotate(180deg) translateY(1px); }

/* ========== HERO (VIDEO/IMG IN ZWARTE BALK) ========== */
.hero-section {
  width: 100%; height: 500px; position: relative; overflow: hidden;
  display: flex; justify-content: center; align-items: center; background: #000; margin-top: 60px;
  z-index: 0; /* FIX: zorg dat hero onder nav blijft */
}
/* Media in de hero mag geen clicks blokkeren */
.hero-background,
.hero-gif,
.hero-section video,
.hero-section img { pointer-events: none; }

/* Video exact centreren, proporties behouden (geen crop) */
.hero-background {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  height: 150%;
  width: auto; object-fit: contain; z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; width: 100%; padding: 20px; text-align: center; color: #fff; }
.hero-button {
  display: inline-block; padding: 10px 20px; background: #2B6777; color: #fff;
  border-radius: 5px; margin-top: 20px; transition: background-color .3s ease;
}
.hero-button:hover { background: #52ab98; }

/* Responsief schalen video */
@media (max-width: 1024px) { .hero-background { height: 150%; } }
@media (max-width: 768px)  { .hero-background { height: 110%; max-width: 95vw; } }
@media (max-width: 480px)  { .hero-background { height: 110%; max-width: 100vw; } }

/* --- OVERRIDES voor hero GIF als je die gebruikt --- */
.hero-gif {
  position: absolute; z-index: 1; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  height: 125%; width: auto; opacity: 0.95;
}
@media (max-width: 768px) {
  .hero-section { height: 460px; }
  .hero-gif { height: 78%; }
}
@media (max-width: 480px) {
  .hero-section { height: 420px; }
  .hero-gif { height: 72%; }
}

/* ========== WELKOM-SECTIE ========== */
.welcome-section { padding: 60px 20px; background: #fff; text-align: center; }
.welcome-content { max-width: 900px; margin: 0 auto; }
.welcome-section h2 { font-size: 2rem; color: #2B6777; margin-bottom: 20px; }
.welcome-section p  { font-size: 1.1rem; line-height: 1.8; color: #4a4a4a; }

/* ========== 3 BLOKKEN ONDER HERO ========== */
.below-video-section { padding: 50px 20px; background: #fff; }
.below-content { max-width: 1200px; margin: 0 auto; }
.square-section { display: flex; justify-content: space-between; gap: 20px; }
.square {
  flex: 1; background: #f0faff; padding: 20px; border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.square-content { text-align: center; }
.square-title { font-size: 1.5rem; color: #2B6777; margin-bottom: 15px; }
.square-text { font-size: 1rem; color: #4a4a4a; line-height: 1.6; }
.square-icon { margin: 20px 0; }
.read-more { color: #2B6777; font-weight: 500; display: inline-block; margin-top: 15px; }
.read-more span { margin-left: 5px; }

/* ========== VIDEO-FRAME SECTIE ========== */
.video-frame-section { padding: 50px 20px; background: #fff; }
.video-frame-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
.video-content { flex: 1; }
.video-content h2 { color: #2B6777; font-size: 2rem; margin-bottom: 20px; }
.video-content p { color: #4a4a4a; line-height: 1.8; margin-bottom: 20px; }

.feature-list { list-style: none; padding: 0; margin-bottom: 30px; }
.feature-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: #2B6777; font-weight: 500; }
.fa-check-circle { color: #52ab98; font-size: 1.2rem; }

.cta-button {
  display: inline-block; padding: 12px 30px; background: #2B6777; color: #fff !important;
  border-radius: 6px; text-decoration: none; transition: all .3s ease; border: 2px solid transparent;
}
.cta-button:hover { background: #52ab98; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(43,103,119,0.2); }

.video-wrapper { flex: 1; position: relative; overflow: hidden; border-radius: 10px; }
.feature-video { width: 100%; height: auto; border-radius: 10px; }

/* ========== MATTERPORT ========== */
.matterport-section { padding: 50px 20px; background: #f0faff; }
.matterport-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
.matterport-embed { flex: 1; position: relative; overflow: hidden; border-radius: 10px; }
.matterport-embed iframe { width: 100%; height: 400px; border: none; }
.matterport-content { flex: 1; }
.matterport-content h2 { color: #2B6777; font-size: 2rem; margin-bottom: 20px; }
.matterport-content p { color: #4a4a4a; line-height: 1.8; }

/* ========== CONTACT (EERSTE PAGINA) ========== */
.contact-section { padding: 50px 20px; background: #fff; }
.contact-container {
  max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.contact-form {
  background: #fff; padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.contact-form h2 { color: #2B6777; margin-bottom: 30px; font-size: 2.2rem; }

.form-group { position: relative; margin-bottom: 30px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 0; border: none; border-bottom: 2px solid #e0e0e0; font-size: 16px;
  transition: all .3s ease; background: transparent;
}
.form-group label {
  position: absolute; left: 0; top: 12px; color: #888; pointer-events: none; transition: all .3s ease;
}
.form-group input:focus, .form-group textarea:focus,
.form-group input:valid, .form-group textarea:valid { outline: none; border-color: #52ab98; }
.form-group input:focus ~ label, .form-group textarea:focus ~ label,
.form-group input:valid ~ label, .form-group textarea:valid ~ label {
  top: -20px; font-size: .8rem; color: #2B6777;
}

.submit-btn {
  background: #2B6777; color: #fff; padding: 15px 40px; border: none; border-radius: 6px;
  cursor: pointer; font-size: 1rem; transition: all .3s ease; display: flex; align-items: center; gap: 10px;
}
.submit-btn:hover { background: #52ab98; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(43,103,119,0.2); }

.contact-map {
  height: 500px; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.contact-info {
  grid-column: 1 / -1; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px; margin-top: 40px;
}
.info-card {
  background: #fff; padding: 30px; border-radius: 12px; text-align: center; transition: transform .3s ease;
}
.info-card:hover { transform: translateY(-5px); }
.info-card i { font-size: 2rem; color: #52ab98; margin-bottom: 15px; }

/* ========== CONTACT (TWEEDE PAGINA) ========== */
.contact-main-section { padding: 50px 20px; background: #fff; }
.contact-form-wrapper { max-width: 1200px; margin: 0 auto; padding: 20px; }
.modern-form { display: flex; flex-direction: column; gap: 20px; }
.modern-form .form-group { position: relative; }
.modern-form .form-group input, .modern-form .form-group textarea {
  width: 100%; padding: 12px 0; border: none; border-bottom: 2px solid #e0e0e0; font-size: 16px; transition: all .3s ease; background: transparent;
}
.modern-form .form-group label {
  position: absolute; left: 0; top: 12px; color: #888; pointer-events: none; transition: all .3s ease;
}
.modern-form .form-group input:focus, .modern-form .form-group textarea:focus,
.modern-form .form-group input:valid, .modern-form .form-group textarea:valid { outline: none; border-color: #52ab98; }
.modern-form .form-group input:focus ~ label, .modern-form .form-group textarea:focus ~ label,
.modern-form .form-group input:valid ~ label, .modern-form .form-group textarea:valid ~ label {
  top: -20px; font-size: .8rem; color: #2B6777;
}
.contact-info-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px;
}
.contact-info-card {
  background: #f0faff; padding: 20px; border-radius: 10px; text-align: center; transition: transform .3s ease;
}
.contact-info-card:hover { transform: translateY(-5px); }
.contact-info-card i { font-size: 2rem; color: #2B6777; margin-bottom: 15px; }

/* ========== FOOTER ========== */
.footer { background: #2B6777; color: #fff; padding: 60px 0 20px; }
.footer-container {
  max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px; padding: 0 20px;
}
.footer-heading { font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ""; position: absolute; left: 0; bottom: 0; width: 50px; height: 2px; background: #52ab98; }
.footer-text { color: #d1e8ff; line-height: 1.8; margin: 10px 0; }

.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-link { color: #fff; font-size: 1.4rem; transition: color .3s ease; }
.social-link:hover { color: #52ab98; }

.footer-links { list-style: none; padding: 0; }
.footer-link { color: #d1e8ff; text-decoration: none; margin: 8px 0; display: block; transition: transform .3s ease; }
.footer-link:hover { color: #52ab98; transform: translateX(5px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 60px; padding: 25px 20px 0; text-align: center; }
.footer-bottom p { color: #d1e8ff; font-size: .9rem; }
.legal-links { margin-top: 15px; }
.legal-links a { color: #d1e8ff; text-decoration: none; margin: 0 10px; font-size: .85rem; }
.legal-links a:hover { color: #52ab98; }

/* ========== CLIENTS / REFERENTIES ========== */
.clients-section { padding: 60px 20px; background: #fff; margin-top: 20px; }
.clients-header { max-width: 1200px; margin: 0 auto 24px; text-align: center; }
.clients-header h2 { color: #2B6777; font-size: 2rem; margin-bottom: 8px; }
.clients-header p { color: #4a4a4a; opacity: .9; }

.clients-grid {
  max-width: 1200px; margin: 0 auto; display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); justify-content: center;
}
.client-card {
  background: #f0faff; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center; padding: 18px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.client-logo-wrap { width: 100%; aspect-ratio: 3 / 2; display: grid; place-items: center; }
.client-logo {
  max-width: 90%; max-height: 70%; width: auto; height: auto; object-fit: contain;
  filter: grayscale(100%) contrast(1.05); transition: filter .2s ease, transform .2s ease;
}
.client-card:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(43,103,119,0.12); }
.client-card:hover .client-logo { filter: none; transform: scale(1.03); }

/* ========== MEDIA QUERIES LAYOUT ========== */
@media (max-width: 480px) {
  .nav .navOpenBtn, .nav .navCloseBtn { display: block; }

  .nav .nav-links {
    position: fixed; top: 0; left: -100%; height: 100%; max-width: 280px; width: 100%;
    padding-top: 100px; row-gap: 30px; flex-direction: column; background: #2B6777;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: all .4s ease; z-index: 100;
  }
  .nav.openNav .nav-links { left: 0; }
  .navCloseBtn { position: absolute; top: 20px; right: 20px; color: #fff; }
  .nav-links li a { color: #fff; font-weight: 500; }

  /* Submenu mobiel inline */
  .nav .nav-links .submenu { position: static; background: transparent; box-shadow: none; padding: 0; min-width: 0; }
  .nav .nav-links .submenu li a { color: #fff; padding: 8px 0 8px 14px; opacity: .95; }
  .nav .nav-links .submenu li a:hover { background: rgba(255,255,255,0.08); color: #fff; }

  /* Alleen tonen als parent .open heeft (JS) */
  .nav .nav-links li.has-submenu:not(.open) > .submenu { display: none !important; }
  .nav .nav-links li.has-submenu.open > .submenu     { display: block !important; }

  .square-section, .video-frame-container, .matterport-container, .contact-container { flex-direction: column; }
  .contact-form-wrapper, .contact-info-cards { grid-template-columns: 1fr; }

  .hero-section { height: 400px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .square-title { font-size: 1.25rem; }
  .square-text { font-size: .9rem; }
  .video-content h2, .matterport-content h2 { font-size: 1.75rem; }
}

/* === PRO3 INTRO === */
.pro3-section { padding: 60px 20px; background: #fff; }
.pro3-header { max-width: 1200px; margin: 0 auto 24px; text-align: center; }
.pro3-header h2 { color: #2B6777; font-size: 2rem; margin-bottom: 8px; }
.pro3-header p { color: #4a4a4a; opacity: .95; }

.pro3-features {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.pro3-feature {
  background: #f0faff; border-radius: 12px; padding: 18px;
  text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.pro3-feature:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(43,103,119,.12); }
.pro3-feature i { font-size: 1.6rem; color: #2B6777; margin-bottom: 8px; display: block; }
.pro3-feature h3 { color: #2B6777; font-size: 1.1rem; margin-bottom: 6px; }
.pro3-feature p { color: #4a4a4a; font-size: .98rem; }

/* === TOURS (grid) === */
.tours-section { padding: 60px 20px; background: #fff; }
.tours-header { max-width: 1200px; margin: 0 auto 24px; text-align: center; }
.tours-header h2 { color: #2B6777; font-size: 2rem; margin-bottom: 8px; }
.tours-header p { color: #4a4a4a; opacity: .9; }

.tours-grid {
  max-width: 1200px; margin: 0 auto; display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.tour-card {
  background: #f0faff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.tour-card:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(43,103,119,.12); }

.tour-thumb { position: relative; display: block; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.tour-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.92); transition: transform .35s ease, filter .2s ease; }
.tour-card:hover .tour-thumb img { transform: scale(1.03); filter: brightness(1); }
.play-badge {
  position: absolute; left: 12px; bottom: 12px; background: rgba(0,0,0,.6);
  color: #fff; border-radius: 999px; padding: 10px 12px; display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem; line-height: 1;
}
.tour-body { padding: 16px 16px 18px; display: grid; gap: 6px; }
.tour-title { font-size: 1.05rem; color: #2B6777; }
.tour-meta { color: #4a4a4a; font-size: .95rem; opacity: .9; }
.tour-cta {
  margin-top: 6px; display: inline-block; width: fit-content;
  padding: 10px 14px; background: #2B6777; color: #fff; border-radius: 8px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.tour-cta:hover { background: #52ab98; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(43,103,119,.22); }

/* === WERKWIJZE === */
.steps-section { padding: 60px 20px; background: #f8fcff; }
.steps-header { max-width: 1200px; margin: 0 auto 24px; text-align: center; }
.steps-header h2 { color: #2B6777; font-size: 2rem; margin-bottom: 8px; }
.steps { max-width: 1000px; margin: 0 auto; list-style: none; display: grid; gap: 16px; }
.steps li {
  background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 12px; padding: 16px 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,.05);
}
.steps h3 { color: #2B6777; font-size: 1.05rem; margin-bottom: 6px; }
.steps p { color: #4a4a4a; }

/* === PRIJZEN (3 tegels) === */
.pricing-section { padding: 60px 20px; background: #ffffff; }
.pricing-header { max-width: 1200px; margin: 0 auto 24px; text-align: center; }
.pricing-header h2 { color: #2B6777; font-size: 2rem; margin-bottom: 8px; }
.pricing-header p  { color: #4a4a4a; opacity: .95; }

.pricing-tiles {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) { .pricing-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing-tiles { grid-template-columns: 1fr; } }

.pricing-tile {
  background: #f0faff; border-radius: 12px; padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  display: grid; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.pricing-tile:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(43,103,119,0.12);
}
.pricing-tile-title { color: #2B6777; font-size: 1.2rem; line-height: 1.25; }
.pricing-tile-sub {
  display: block; margin-top: 4px;
  font-size: 1rem; font-weight: 500; color: #6a7a86;
}
.pricing-tile-price {
  text-align: left; font-size: 1.35rem; color: #222;
}
.pricing-tile-price span {
  font-size: .95rem; color: #6a7a86; margin-right: 6px;
}
.pricing-tile-list { list-style: none; padding: 0; margin: 6px 0 10px; display: grid; gap: 8px; color: #4a4a4a; }
.pricing-tile-list li {
  position: relative; padding-left: 28px; line-height: 1.5;
}
.pricing-tile-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free"; font-weight: 900;
  position: absolute; left: 0; top: 0.2em;
  width: 20px; height: 20px; display: grid; place-items: center;
  border-radius: 50%;
  background: #e8f5f2; color: #2B6777; font-size: .75rem;
}
.pricing-tile-cta {
  display: inline-block; width: fit-content;
  padding: 12px 16px; border-radius: 8px;
  background: #2B6777; color: #fff; text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pricing-tile-cta:hover { background: #52ab98; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(43,103,119,.18); }

.pricing-tile--featured {
  border: 2px solid #2B6777;
  box-shadow: 0 12px 28px rgba(43,103,119,.16);
  position: relative;
  padding-top: 56px !important; /* ruimte voor badge */
}
.pricing-badge {
  position: absolute; top: 12px; right: 12px; left: auto;
  background: #2B6777; color: #fff; font-size: .8rem; font-weight: 600;
  padding: 6px 10px; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(43,103,119,.25);
  pointer-events: none; /* label blokkeert geen klikken */
}
@media (max-width: 480px) {
  .pricing-badge { transform: scale(0.95); top: 10px; right: 10px; }
  .pricing-tile--featured { padding-top: 48px !important; }
}

/* === SPECS === */
.specs-section { padding: 60px 20px; background: #fff; }
.specs-header { max-width: 1200px; margin: 0 auto 16px; text-align: center; }
.specs-header h2 { color: #2B6777; font-size: 2rem; margin-bottom: 8px; }
.specs-list { max-width: 900px; margin: 0 auto; color: #4a4a4a; line-height: 1.8; }
.specs-list li { margin: 6px 0; }

/* === FAQ === */
.faq-section { padding: 60px 20px; background: #f8fcff; }
.faq-header { max-width: 1200px; margin: 0 auto 16px; text-align: center; }
.faq-header h2 { color: #2B6777; font-size: 2rem; margin-bottom: 8px; }
.faq-item {
  max-width: 900px; margin: 8px auto; background: #fff; border: 1px solid rgba(0,0,0,.06);
  border-radius: 10px; padding: 14px 16px; box-shadow: 0 4px 10px rgba(0,0,0,.04);
}
.faq-item summary { cursor: pointer; font-weight: 600; color: #2B6777; }
.faq-item p { color: #4a4a4a; margin-top: 8px; }

/* === CTA EINDE === */
.cta-final { padding: 60px 20px; background: #ffffff; text-align: center; }
.cta-final h2 { color: #2B6777; margin-bottom: 14px; }

/* === MOBIEL NAV TAP-FIX === */
@media (max-width: 768px) {
  .nav .nav-links { pointer-events: none; }
  .nav.openNav .nav-links { pointer-events: auto; }
}
.navOpenBtn,
.navCloseBtn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; z-index: 1100;
  -webkit-tap-highlight-color: transparent; background: transparent; border: 0; cursor: pointer;
}
.nav .nav-links .navCloseBtn { position: absolute; top: 16px; right: 16px; }
.nav .nav-links .submenu { display: none; }
.nav .nav-links li.has-submenu.open > .submenu { display: block; }

/* ========== LANGUAGE / FLAGS INDEX (toegevoegd) ========== */
/* Gebruik op index.html: <body class="lang-landing"> ... </body> */

body.lang-landing {
  background: #000;               /* zwarte achtergrond zoals je screenshot */
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-landing a { color: #fff; }

.lang-landing .language-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.lang-landing .lang-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.lang-landing .lang-option img {
  width: 140px;
  height: 90px;                  /* dwingt exact gelijke grootte */
  object-fit: cover;             /* gelijke kadermaat, geen vervorming */
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lang-landing .lang-option img:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.35);
}

.lang-landing .label {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

@media (max-width: 600px) {
  body.lang-landing {
    padding: 40px 0;
  }

  .lang-landing .language-selector {
    flex-direction: column;
    gap: 50px;
  }

  .lang-landing .lang-option img {
    width: 120px;
    height: 78px;
  }
}
