/* =============================================================
   Fat Cat Rods — American Road Thunder Theme CSS v2.1.0
   Design: Dark charcoal #383838 | Fire red #CC1F1F | Chrome silver
   Fonts: Barlow Condensed (display) | Barlow (body) | IBM Plex Mono
   ============================================================= */

/* --- CSS Custom Properties --- */
:root {
  --fcr-bg:           #383838;
  --fcr-bg-card:      #444444;
  --fcr-bg-dark:      #2a2a2a;
  --fcr-red:          #CC1F1F;
  --fcr-red-dark:     #a01818;
  --fcr-red-light:    #e03030;
  --fcr-chrome:       #c0c0c0;
  --fcr-white:        #ffffff;
  --fcr-muted:        #aaaaaa;
  --fcr-border:       #555555;
  --fcr-font-display: 'Barlow Condensed', sans-serif;
  --fcr-font-body:    'Barlow', sans-serif;
  --fcr-font-mono:    'IBM Plex Mono', monospace;
  --fcr-radius:       2px;
  --fcr-max-width:    1200px;
  --fcr-header-h:     72px;
  --fcr-trust-h:      38px;
}

/* --- Base Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--fcr-bg);
  color: var(--fcr-white);
  font-family: var(--fcr-font-body);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
a { color: var(--fcr-red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--fcr-red-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fcr-font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--fcr-white);
  margin: 0 0 1rem;
}
p { margin: 0 0 1rem; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.fcr-trust-bar {
  background-color: var(--fcr-red);
  min-height: var(--fcr-trust-h);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fcr-trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: var(--fcr-max-width);
  width: 100%;
  padding: 0 1.5rem;
}
.fcr-trust-bar span,
.fcr-trust-bar a {
  font-family: var(--fcr-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fcr-white) !important;
}
.fcr-trust-bar a:hover { opacity: 0.85; }
.fcr-trust-sep { opacity: 0.5; }

/* ============================================================
   HEADER
   ============================================================ */
