/* ════════════════════════════════════════════════
   DEBLOCK STUDIOS — navbar.css
   ════════════════════════════════════════════════ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 62px;
  background: transparent;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(17,17,17,.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

/* Logo */
.nav-logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .04em;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-logo .logo-bracket { color: var(--accent); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: #fff; }

/* CTA */
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 7px 18px;
  border-radius: 5px;
  font-size: .82rem !important;
  font-weight: 600 !important;
  transition: opacity .15s !important;
}
.nav-cta:hover { opacity: .85; color: #fff !important; }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}
.lang-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.lang-btn:hover { color: #fff; }
.lang-btn.active {
  color: var(--accent);
  border-color: rgba(249,115,22,.35);
}
.lang-sep {
  color: var(--border);
  font-size: .8rem;
  user-select: none;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 62px; left: 0; right: 0;
  background: rgba(17,17,17,.97);
  border-bottom: 1px solid var(--border);
  padding: 20px 48px 28px;
  z-index: 99;
  flex-direction: column;
  gap: 18px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: var(--muted);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  transition: color .15s;
  padding: 3px 0;
}
.nav-drawer a:hover { color: #fff; }

@media (max-width: 860px) {
  #navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
