/* ═══════════════════════════════════════════════════════
   InnoDexis — Shared Navbar Styles
   Used by all pages. CSS variables (--cream, --purple, etc.)
   are defined in each page's own :root block.
═══════════════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(15,10,30,.08); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.nav-logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
}
.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

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

.nav-link {
  font-family: 'Syne', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink2);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.nav-link:hover { background: var(--purple-dim); color: var(--purple); }
.nav-link.active { color: var(--purple); font-weight: 700; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-btn-ghost {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  background: var(--purple);
  transition: background .18s;
  cursor: pointer;
}
.nav-btn-ghost:hover { background: var(--purple2); }

.nav-btn-primary {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  background: transparent;
  color: var(--ink2);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  border: 1.5px solid var(--ink3);
  transition: background .18s, color .18s;
  cursor: pointer;
}
.nav-btn-primary:hover { border-color: var(--ink); color: var(--ink); background: rgba(15,10,30,.04); }

@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links-wrap { display: none; }
  .nav-actions .nav-btn-ghost { display: none; }
}
@media (max-width: 600px) {
  .nav-actions { display: none; }
}
