.site-header {
  background: transparent;
  padding: 1rem 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.header-logo .logo-link img {
	filter: unset !important;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; /* Voorkom dat items naar een nieuwe regel gaan */
  width: 90%;
  margin: 0 auto;
  padding: 20px 30px;
  position: relative; /* Zorgt voor juiste positionering van child elementen */
}

/* Sticky Logo Styling */
.sticky-logo {
  transition: all 0.3s ease;
  position: relative; /* Zorgt ervoor dat het logo in de normale flow blijft */
}
.sticky-logo.is-sticky {
  position: fixed;
  top: 20px;
  z-index: 9999;
  padding: 10px;
}
.sticky-logo .logo-link {
  display: block;
}
.sticky-logo .logo-link img {
  max-height: 60px;
  width: auto;
}



/* Logo wrapper houdt de ruimte vast in de layout */
.header-logo-wrapper {
  flex: 0 0 auto; /* Voorkomt dat de wrapper groeit of krimpt */
  position: relative;
  display: flex;
  align-items: center;
  width: unset;; /* Vaste breedte voor het logo */
}

/* Spacer voor layout balans */
.header-spacer {
  flex: 1; /* Neemt beschikbare ruimte in */
}

.header-logo {
  position: relative;
}

/* Hide the placeholder in the regular header */
.header-logo-placeholder {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-logo .logo-link img {
  max-height: 60px;
  width: auto;
}

.header-nav {
    max-width: 1200px;

  text-align: center;
  margin-left: auto; /* Duwt het menu naar rechts */
  margin-right: auto; /* Centreert het menu */
  position: relative; /* Voor juiste positionering */
  z-index: 1; /* Zorgt dat het menu boven andere elementen staat */
}

.header-nav .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
}

.nav-item {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.nav-item:hover a {
  color: black !important;
}
.nav-item.menu-item-has-children {
  padding-right: 15px;
}
.nav-item.menu-item-has-children .dropdown-toggle {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 3;
}
.nav-item.menu-item-has-children .dropdown-toggle svg {
  transition: transform 0.3s ease;
}
.nav-item.menu-item-has-children .dropdown-toggle .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-item.menu-item-has-children.expanded .dropdown-toggle svg {
  transform: rotate(180deg);
}

.header-nav .nav-link {
	text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: "Satoshi", sans-serif;
    text-transform: uppercase;
    margin-bottom: unset;
    padding: 0.5rem 18px;
    position: relative;
    z-index: 2;
    font-size: 18px;
}


button.mobile-toggle.active span {
  background-color: white;
}

.header-nav .nav-link:hover {
  color: white;
}

/* Submenu styles */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  z-index: 10;
  pointer-events: none;
  will-change: opacity, transform, visibility;
}

.nav-item.expanded .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.sub-menu-item {
  margin: 0;
  padding: 0;
}

.sub-menu-link {
  display: block;
  padding: 8px 20px;
  color: black;
  text-decoration: none;
  font-family: "Satoshi", sans-serif;
  font-size: 15px;
  transition: background-color 0.2s ease;
}
.sub-menu-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Hover background effect */
body.home .nav-hover-bg {
  background-color: #d4d4d44d !important;
}

.nav-hover-bg {
  position: absolute;
      background-color: rgb(201 201 201 / 63%);
  height: 100%;
  top: -4px;
  left: 0;
  border-radius: 100px;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 18px 12px;
  pointer-events: none; /* Ensures the background doesn't interfere with clicks */
}

body.home .header-nav {
	background: #c4c4c433 !important;
}

.header-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001; /* Hoger dan het mobiele menu */
  padding: 10px;
}
.mobile-toggle .bar {
  width: 25px;
  height: 1px;
  background: black;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-toggle .bar.first {
  position: relative;
  bottom: 3px;
}
.mobile-toggle .bar.third {
  position: relative;
  top: 3px;
}
.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  top: 1px;
}

.mobile-menu {
  display: none;
  width: 100%;
  transition: transform 0.3s ease;
  transform: translateX(100%);
}

.mobile-menu .mobile-nav-list {
  list-style: none;
  padding: 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.mobile-menu .mobile-nav-link {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 24px;
  font-family: "Satoshi", sans-serif;
  text-transform: uppercase;
  display: block;
  padding: 0.5rem 0;
}

.mobile-menu .mobile-nav-link:hover {
  color: #d9d9d9;
}

/* Mobile submenu styles */
.mobile-sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-nav-item.expanded .mobile-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-item.expanded .mobile-sub-menu {
  display: block;
  opacity: 1;
  margin-bottom: 0.5rem;
}

.mobile-nav-item.menu-item-has-children {
  position: relative;
}
.mobile-nav-item.menu-item-has-children .dropdown-toggle {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
}
.mobile-nav-item.menu-item-has-children .dropdown-toggle svg {
  transition: transform 0.3s ease;
}
.mobile-nav-item.menu-item-has-children.expanded .dropdown-toggle svg {
  transform: rotate(180deg);
}

.mobile-sub-menu-link {
  display: block;
  padding: 8px 15px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: "Satoshi", sans-serif;
}
.mobile-sub-menu-link:hover {
  color: white;
}

@media (max-width: 400px) {
  .header-logo .logo-link img {
    max-width: 115px;
    width: 100%;
	  top: 10px;
        position: relative;
  }
  .sticky-logo-container {
    top: 10px;
    left: 5%;
  }
}
@media (max-width: 600px) {
  .site-header .header-inner {
    width: 100%;
  }
  .mobile-toggle {
    padding: 10px 0;
  }
}
/* Responsieve weergave voor mobiel */
@media (max-width: 1200px) {
  a.btn.btn-black.btn-animated {
    display: none;
  }
  .header-actions {
    gap: unset;
  }
  .header-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    margin-bottom: unset;
  }
  .mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-menu.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    transform: translateX(0);
    overflow-y: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .mobile-sub-menu {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 4px;
  }
}

.header-nav {
	background: #80808030;
    border-radius: 100px;
    padding: 10px;
}

@media (max-width: 1900px) and (min-width: 1800px) {
	.header-logo .logo-link img {
		max-width: 150px;
	}
	
	.site-header .btn-animated {
		white-space: pre;
	}
}

/*# sourceMappingURL=header.css.map */