/* ===== Header ===== */

/* Reset margin/padding bawaan browser */
html, body {
  font-family: 'Nunito', sans-serif;
  margin: 0;       /* hilangkan margin default */
  padding: 0;      /* hilangkan padding default */
}


/* Semua link default tanpa underline */
a {
  text-decoration: none;
}

/* Saat hover, klik (active), atau fokus */
a:hover,
a:active,
a:focus {
  text-decoration: none; /* pastikan tidak muncul underline */
}


.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0078d7;
  color: #fff;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;       /* pastikan penuh */
  box-sizing: border-box;
}

.site-header .logo {
  font-weight: bold;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hamburger.rotate {
  transform: rotate(180deg);
}

/* Mobile Menu */
@media(max-width:768px){
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 250px;
    background: #0078d7;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease;
  }
  .nav-links.open {
    right: 0;
  }
  .hamburger {
    display: block;
  }
}

