/*
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&display=swap');
*/

/* ── Navbar ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: 'DM Sans', sans-serif;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111;
  display: inline-block;
}

/* Liens */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #111;
}

.nav-link.active {
  font-weight: 500;
}

/* Bouton login */
.nav-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  color: #111;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.nav-btn:hover {
  background: #f5f5f5;
}