.site-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  width: 75vw;
  max-width: 1200px;
  min-width: 320px;
  margin: 0 auto;
  padding: 0;
  gap: 3vw; /* Responsive gap between items */
}

.site-nav a {
  font-family: var(--mcbb-font-main);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom-color 0.2s;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
  color: var(--mcbb-gold);
  border-bottom: 2px solid var(--mcbb-gold);
}