nav.navbar {
  background: #6a1b9a !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

/* Burger icon */
.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  z-index:500;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffd1ff;
}

/* Responsive (mobile) */
@media (max-width: 768px) {
  .burger {
    display: block; /* tampilkan burger */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #6a1b9a;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    animation: slideDown 0.3s ease;
  }

  .nav-links.active {
    display: flex;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}