/* navbar.css */
.navbar {
  background: #1e1e1e;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.7);
  position: relative;
}
.navbar .brand {
  font-weight: 700;
  font-size: 20px;
  color: #ffcc00;
}
.navbar .menu {
  display: flex;
  gap: 12px;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background .3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar a.active {
  background: #ffcc00;
  color: #000;
}
.navbar a:hover {
  background: rgba(255, 204, 0, 0.2);
}

/* Mobile dropdown */
.navbar .toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #ffcc00;
}
@media (max-width: 768px) {
  .navbar .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #1e1e1e;
    padding: 10px;
    border-radius: 8px;
  }
  .navbar .menu.show {
    display: flex;
  }
  .navbar .toggle {
    display: block;
  }
}
