/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--surface-container);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--outline-variant);
  padding: 1rem 2rem;
  z-index: 100;
  transition: all 0.3s ease;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Courgette", cursive;
  font-size: 1.5rem;
  color: #00bfff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--on-surface-variant);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--seed-color);
}
