/*
Theme Name: Shaky Wheels Elementor
Theme URI: https://example.com/
Author: Shaky Wheels
Description: Lightweight, Elementor-ready theme for the Shaky Wheels Rally website.
Version: 1.0.0
License: GPLv2 or later
Text Domain: shaky-wheels-elementor
*/

/* Basic baseline styling (Elementor handles most layout) */
:root{
  --sw-bg:#0f0f0f;
  --sw-ink:#f4f1e6;
  --sw-accent:#d47a2a;
  --sw-muted:#b8b1a2;
  --sw-card:#171717;
}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: #0c0c0c;
  color: var(--sw-ink);
}

a{ color: var(--sw-accent); }
a:hover{ opacity:.9; }

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background: rgba(12,12,12,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand img{ height:42px; width:auto; display:block; border-radius:8px; }
.brand .title{
  font-weight:800;
  letter-spacing:.4px;
  color: var(--sw-ink);
}

.site-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.site-nav a{
  text-decoration:none;
  color: var(--sw-ink);
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
}
.site-nav a:hover{ background: rgba(255,255,255,.06); }

.site-footer{
  border-top: 1px solid rgba(255,255,255,.06);
  padding:28px 18px;
  background:#0c0c0c;
}
.footer-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  justify-content:space-between;
}
.footer-inner small{ color: var(--sw-muted); }

.content-wrap{
  min-height: calc(100vh - 140px);
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:18px;
}
