/* ================= NAVIGATION ================= */

header {
  background: #2f3e4e;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 18px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.navbar a:hover,
.navbar a.active {
  background: #e35b4f;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}
