/* Bulls R Back — shared styles (base, header, footer, common components).
   Linked by index.html, about.html and org-chart.html before each page's own
   <style> block, so page-specific rules can still override where needed. */

:root {
  --red: #CE1141;
  --red-dark: #a50d34;
  --black: #0b0b0d;
  --ink: #16161a;
  --paper: #f6f6f8;
  --card: #ffffff;
  --line: #e3e3e8;
  --muted: #6b7280;
  --muted-2: #9aa1ad;
  --slate: #334155;
  --good: #1f9d55;
  --warn: #d98a00;
  --bad: #c1121f;
  --shadow: 0 1px 2px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}
a { color: inherit; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: var(--black);
  color: #fff;
  border-bottom: 3px solid var(--red);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: .5px; font-size: 1.35rem;
  text-decoration: none; color: #fff;
}
.brand .mark {
  font-size: .7rem; font-weight: 700; letter-spacing: 2px;
  color: var(--red); background: rgba(206,17,65,.14);
  padding: 3px 8px; border-radius: 6px; text-transform: uppercase;
}
.brand-logo { height: 34px; width: 214px; object-fit: cover; object-position: center; display: block; }
nav.links { display: flex; gap: 24px; }
nav.links a {
  color: #d7d7dd; text-decoration: none; font-size: .92rem; font-weight: 600;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
nav.links a:hover, nav.links a.active { color: #fff; border-bottom-color: var(--red); }
.nav-toggle { display: none; }

/* ---------- Secondary-page hero (about, org-chart) ---------- */
.page-hero { background: linear-gradient(180deg, #111114, #1b1b20); color: #fff; padding: 44px 0; }
.page-hero .eyebrow { font-size: .72rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red); }
.page-hero h1 { font-size: 2.2rem; margin: 6px 0 8px; }
.page-hero p { margin: 0; color: #c7c7d0; max-width: 640px; }

/* ---------- Button (shared component) ---------- */
.btn {
  display: inline-block; background: var(--red); color: #fff; text-decoration: none;
  font-weight: 800; padding: 16px 28px; border-radius: 12px; white-space: nowrap;
  transition: background .12s ease, transform .05s ease;
}
.btn:hover { background: var(--red-dark); }
.btn:active { transform: scale(.99); }

/* ---------- Footer ---------- */
footer.site { background: var(--black); color: #b7b7c0; padding: 36px 0; font-size: .85rem; }
footer.site .row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer.site a { color: #d7d7dd; }
.disclaimer { max-width: 620px; color: #8b8b96; line-height: 1.5; }

/* ---------- Shared responsive ---------- */
@media (max-width: 680px) {
  nav.links { display: none; }
  .page-hero h1 { font-size: 1.7rem; }
}
