/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
}

/* Navbar utama */
.navbar {
    padding: 30px 0;
    background: #fff;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse; /* <== pindahkan ke sini */
}

.nav-links {
  display: none;
  gap: 30px;
  justify-content: flex-start;  
}

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


.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  position: relative;
}


.nav-links a.active-bold {
  font-weight: bold;
}

.nav-links a.active-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: tomato;
}

.toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 24px;
  height: 20px;
}

.toggle span {
  height: 2px;
  background: #000;
  margin: 4px 0;
  border-radius: 2px;
}