/* Header styles */

header {
  background-color: var(--blue);
}

#navigationItems {
  height: 75px;

  /* Positioning elements */
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* Responsive design */
  margin-left: auto;
  margin-right: auto;
  max-width: 70rem;
}

#logo {
  margin: 15px;
}

#navigationLinks {
  display: none; /* Hide desktop navigation links */
}

.navigationLink {
  text-decoration: none;
  margin: 15px;
  font-family: 'Press Start 2P', cursive;
  color: white; /* Always white regardless of light/dark mode */
}

.navigationLink:hover {
  color: var(--orange);
}

#menuButton {
  background: none;
  padding: 10px;
  cursor: pointer;
  touch-action: manipulation; /* Disable double-tap zoom on iOS */
}

#menuButtonSvg {
  color: white;
  display: block; /* Show menu button by default */
}

#menuCloseSvg {
  color: white;
  display: none; /* Hide menu close by default */
}

#mobileMenu {
  display: none; /* Hide mobile menu by default */
  flex-direction: column;
  padding-bottom: 15px;
}

.mobileMenuLink {
  text-decoration: none;
  padding: 15px;
  font-family: 'Press Start 2P', cursive;
  color: white;
}

.activeLink {
  color: var(--orange);
}

@media screen and (min-width: 768px) {
  #menuButton, #mobileMenu {
    display: none;
  }

  #navigationLinks {
    display: flex;
  }
}
