.navbar {
  background: white;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand img {
  width: 100px;
}

.nav-menu {
  display: flex;
  gap: var(--space-sm);
  list-style: none;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }

  .nav-container {
    justify-content: center;
  }
}
