/* ================================
   NAVBAR STYLES
   Extracted from Zeitgeist Cloud
   Uses tokens from base CSS files
   ================================ */

/* Top navbar (shared across pages) */
.top-navbar {
  width: 100%;
  height: clamp(20px, 2vh, 30px);
  background-color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 6999; /* just below header's z-index */
}

/* Navbar content wrapper */
.navbar-content {
  width: 100%;
  max-width: var(--content-width);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
  padding: 0 var(--space-sm);
}

/* Navigation links */
.nav-link {
  color: var(--light-text);
  text-decoration: none;
  font-size: clamp(0.65rem, 1.8vmin, 0.9rem);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
  padding: 0 clamp(0.25rem, 1vw, 0.5rem);
}

.nav-link:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Ultra-small screen adjustments (JioPhone and similar) */
@media (max-width: 360px) {
  .navbar-content {
    gap: clamp(0.5rem, 2vw, 1rem);
  }
  .nav-link {
    font-size: 0.6rem;
  }
}