/* navbar.css */

.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-inner {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 18px;

  border-bottom: 1px solid var(--surface);

  background: var(--mantle);
}

.navbar-brand {
  color: var(--mauve);
  text-decoration: none;
  font-weight: bold;
}

.navbar-nav {
  display: flex;
  gap: 14px;
}

.navbar-link {
  color: var(--sub);
  text-decoration: none;

  transition: color 0.2s ease;
}

.navbar-link:hover {
  color: var(--blue);
}
