/* ============================================================
   BIG-TIM-BIJW — Navigation
   ============================================================ */

/* ── Top Bar ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}

#navbar.scrolled {
  background: rgba(10, 12, 16, 0.96);
  border-bottom-color: var(--c-border);
}

#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* ── Logo ─────────────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
}

.nav-logo-text span {
  color: var(--c-gold);
}

/* ── Nav Links ────────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  list-style: none;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: .02em;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-text);
  background: rgba(255, 255, 255, .06);
}

.nav-links a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Nav Actions ──────────────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-lang a {
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-lang a:hover { color: var(--c-text-muted); background: rgba(255,255,255,.05); }
.nav-lang a.current { color: var(--c-gold); }
.nav-lang span { color: var(--c-border-light); font-size: .7rem; }

/* ── Mobile Toggle ────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
}
.nav-toggle:hover { background: rgba(255,255,255,.06); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text-muted);
  border-radius: 2px;
  transition: all var(--t-med) var(--ease);
}

/* ── Mobile Drawer ────────────────────────────────────────── */
#nav-drawer {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--c-bg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transform: translateX(100%);
  transition: transform var(--t-med) var(--ease);
  overflow-y: auto;
}

#nav-drawer.open {
  transform: translateX(0);
}

#nav-drawer .nav-links {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
}

#nav-drawer .nav-links a {
  width: 100%;
  font-size: 1.1rem;
  padding: 12px 16px;
}

#nav-drawer .nav-actions {
  flex-direction: column;
  align-items: flex-start;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}

/* Body offset for fixed nav */
body { padding-top: 70px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }
  .nav-toggle { display: flex; }
}
