/* VOLLEDIG NIEUW MOBIEL MENU SYSTEEM */

/* Verberg oude navigatie op mobiel */
@media (max-width: 768px) {
  .navbar,
  .nav-container,
  .nav-menu,
  .nav-toggle,
  .nav-actions {
    display: none !important;
  }
}

/* Nieuwe mobiele header - ALLEEN OP MOBIEL */
.new-mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: #ffffff;
  display: none; /* Standaard verborgen */
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Toon alleen op mobiel */
@media (max-width: 768px) {
  .new-mobile-header {
    display: flex;
  }
}

/* Logo in nieuwe header */
.new-mobile-logo img {
  height: 35px;
  width: auto;
}

/* Nieuwe hamburger button */
.new-hamburger {
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
}

.new-hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hamburger animatie wanneer actief */
.new-hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.new-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.new-hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

/* Nieuwe mobiele menu overlay */
.new-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 10000;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  padding: 90px 30px 30px 30px;
}

/* Menu zichtbaar wanneer actief */
.new-mobile-menu.active {
  transform: translateY(0);
}

/* Menu items lijst */
.new-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-menu-items li {
  margin: 0 0 12px 0;
}

.new-menu-items a {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: color 0.2s;
}

.new-menu-items a:hover,
.new-menu-items a.active {
  color: #4FC3F7;
}

/* Taalwisselaar in nieuw menu */
.new-language-switcher {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
  text-align: center;
}

.new-language-switcher h4 {
  margin: 0 0 20px 0;
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.new-lang-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.new-lang-btn {
  background: #f8f9fa;
  border: 2px solid #4FC3F7;
  color: #4FC3F7;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.new-lang-btn:hover,
.new-lang-btn.active {
  background: #4FC3F7;
  color: white;
}

/* CTA knop in menu */
.new-menu-cta {
  margin-top: 50px;
  text-align: center;
}

.new-cta-button {
  background: #4FC3F7;
  color: white;
  padding: 18px 35px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.new-cta-button:hover {
  background: #29B6F6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

/* Close knop */
.new-close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  transition: all 0.2s;
}

.new-close-btn:hover {
  background: rgba(0,0,0,0.1);
  transform: scale(1.1);
}

/* Content aanpassing voor mobiele header */
@media (max-width: 768px) {
  /* Alle content secties padding toevoegen */
  .page-header {
    padding-top: 90px !important;
  }
  
  .hero {
    padding-top: 70px !important;
  }
  
  .services-preview,
  .innovation-showcase,
  .company-story,
  .mission-values,
  .team-section,
  .services-overview,
  .projects-showcase,
  .quick-contact,
  .contact-main,
  .privacy-content,
  .terms-content {
    margin-top: 0 !important;
  }
  
  /* Eerste content sectie na header extra ruimte */
  .hero:first-of-type,
  section:first-of-type:not(.page-header) {
    padding-top: 90px !important;
  }
  
  body {
    padding-top: 0 !important;
  }
}

/* Zorg ervoor dat geen content onder header verdwijnt */
@media (max-width: 768px) {
  /* Alle direct children van body die geen header zijn */
  body > section:not(.page-header):first-of-type,
  body > main > section:first-child {
    padding-top: 90px !important;
  }
}

/* Verberg op desktop */
@media (min-width: 769px) {
  .new-mobile-header,
  .new-mobile-menu {
    display: none !important;
  }
}