/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 999;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 40px;
  height: 40px;
  background: #2b8a3e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.brand-text {
  font-weight: 700;
  font-size: 16px;
  color: #333;
}

/* Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px; /* kasih jarak antar menu */
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #2b8a3e;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-direction: column;
}
.dropdown-content a {
  padding: 10px 15px;
  color: #333;
  display: block;
}
.dropdown:hover .dropdown-content {
  display: flex;
}

/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.burger div {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px;
  transition: 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .burger {
    display: flex;
  }
}
@charset "utf-8";
/* CSS Document */

