
/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
}
.container-navbar-menu {
  max-width: 940px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 140px;
}

/* --- Menu (Desktop) --- */
.menu {
  display: flex;
  gap: 25px;
  align-items: center;
  transition: all 0.3s ease;
  background:none;
}
.menu a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
}
.menu a:hover {
  color: #007bff; /* accent hover */
}

/* --- Buttons --- */
.btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-accent {
  background: #007bff;
  color: #fff !important;
}
.btn-accent:hover {
  background: #0056b3;
}
.btn-logout {
  background: #f44336;
  color: #fff !important;
}
.btn-logout:hover {
  background: #c62828;
}

/* --- Burger Icon --- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* --- Mobile Menu --- */
@media (max-width: 768px) {
  .burger { display: flex; }

  .menu {
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-top: 1px solid #eee;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
  }
  .menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    margin-top:20px;
  }
}
