/* South Indy Soccer & Speed — shared styles */
:root {
  --pitch: #12244A;        /* navy */
  --pitch-dark: #0B1730;   /* deep navy */
  --lime: #12244A;         /* legacy alias -> navy (kept so headings/eyebrows read navy) */
  --red: #D42B2A;          /* red accent (lines, small details) */
  --red-dark: #B31F1E;
  --chalk: #FFFFFF;        /* white */
  --chalk-dim: #EEF1F6;    /* soft blue-grey */
  --slate: #1A2233;
  --grey: #5A6577;
  --gold: #D42B2A;         /* legacy alias -> red */
  --line: #D6DCE6;
  --shadow: 0 6px 30px rgba(18,36,74,0.10);
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--slate);
  background: var(--chalk);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
a { color: var(--pitch); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: 1120px; margin: 0 auto; }

/* ---- Header / nav ---- */
header {
  background: var(--pitch);
  color: var(--chalk);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 3px solid var(--red);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--pitch); border: 2px solid var(--red);
  display: grid; place-items: center;
  color: #fff; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px;
}
.brand-logo { width: 44px; height: 44px; display: block; }
.brand-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 22px; text-transform: uppercase; color: var(--chalk);
  letter-spacing: 0.02em; line-height: 1;
}
.brand-name span { color: #fff; }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--chalk); font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: #fff; color: var(--pitch) !important;
  padding: 9px 18px; border-radius: 40px; font-weight: 700;
  border: 2px solid var(--red);
}
.nav-cta:hover { background: var(--red); color: #fff !important; border-color: var(--red); }
.nav-toggle { display: none; background: none; border: 0; color: var(--chalk); font-size: 26px; cursor: pointer; }

/* ---- Hero ---- */
.hero {
  background:
    linear-gradient(rgba(11,23,48,0.88), rgba(11,23,48,0.94)),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 46px),
    var(--pitch-dark);
  color: var(--chalk);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -60px; bottom: -60px;
  width: 340px; height: 340px; border-radius: 50%;
  border: 40px solid var(--red); opacity: 0.10;
}
.eyebrow {
  display: inline-block; color: var(--red);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; font-size: 15px;
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(40px, 7vw, 78px); max-width: 14ch; }
.hero h1 span { color: #fff; border-bottom: 4px solid var(--red); padding-bottom: 2px; }
.hero p.lead { font-size: 20px; max-width: 52ch; margin: 20px 0 32px; color: var(--chalk-dim); }
.btn {
  display: inline-block; background: var(--pitch); color: #fff;
  padding: 15px 30px; border-radius: 44px; font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif; font-size: 19px;
  text-transform: uppercase; letter-spacing: 0.03em; border: 2px solid var(--red); cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--red); border-color: var(--red); }
.btn-outline {
  background: transparent; color: var(--chalk); border: 2px solid var(--chalk);
}
.btn-outline:hover { background: var(--chalk); color: var(--pitch); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Sections ---- */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 48px; }
.section-head .eyebrow { color: var(--red); }
.section-head h2 { font-size: clamp(30px, 5vw, 46px); }
.section-head p { color: var(--grey); font-size: 18px; margin-top: 12px; }
.bg-tint { background: var(--chalk-dim); }
.bg-pitch { background: var(--pitch); color: var(--chalk); }
.bg-pitch .section-head .eyebrow { color: var(--red); }
.bg-pitch .section-head p { color: var(--chalk-dim); }

/* ---- Cards / grids ---- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--chalk); border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
}
.card .icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--pitch);
  color: #fff; display: grid; place-items: center; font-size: 26px;
  margin-bottom: 16px;
}
.card h3 { font-size: 24px; margin-bottom: 8px; }
.card p { color: var(--grey); }
.price-tag {
  display: inline-block; margin-top: 14px; background: var(--chalk-dim);
  color: var(--pitch); font-weight: 700; padding: 5px 14px; border-radius: 30px;
  font-size: 15px;
}

/* ---- Feature list ---- */
.checklist { list-style: none; }
.checklist li { padding: 8px 0 8px 34px; position: relative; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px; background: var(--red); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 13px;
}

