/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&display=swap');

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* font-family verwijderd om andere fonts toe te staan */
}

/* Default: zwarte menu + naam */
#menu-toggle,
#name-right,
#dropdown-menu a {
  color: black;
}

/* Alleen op de HOME pagina: wit menu + naam */
body.home #menu-toggle,
body.home #name-right,
body.home #dropdown-menu a {
  color: #0b0b0b !important;
}

/* Achtergrondvideo (alleen op home zichtbaar) */
#bg-video, #video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

/* Naam rechtsboven */
#name-right {
  position: fixed;
  top: 24px;
  right: 24px;
  font-size: 2.4rem;
  font-weight: 300;
  z-index: 10;
}

/* Menu linksboven */
#menu-wrapper {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 1000;
  user-select: none;
}

#menu-toggle {
  font-size: 3rem;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

#menu-wrapper:hover #menu-toggle {
  transform: rotate(90deg);
}

#dropdown-menu {
  position: absolute;
  top: 80px;
  left: 0;
  background: transparent;
  display: none;
  font-size: 2rem;
  padding: 0;
  margin: 0;
}

#menu-wrapper:hover #dropdown-menu {
  display: block;
}

#dropdown-menu a {
  display: block;
  text-decoration: none;
  padding: 4px 0;
  margin: 0;
  letter-spacing: 0.05em;
  font-weight: 400;
  transition: opacity 0.2s ease, padding-left 0.2s ease;
}

#dropdown-menu a + a {
  margin-top: 4px;
}

#dropdown-menu a:hover {
  opacity: 0.7;
  padding-left: 10px;
}

/* Knipperende cursor */
#typing-cursor {
  margin-left: 4px;
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Responsive */
@media screen and (max-width: 600px) {
  #menu-toggle {
    font-size: 1.4rem;
    margin-right: 8px;
  }

  #dropdown-menu a {
    font-size: 0.85rem;
    padding-left: 4px;
  }

  #dropdown-menu a + a {
    margin-top: 3px;
  }

  #name-right {
    font-size: 1.8rem;
    top: 16px;
    right: 16px;
  }
}
