html {
  zoom: 0.7; /* perkecil jadi 90% */
}

/* GLOBAL */
body {
  font-family: "Inter", sans-serif;
  background: #000;
  color: #fff;
  margin: 0;
}


/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7); /* transparan elegan */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between; /* kiri & kanan */
  align-items: center;

}

.logo span {
  color: #38bdf8;
  font-weight: 700;
  font-size: 1.2rem;
  
}

/* DESKTOP MENU */
.menu-desktop {
  display: flex;
  gap: 30px;
  list-style: none;
  order: -1;
}

.menu-desktop a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition:
    color 0.3s ease,
    border-bottom 0.3s ease;
}

.menu-desktop a:hover {
  color: #38bdf8;
}

.menu-desktop a.active {
  color: #0077ff;
  font-weight: 700;
  border-bottom: 2px solid #0077ff;
  padding-bottom: 4px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  order: -1; /* pindahkan ke paling kiri */
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  list-style: none;
  padding: 20px;
  background: #111;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #38bdf8;
}

.mobile-menu a.active {
  color: #0077ff;
  font-weight: 700;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  color: #6b7280;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-desktop {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu.active {
    display: flex;
  }
}
