/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all 0.4s var(--easing);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(11, 15, 25, 0.85); /* Deep slate with transparency */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 70px;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }
.logo-fallback {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.logo-text { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); letter-spacing: 1px; }
.nav-brand { display: flex; flex-direction: column; gap: 2px; }
.brand-main { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 800; letter-spacing: 2px; color: var(--white); line-height: 1; }
.brand-sub { font-size: 9px; letter-spacing: 2px; color: var(--gold); font-weight: 600; text-transform: uppercase; }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--gray-mid); transition: color var(--transition);
  position: relative; padding: 8px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--easing); border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 28px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--gold); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--gold); }
