nav {
  display: flex;
  justify-content: center;
  background-color: black;
  border-bottom: 2px solid rgba(226,176,7,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

nav li { position: relative; }

nav a {
  text-decoration: none;
  color: #E2B007;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #E2B007;
  transition: width 0.3s ease;
}

nav a:hover { color: #FFD84D; }
nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #E2B007;
  display: block;
  border-radius: 2px;
}
