/* ── Ravens of Odin — Auto (light/dark) template ────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --t-bg: #ffffff;
  --t-bg-subtle: #f5f5f5;
  --t-text: #1a1a1a;
  --t-text-muted: #6b7280;
  --t-border: #e5e7eb;
  --t-accent: #1a1a1a;
  --t-nav-bg: rgba(255, 255, 255, 0.92);
  --t-nav-text: #1a1a1a;
  --t-nav-active: #000000;
  --t-nav-padding: 0 1.5rem;
  --t-nav-justify: flex-start;
  --t-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --t-font-size-base: 16px;
  --t-line-height: 1.7;
  --t-content-width: 680px;
  --story-pad: 1.5rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --t-bg: #111111;
    --t-bg-subtle: #1c1c1c;
    --t-text: #e5e5e5;
    --t-text-muted: #737373;
    --t-border: #2a2a2a;
    --t-accent: #a3a3a3;
    --t-nav-bg: rgba(17, 17, 17, 0.9);
    --t-nav-text: #e5e5e5;
    --t-nav-active: #ffffff;
    --page-bg: #111111;
  }
}

body { -webkit-font-smoothing: antialiased; }

/* ── Navigation ─────────────────────────────────────────────────────────── */

.rvns-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 0 1.5rem;
  height: 54px;
  background: var(--t-nav-bg);
  border-bottom: 1px solid var(--t-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.rvns-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t-text-muted);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.rvns-nav-link:hover {
  color: var(--t-nav-text);
  background: var(--t-bg-subtle);
}

.rvns-nav-link.active {
  color: var(--t-nav-active);
  font-weight: 600;
}
