.navbar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 0.5rem 1rem;
}

/* Brand */
.brand {
  font-weight: 700;
  color: cyan;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;

  a { color: var(--muted); text-decoration: none; }
  a:hover { color: white; }

  @media (max-width: 700px) {
    position: absolute;
    right: 20px;
    top: 64px;
    background: white;
    padding: 12px;
    border-radius: 8px;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(10,15,30,0.08);

    display: none;
    &.show { display: flex; }
  }
}



.nav-button {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.25rem;
  color: cyan;

  @media (max-width: 700px) {
    display: block;
  }
}
