/* menu.css - Specifieke stijlen voor het menu */
/* --- MENU BUTTON (HAMBURGER) --- */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  gap: 6px;
  position: fixed;
  top: 24px;
  right: 32px;
  z-index: 3000;
  margin: 0;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 5px;
    background: #fff;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);

  margin: 0;
}

  /* Hamburger rood op lichte achtergrond */
  .hamburger.hamburger--red span {
    background: #E6253A !important;
  }

  /* Automatisch rood op witte of lichtgrijze secties via body class (optioneel, JS kan body een class geven) */
  body.menu-light-bg .hamburger span {
    background: #E6253A !important;
  }

/* Hamburger to Cross Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger span {
margin-right: 3em;
}
}

/* --- MENU OVERLAY --- */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #E6253A;
  z-index: 2000;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.menu-overlay.active {
  display: flex;
}

/* Alleen zichtbaar als menu actief is: home-menu-visual */
.menu-overlay .home-menu-visual {
  display: block;
}
.menu-overlay:not(.active) .home-menu-visual {
  display: none !important;
}

.menu-overlay-content {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100vw;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
.menu-links {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 5vw;
}
.menu-links a {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #111;
  text-decoration: none;
  margin-bottom: 0rem;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.menu-links a:hover {
  color: #fff;
}
.menu-photo {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.menu-photo img {
  max-width: 90%;
  max-height: 80vh;

}

@media (max-width: 700px) {
.menu-photo img {
display: none;
}
}

.menu-social {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
 display: flex;
  bottom: 3vh;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.menu-social img {
  width: 32px;

  height: 32px;

}



/* Voeg hier je menu-gerelateerde CSS toe */

nav {
  background-color: #fff;

}

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

nav ul li {
  display: inline-block;
}

nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 0.5em 1em;
  transition: background 0.2s, color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  background: #f0f0f0;
  color: #0077cc;
  border-radius: 4px;
}
