/* ============================================================
   SuperTrike V-8 Trikes — Dark Industrial Theme
   Static fallback — main styles are in assets/styles.css
   ============================================================ */

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

:root {
  --bg-dark: #0d0d0d;
  --bg-panel: #1a1a1a;
  --bg-card: #222222;
  --bg-accent: #2a2a2a;
  --text-primary: #e8e8e8;
  --text-secondary: #b0b0b0;
  --text-muted: #888888;
  --accent: #c4391a;
  --accent-hover: #e04a28;
  --accent-gold: #d4a843;
  --border: #333333;
  --container-width: 960px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--bg-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar {
  background: var(--bg-panel);
  border-bottom: 2px solid var(--accent);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer {
  background: var(--bg-panel);
  border-top: 2px solid var(--accent);
  color: var(--text-muted);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.85rem;
  line-height: 2;
}

.footer a { color: var(--text-secondary); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
