/* pawnd.io — shared site navigation */

:root {
  --nav-height: 48px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 9999;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  background: rgba(8, 8, 12, 0.88);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-sizing: border-box;
}

.nav-brand {
  font-family: 'IBM Plex Mono', 'Space Grotesk', 'Courier New', monospace;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #c9a84c;
  text-decoration: none;
  margin-right: auto;
  transition: color 0.2s ease;
}

.nav-brand:hover {
  color: #e4e2dd;
}

.nav-tabs {
  display: flex;
  height: 100%;
  align-items: stretch;
  gap: 0;
}

.nav-tab {
  font-family: 'IBM Plex Mono', 'Space Grotesk', 'Courier New', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(228, 226, 221, 0.4);
  padding: 0 1.1rem;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.2s ease;
}

.nav-tab:hover {
  color: rgba(228, 226, 221, 0.75);
}

.nav-tab[aria-current="page"] {
  color: #e4e2dd;
}

.nav-tab[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.55rem;
  right: 0.55rem;
  height: 2px;
  background: #c9a84c;
  border-radius: 2px 2px 0 0;
}

@media (max-width: 480px) {
  .site-nav {
    padding: 0 1rem;
  }
  .nav-brand {
    font-size: 0.75rem;
  }
  .nav-tab {
    padding: 0 0.75rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }
}
