.navbar {
  background-color: var(--paper);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* The stamp, clicking home to the mark board */
.nav-brand {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  text-decoration: none;
}

.nav-brand:hover {
  color: var(--ink);
}

.nav-brand svg {
  display: block;
  height: 1.5rem;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
}

.nav-link {
  border-radius: 0.25rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  padding: 0.32rem 0.8rem;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link.active {
  background-color: var(--chip);
  color: var(--ink);
}

/* Mobile responsive styles */
@media (max-width: 600px) {
  .nav-container {
    gap: 1rem;
    padding: 0 1rem;
  }

  .nav-brand svg {
    height: 1.35rem;
  }

  .nav-links {
    gap: 0.3rem;
  }
}
