/* Centerfire Sports – Simple temporary site
   Colors matched to live site: gold #FBAC02, navy #001684 / #000e51, black */

:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-muted: #555;
  --navy: #001684;
  --navy-dark: #000e51;
  --gold: #FBAC02;
  --gold-dark: #c88902;
  --black: #0a0a0a;
  --border: #e0e0e0;
  --header-bg: #ffffff;
  --header-text: #1a1a1a;
  --radius: 4px;
  --max-width: 960px;
  --narrow: 720px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

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

.container.narrow {
  max-width: var(--narrow);
}

/* Header */
.site-header {
  background: var(--header-bg);
  color: var(--header-text);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.92;
}

.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  padding: 0.25rem 0;
  letter-spacing: 0.02em;
}

.nav a:hover,
.nav a.active {
  opacity: 1;
  color: var(--gold-dark);
  text-decoration: none;
}

/* Hero */
.hero {
  background: linear-gradient(165deg, #0a0a0a 0%, #000e51 55%, #001684 100%);
  color: #f5f5f5;
  padding: 3.25rem 0 2.75rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.hero .logo-large {
  margin: 0 auto 1.25rem;
  max-width: 320px;
}

.hero .logo-large img {
  width: 100%;
  height: auto;
  display: block;
}

.hero h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tagline {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
}

.location {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #0a0a0a;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #f5f5f5;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* Intro & content */
.intro {
  padding: 2.5rem 0;
}

.intro p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-weight: 300;
}

.intro p:last-child {
  margin-bottom: 0;
}

.page-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0 1.4rem;
}

.page-header h1 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
}

.page-header .subtitle {
  margin: 0.3rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
}

.content {
  padding: 2rem 0 3rem;
}

.content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.content p {
  margin: 0 0 1rem;
  font-weight: 300;
}

.content ul,
.content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  font-weight: 300;
}

.content li {
  margin-bottom: 0.5rem;
}

.checklist li,
.pricing li,
.steps li {
  margin-bottom: 0.65rem;
}

/* Cards */
.quick-links {
  padding: 0 0 3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.card:hover {
  border-color: var(--navy);
  border-top-color: var(--gold);
  box-shadow: 0 4px 14px rgba(0, 14, 81, 0.08);
  text-decoration: none;
  color: inherit;
}

.card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Info box */
.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0 0;
}

.info-box h3 {
  margin-top: 0;
  color: var(--navy);
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* Contact – single column */
.contact-list {
  margin-bottom: 2rem;
}

.contact-row {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row h2 {
  margin: 0 0 0.3rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-row p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 300;
}

.contact-row .note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--navy-dark);
  color: #c5c9d6;
  padding: 1.75rem 0;
  font-size: 0.85rem;
  text-align: center;
  font-weight: 300;
  border-top: 3px solid var(--gold);
}

.site-footer a {
  color: #e8eaf0;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer p {
  margin: 0.25rem 0;
}

.site-footer .fine-print {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img {
    height: 40px;
  }

  .nav {
    gap: 1rem;
  }

  .hero {
    padding: 2.25rem 0 2rem;
  }

  .hero .logo-large {
    max-width: 260px;
  }
}


/* Highlight callout on About */
.highlight-box {
  border-left-color: var(--gold);
  background: #fffbeb;
}
.highlight-box h3 {
  color: var(--navy);
}


/* Justified body text (not callout boxes — avoids odd mobile wrapping) */
.intro p,
.content p,
.content li,
.contact-row p {
  text-align: justify;
  text-justify: inter-word;
}

.info-box p {
  text-align: left;
}

/* Tighter spacing for About license callout so it sits with surrounding paragraphs */
.about-license {
  margin: 1.25rem 0;
}
.about-license h3 {
  margin-bottom: 0.4rem;
}
.about-license p {
  margin-bottom: 0;
}
