/* Faithful Stays v2 — base styles. Build on top; do not override here. */
:root {
  --color-bg: #0f0f0f;
  --color-surface: #1a1a1a;
  --color-border: #2e2e2e;
  --color-text: #e4e4e4;
  --color-muted: #888;
  --color-accent: #c0a060;
  --color-positive: #4caf7d;
  --color-negative: #e05252;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;
  --font-sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.navbar .brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-accent);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--color-text); }

.content {
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
