/* ── NAVIGATION ────────────────────────────────────────────────────────── */
nav.navbar {
  background: #4b2e83;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
}
.brand {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.3s;
  padding: 0.6rem 0.8rem;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #a443da !important;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #4b2e83;
    flex-direction: column;
    gap: 0;
  }
  .nav-menu.show {
    display: flex;
  }
  .nav-menu li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}