.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  transition: background-color 0.3s ease;
  backdrop-filter: blur(5px);
}

.navbar.scrolled {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.navbar-logo {
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: underline;
}

.navbar-links {
  display: none;
}

.navbar-link {
  font-size: 0.875rem;
  font-weight: 400;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
  font-family: var(--font-space-grotesk);
  color: #1f2937;
}

.navbar-link:hover span {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}