.fcr-header {
  background-color: var(--fcr-bg-dark);
  border-bottom: 1px solid var(--fcr-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.fcr-header__inner {
  max-width: var(--fcr-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--fcr-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.fcr-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.fcr-header__logo img {
  height: 48px;
  width: auto;
}
.fcr-header__site-name {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.fcr-header__title {
  font-family: var(--fcr-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fcr-white) !important;
  line-height: 1;
}
.fcr-header__title:hover { color: var(--fcr-red) !important; }
.fcr-header__tagline {
  font-family: var(--fcr-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fcr-muted);
}
.fcr-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.fcr-header__phone {
  font-family: var(--fcr-font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fcr-muted);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.fcr-nav { flex: 1; display: flex; justify-content: center; }
.fcr-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fcr-nav__menu li a,
.fcr-nav__menu li > a {
  font-family: var(--fcr-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fcr-white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--fcr-radius);
  transition: color 0.2s, background-color 0.2s;
  display: block;
}
.fcr-nav__menu li a:hover,
.fcr-nav__menu li.current-menu-item > a,
.fcr-nav__menu li.current_page_item > a {
  color: var(--fcr-red);
  background-color: rgba(204, 31, 31, 0.08);
}

/* Mobile nav toggle */
.fcr-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.fcr-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fcr-white);
  transition: transform 0.3s, opacity 0.3s;
}
.fcr-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fcr-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.fcr-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.fcr-btn {
  display: inline-block;
  background-color: var(--fcr-red);
  color: var(--fcr-white) !important;
  font-family: var(--fcr-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--fcr-radius);
  padding: 0.875rem 2rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  text-decoration: none;
}
.fcr-btn:hover {
  background-color: var(--fcr-red-dark) !important;
  color: var(--fcr-white) !important;
  transform: translateY(-1px);
}
.fcr-btn--sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.fcr-btn--outline {
  background-color: transparent !important;
  border: 2px solid var(--fcr-white);
  color: var(--fcr-white) !important;
}
.fcr-btn--outline:hover {
  background-color: var(--fcr-white) !important;
  color: var(--fcr-bg-dark) !important;
}
/* WordPress block buttons */
.wp-block-button__link {
  background-color: var(--fcr-red) !important;
  color: var(--fcr-white) !important;
  font-family: var(--fcr-font-display) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  border-radius: var(--fcr-radius) !important;
  transition: background-color 0.2s !important;
}
.wp-block-button__link:hover { background-color: var(--fcr-red-dark) !important; }
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent !important;
  border: 2px solid var(--fcr-white) !important;
  color: var(--fcr-white) !important;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
#page-content { min-height: 60vh; }
.fcr-main { background-color: var(--fcr-bg); }
.fcr-main--page,
.fcr-main--single { padding: 4rem 0; }
.fcr-main--home { padding: 0; }
.fcr-container {
  max-width: var(--fcr-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.fcr-container--narrow { max-width: 900px; }

/* Entry content block editor styles */
.fcr-entry-content { color: var(--fcr-white); }
.fcr-entry-content h1,
.fcr-entry-content h2,
.fcr-entry-content h3,
.fcr-entry-content h4 { color: var(--fcr-white); }
.fcr-entry-content p { color: var(--fcr-white); margin-bottom: 1.25rem; }
.fcr-entry-content a { color: var(--fcr-red); }
.fcr-entry-content ul,
.fcr-entry-content ol { color: var(--fcr-white); padding-left: 1.5rem; margin-bottom: 1.25rem; list-style: disc; }
.fcr-entry-content img { border-radius: var(--fcr-radius); margin: 1.5rem 0; }

/* Entry header */
.fcr-entry-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--fcr-border); }
.fcr-entry-title { font-size: clamp(2rem, 5vw, 3rem); color: var(--fcr-white); }
.fcr-entry-meta { font-family: var(--fcr-font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fcr-muted); }

/* Post cards */
.fcr-post-card {
  background-color: var(--fcr-bg-card);
  border: 1px solid var(--fcr-border);
  border-top: 3px solid var(--fcr-red);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: var(--fcr-radius);
}
.fcr-post-card__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.fcr-post-card__title a { color: var(--fcr-white); }
.fcr-post-card__title a:hover { color: var(--fcr-red); }
.fcr-post-card__meta { font-family: var(--fcr-font-mono); font-size: 0.75rem; color: var(--fcr-muted); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.fcr-post-card__excerpt { color: var(--fcr-muted); margin-bottom: 1.25rem; }

/* Post navigation */
.fcr-post-nav { display: flex; justify-content: space-between; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--fcr-border); }
.fcr-post-nav a { font-family: var(--fcr-font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; color: var(--fcr-red); }

/* 404 */
.fcr-404 { text-align: center; padding: 8rem 2rem; }
.fcr-404__number { font-family: var(--fcr-font-display); font-size: 8rem; font-weight: 900; color: var(--fcr-red); line-height: 1; margin-bottom: 1rem; }
.fcr-404__title { font-size: 2.5rem; margin-bottom: 1rem; }
.fcr-404__text { color: var(--fcr-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto 2rem; }

/* Archive */
.fcr-archive-header { margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--fcr-border); }
.fcr-archive-title { font-size: clamp(2rem, 5vw, 3rem); }
.fcr-archive-desc { color: var(--fcr-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.fcr-footer {
  background-color: var(--fcr-bg-dark);
  border-top: 1px solid var(--fcr-border);
  padding: 4rem 0 0;
}
.fcr-footer__inner {
  max-width: var(--fcr-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.fcr-footer__grid {
  display: grid;
  grid-template-columns: 30% 23% 23% 24%;
  gap: 3rem;
  margin-bottom: 3rem;
}
.fcr-footer__brand-name {
  font-family: var(--fcr-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fcr-white);
  margin-bottom: 0.5rem;
}
.fcr-footer__logo img { height: 48px; width: auto; margin-bottom: 0.75rem; }
.fcr-footer__tagline-red {
  font-family: var(--fcr-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fcr-red);
  margin-bottom: 1rem;
}
.fcr-footer__col p { color: var(--fcr-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.5rem; }
.fcr-footer__col a { color: var(--fcr-muted); }
.fcr-footer__col a:hover { color: var(--fcr-red); }
.fcr-link-red { color: var(--fcr-red) !important; }
.fcr-footer__heading {
  font-family: var(--fcr-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fcr-red);
  border-bottom: 1px solid var(--fcr-border);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.fcr-footer__list { list-style: none; padding: 0; margin: 0; }
.fcr-footer__list li { margin-bottom: 0.5rem; }
.fcr-footer__list li a {
  color: var(--fcr-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.fcr-footer__list li a:hover { color: var(--fcr-red); }
/* WordPress nav_menu in footer */
.fcr-footer__list .menu { list-style: none; padding: 0; margin: 0; }
.fcr-footer__list .menu li { margin-bottom: 0.5rem; }
.fcr-footer__list .menu li a { color: var(--fcr-muted); font-size: 0.9rem; }
.fcr-footer__list .menu li a:hover { color: var(--fcr-red); }

.fcr-footer__bottom {
  border-top: 1px solid var(--fcr-border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.fcr-footer__bottom p {
  font-family: var(--fcr-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fcr-muted);
  margin: 0;
}
.fcr-footer__bottom a { color: var(--fcr-red); }
.fcr-footer__bottom a:hover { color: var(--fcr-red-light); }

/* ============================================================
   CARDS & SECTIONS
   ============================================================ */
.fcr-card {
  background-color: var(--fcr-bg-card);
  border: 1px solid var(--fcr-border);
  border-top: 3px solid var(--fcr-red);
  padding: 2rem;
  border-radius: var(--fcr-radius);
}
.fcr-section { padding: 5rem 0; background-color: var(--fcr-bg); }
.fcr-section-dark { padding: 5rem 0; background-color: var(--fcr-bg-dark); }
.fcr-eyebrow {
  font-family: var(--fcr-font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fcr-red);
  display: block;
  margin-bottom: 0.75rem;
}

/* ============================================================
   WORDPRESS BLOCK OVERRIDES (dark theme)
   ============================================================ */
.wp-block-group { background-color: transparent; }
.wp-block-paragraph,
.wp-block-list,
.wp-block-quote { color: var(--fcr-white); }
.wp-block-heading { color: var(--fcr-white); }
.wp-block-cover { background-color: var(--fcr-bg-dark); }
.wp-block-separator { border-color: var(--fcr-border) !important; }

/* Elementor overrides */
.elementor-section,
.elementor-container { background-color: transparent; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .fcr-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .fcr-header__phone { display: none; }
}
@media (max-width: 768px) {
  .fcr-header__inner { padding: 0 1rem; }
  .fcr-nav { display: none; position: fixed; top: var(--fcr-header-h); left: 0; right: 0; background-color: var(--fcr-bg-dark); border-bottom: 1px solid var(--fcr-border); padding: 1.5rem; z-index: 999; }
  .fcr-nav.is-open { display: flex; }
  .fcr-nav__menu { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .fcr-nav__menu li { width: 100%; }
  .fcr-nav__menu li a { padding: 0.75rem 0; font-size: 1rem; border-bottom: 1px solid var(--fcr-border); display: block; }
  .fcr-nav-toggle { display: flex; }
  /* Trust bar — allow it to grow taller on mobile instead of clipping */
  .fcr-trust-bar { height: auto; min-height: var(--fcr-trust-h); padding: 0.5rem 1rem; }
  .fcr-trust-bar__inner { gap: 0.25rem 0.5rem; padding: 0; }
  .fcr-trust-bar span, .fcr-trust-bar a { font-size: 0.72rem; letter-spacing: 0.06em; }
  .fcr-trust-sep { display: none; }
  /* Header — hide tagline, shrink button so it fits */
  .fcr-header__tagline { display: none; }
  .fcr-header__title { font-size: 1.1rem; }
  .fcr-header__actions .fcr-btn { font-size: 0.7rem; padding: 0.5rem 0.9rem; letter-spacing: 0.06em; white-space: nowrap; }
  .fcr-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .fcr-footer__bottom { flex-direction: column; text-align: center; }
  .fcr-container { padding: 0 1rem; }
  .fcr-main--page, .fcr-main--single { padding: 2.5rem 0; }
}

