/* =========================
   DESKTOP MENU (HEADER NAV)
   ========================= */

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  flex-wrap: nowrap;
}

.nav-link {
  position: relative;
  padding-bottom: 0.12rem;
  white-space: nowrap;     /* keeps “About Us” on one line */
  text-align: center;
  line-height: 1.2;
}

/* Underline on hover / active */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

/* CTA button (match footer buttons: not bold + same shape) */
.nav-cta {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--brand-accent);        /* Active grey */
  color: #111111;

  padding: 0.55rem 0.95rem;
  border-radius: 6px;                    /* same as footer buttons */

  font-family: "Audiowide", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;                      /* NOT bold */
  letter-spacing: 0.2px;

  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;

  transition: background 0.15s ease, transform 0.05s ease;
}

.nav-cta:hover { background: rgba(148, 146, 147, 0.85); }
.nav-cta:active { transform: translateY(1px); }


/* Medium screens: tighter menu spacing to avoid wrapping */
@media (max-width: 1200px) {
  .nav-list {
    gap: 0.9rem;
    font-size: 0.92rem;
  }
}

/* MOBILE: hide desktop menu (use slide-out menu instead) */
@media (max-width: 980px) {
  .site-nav {
    display: none;
  }
}
