/* ── Shared Nav Bar ── */
/* Include on any page that uses nav-dropdown.js */

.dash-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 3rem; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.nav-left { display: flex; align-items: center; gap: 1.5rem; }
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 900; font-size: 1.1rem;
  color: #1A1714; letter-spacing: -0.02em; text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-logo span { color: #D4782E; }
.nav-logo img { height: 30px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-dash {
  background: none; border: 1px solid rgba(0,0,0,0.12); color: #7A6F64;
  font-family: 'DM Sans', -apple-system, sans-serif; font-size: 0.8rem; font-weight: 500;
  padding: 0.4rem 1.1rem; border-radius: 6px; cursor: pointer;
  transition: all 0.25s ease; text-decoration: none;
}
.nav-dash:hover { color: #1A1714; border-color: rgba(0,0,0,0.25); background: rgba(0,0,0,0.03); }
.member-email { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #7A6F64; letter-spacing: 0.01em; }

/* ── Dark mode nav ── */
html.dark-mode .dash-nav { background: #1a1814; border-bottom-color: rgba(255,255,255,0.08); }
html.dark-mode .nav-logo { color: #f0ebe4; }

/* ── Mobile nav ── */
@media (max-width: 768px) {
  .dash-nav { padding: 0 1rem; }
  .nav-logo { font-size: 0.95rem; }
  .nav-logo img { height: 24px; }
}