/* ---- Signup form ---- */
.signup { background: var(--pitch-dark); color: var(--chalk); }
.signup-card {
  background: var(--pitch); border: 1px solid rgba(212,43,42,0.4);
  border-top: 3px solid var(--red);
  border-radius: var(--radius); padding: 40px; max-width: 640px; margin: 0 auto;
}
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 14px; color: var(--chalk-dim); text-transform: uppercase; letter-spacing: 0.03em; }
input, select, textarea {
  padding: 13px 15px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06); color: var(--chalk); font-size: 16px; font-family: inherit;
}
input::placeholder, textarea::placeholder { color: rgba(245,247,242,0.5); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
select option { color: #111; }
.form-note { font-size: 13px; color: var(--chalk-dim); margin-top: 10px; text-align: center; }

/* ---- Devotional strip ---- */
.faith-strip {
  background: var(--pitch); color: #fff; text-align: center;
  padding: 26px 0; border-top: 3px solid var(--red); border-bottom: 3px solid var(--red);
}
.faith-strip p { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; }

/* ---- Articles ---- */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.article-card {
  background: var(--chalk); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform 0.15s ease;
}
.article-card:hover { transform: translateY(-4px); }
.article-card .thumb { height: 8px; background: var(--red); }
.article-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-card .tag { font-size: 12px; font-weight: 700; color: var(--pitch); text-transform: uppercase; letter-spacing: 0.08em; }
.article-card h3 { font-size: 22px; margin: 8px 0 10px; }
.article-card p { color: var(--grey); font-size: 15px; flex: 1; }
.article-card .read { margin-top: 14px; font-weight: 700; color: var(--pitch); text-transform: uppercase; font-size: 14px; letter-spacing: 0.03em; }

/* ---- Article page ---- */
.article-hero { background: var(--pitch); color: var(--chalk); padding: 60px 0 50px; }
.article-hero .eyebrow { color: var(--red); }
.article-hero h1 { font-size: clamp(32px, 5vw, 54px); max-width: 22ch; }
.article-body { padding: 56px 0; }
.article-body .container { max-width: 760px; }
.article-body h2 { font-size: 30px; margin: 36px 0 14px; color: var(--pitch); }
.article-body h3 { font-size: 23px; margin: 26px 0 10px; }
.article-body p { margin-bottom: 18px; font-size: 17px; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; }
.article-body li { margin-bottom: 8px; font-size: 17px; }
.article-body .callout {
  background: var(--chalk-dim); border-left: 5px solid var(--red);
  padding: 18px 22px; border-radius: 8px; margin: 24px 0; font-style: italic;
}

/* ---- Footer ---- */
footer { background: var(--pitch-dark); color: var(--chalk-dim); padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 34px; }
.footer-grid h4 { color: var(--chalk); font-size: 18px; margin-bottom: 14px; }
.footer-grid a { color: var(--chalk-dim); display: block; padding: 4px 0; }
.footer-grid a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 14px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--pitch); flex-direction: column; padding: 16px 5%;
    gap: 4px; border-bottom: 3px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; display: block; }
  .nav-toggle { display: block; }
  .grid-3, .article-grid, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* ---- Video hero (homepage) ---- */
.video-hero {
  background:
    linear-gradient(rgba(11,23,48,0.90), rgba(11,23,48,0.96)),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 46px),
    var(--pitch-dark);
  color: var(--chalk);
  padding: 44px 0 58px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.video-frame {
  width: min(86vw, 336px);
  margin: 0 auto 32px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--red);
  box-shadow: 0 26px 64px rgba(0,0,0,0.48);
  background: #000;
  position: relative;
  z-index: 1;
}
.video-frame video { display: block; width: 100%; height: auto; }
.video-hero h1 {
  font-size: clamp(31px, 5.2vw, 52px);
  max-width: 20ch;
  margin: 0 auto 14px;
  position: relative; z-index: 1;
}
.video-hero .summary {
  font-size: 19px; color: var(--chalk-dim);
  max-width: 50ch; margin: 0 auto 26px;
  position: relative; z-index: 1;
}
.video-hero .hero-btns { justify-content: center; position: relative; z-index: 1; }
@media (max-width: 700px) {
  .video-hero { padding: 30px 0 44px; }
  .video-frame { width: min(88vw, 320px); margin-bottom: 26px; }
  .video-hero .summary { font-size: 17px; }
}

/* ---- Membership ---- */
.membership {
  max-width: 600px; margin: 0 auto 26px;
  background: var(--pitch); color: var(--chalk);
  border-radius: var(--radius); border-top: 5px solid var(--red);
  padding: 34px 30px 30px; text-align: center;
  box-shadow: 0 18px 50px rgba(18,36,74,0.22);
}
.membership .amount {
  font-family: 'Barlow Condensed','Arial Narrow',sans-serif;
  font-weight: 700; font-size: 68px; line-height: 1; letter-spacing: 0.01em;
}
.membership .per { font-size: 17px; color: var(--chalk-dim); margin-top: 4px; }
.membership ul { list-style: none; text-align: left; max-width: 400px; margin: 24px auto 0; }
.membership li {
  position: relative; padding: 11px 0 11px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.14); font-size: 16.5px;
}
.membership li:last-child { border-bottom: 0; }
.membership li::before {
  content: "✓"; position: absolute; left: 0; top: 11px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 12px; line-height: 21px; text-align: center; font-weight: 700;
}
.spots-note {
  max-width: 560px; margin: 0 auto 8px; text-align: center;
  font-size: 16px; color: var(--grey);
  border-left: 3px solid var(--red); padding: 4px 0 4px 16px; text-align: left;
}
@media (max-width: 600px) {
  .membership { padding: 28px 22px 24px; }
  .membership .amount { font-size: 56px; }
}
