@font-face {
  font-family: Frente;
  src: url(FrenteH1-Regular.otf);
}

/* NAV CONTAINER */
.nav-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 10px;
  font-family: 'Frente', sans-serif;
  background: none;
  border: none;
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  color: #aaa;
  transition: transform 0.2s;
}

.dropbtn {
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-transform: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

/* HOVER EFFECT */
.nav-link:hover, .dropbtn:hover {
  transform: scale(1.25);
}

/* DROPDOWN CONTAINER */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

/* DROPDOWN CONTENT (INITIALLY HIDDEN) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 160px;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

/* LINKS INSIDE DROPDOWN */
.dropdown-content a {
  color: #aaa;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-family: 'Frente', sans-serif;
}

/* HOVER LINKS INSIDE DROPDOWN */
.dropdown-content a:hover {
  filter: brightness(1.05);
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.nav-buttons {
  gap: 30px; /* Space out the links evenly */
  align-items: center;
}

.nav-buttons a {
  text-decoration: none;
  font-family: 'Frente', monospace;
  font-size: 16px;
  color: #999999;
  position: relative; /* Important for dropdown positioning */
}