/* ---------- Topbar ---------- */
.topbar {
  background: #2B1A0C;
  color: white;
  font-size: 14px;
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  flex-wrap: wrap;
}
/* .topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
} */
.topbar i {
  margin-right: 6px;
  color: #f1db2d;
}
.topbar .divider {
  margin: 0 10px;
  color: #ccc;
}

/* ---------- Navbar ---------- */
.navbar {
  background: white;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1200px; */
  margin: auto;
  width: 100%;
  padding: 4px 10px;
}

/* Push left and right correctly */
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  margin-left: -100px;
}

.nav-left .logo {
  height: 50px;
  width: 50px;
}

.nav-left .brand-title {
  font-size: 24px;
  font-weight: 700;
  /* color: #ff4500; */
  color: brown;
  text-transform: uppercase;
  margin: 0;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  gap: 25px;
}

.nav-link {
  font-weight: 600;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}
.nav-link:hover {
  color: #ff6600;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 100%;
  height: 3px;
  background: #ff6600;
  border-radius: 3px;
  transition: 0.35s;
}

/* X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* On Scroll Navbar */
.navbar.scrolled {
  background: #6E4E19;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.navbar.scrolled .nav-link {
  color: white;
}
.navbar.scrolled .nav-link:hover {
  color: #ffdd00;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-left {
  margin-left: 0;
}

  .hamburger {
    display: flex;
  }
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    text-align: center;
    padding: 12px 0;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .nav-right.active {
    display: flex;
  }
  .nav-link {
    padding: 12px 0;
    border-top: 1px solid #eee;
  }
}
