/* Southern Prospects Baseball — site styles */
:root {
  --navy: #0f1f45;
  --navy-dark: #0a1630;
  --navy-light: #1c3266;
  --royal: #2547d1;
  --royal-dark: #1a35a0;
  --gold: #c9962f;
  --silver: #9aa0a6;
  --bronze: #b5651d;
  --off-white: #f7f7f5;
  --ink: #1a1a2e;
  --line: #dfe2e8;
  --max-width: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

header.site-header {
  background: var(--navy-dark);
  border-bottom: 3px solid var(--royal);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.05rem; letter-spacing: 0.02em; }
.brand img { height: 40px; width: auto; }

nav.main-nav ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; flex-wrap: wrap; }

nav.main-nav a {
  color: #dfe6f5;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 9px 11px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
}

nav.main-nav a:hover, nav.main-nav a.active { background: var(--navy-light); color: #fff; }
.nav-donate { background: var(--royal) !important; color: #fff !important; }
.nav-donate:hover { background: var(--royal-dark) !important; }

.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

@media (max-width: 900px) {
  nav.main-nav { display: none; width: 100%; order: 3; }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; padding: 10px 0; }
  .nav-toggle { display: block; }
}

.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 60px 0 52px;
  text-align: center;
  border-bottom: 4px solid var(--royal);
}

.hero img.hero-logo { height: auto; width: min(300px, 62%); margin: 0 auto 18px; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.45)); }

.hero h1 { font-size: clamp(1.6rem, 4vw, 2.7rem); margin: 0 0 10px; letter-spacing: 0.02em; text-transform: uppercase; }
.hero p.tagline { font-size: 1.1rem; color: #c9d4ec; max-width: 640px; margin: 0 auto 26px; }

.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--royal); color: #fff; }
.btn-primary:hover { background: var(--royal-dark); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: #b1832a; }
.btn-navy-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-navy-outline:hover { background: var(--navy); color: #fff; }

section { padding: 52px 0; }
section.alt { background: #eef0f4; }
section.tight { padding: 34px 0; }

h2.section-title { text-align: center; font-size: clamp(1.35rem, 3vw, 1.9rem); text-transform: uppercase; letter-spacing: 0.03em; color: var(--navy); margin: 0 0 10px; }
h2.section-title.left { text-align: left; }
h3.sub-title { color: var(--navy); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.02em; margin: 30px 0 12px; }

.section-rule { width: 70px; height: 4px; background: var(--royal); margin: 0 auto 30px; border-radius: 2px; }
.section-rule.left { margin: 0 0 22px; }

.lede { max-width: 760px; margin: 0 auto 32px; text-align: center; color: #45495a; font-size: 1.03rem; }
.body-text { max-width: 800px; margin: 0 auto 18px; color: #33374a; font-size: 1rem; }
.body-text.narrow { max-width: 760px; }

/* Countdown ticker */
.ticker {
  background: var(--navy-dark);
  border: 2px solid var(--royal);
  border-radius: 14px;
  padding: 22px 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.ticker .ticker-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.ticker .ticker-session {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.ticker .ticker-clock {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ticker .clock-block {
  background: var(--navy-light);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 78px;
}
.ticker .clock-num { font-size: 1.9rem; font-weight: 800; font-variant-numeric: tabular-nums; line-height: 1; }
.ticker .clock-unit { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: #b9c2d9; margin-top: 6px; }
.ticker .ticker-sub { margin-top: 14px; font-size: 0.82rem; color: #a9b4cd; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; }

.why-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 26px 18px; text-align: center; }
.why-card .icon { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%; border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--navy); }
.why-card h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--navy); margin: 0 0 8px; }
.why-card p { font-size: 0.9rem; color: #55596a; margin: 0; }

/* Stats */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 36px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--royal); border-radius: 10px; padding: 24px 18px; text-align: center; }
.stat-num { font-size: 2.1rem; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 0.85rem; color: #55596a; text-transform: uppercase; letter-spacing: 0.02em; margin-top: 6px; }

/* Bullet lists inside prose */
ul.plain-list { max-width: 760px; margin: 0 auto 20px; padding-left: 22px; color: #33374a; }
ul.plain-list li { margin-bottom: 8px; }

/* Leadership */
.leader-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.leader-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 28px; }
.leader-card .leader-name { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.leader-card .leader-title { font-size: 0.88rem; color: var(--royal); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 12px; }
.leader-card p { font-size: 0.93rem; color: #3c4050; margin: 0 0 10px; }

/* Tier / sponsor cards (reused) */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.tier-card { background: #fff; border: 2px solid var(--line); border-top: 6px solid var(--navy); border-radius: 10px; padding: 26px 22px; display: flex; flex-direction: column; }
.tier-card.gold { border-top-color: var(--gold); }
.tier-card.silver { border-top-color: var(--silver); }
.tier-card.bronze { border-top-color: var(--bronze); }
.tier-name { font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; font-size: 1.05rem; color: var(--navy); }
.tier-price { font-size: 1.9rem; font-weight: 800; margin: 4px 0 16px; color: var(--ink); }
.tier-card ul { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.tier-card li { padding: 6px 0; font-size: 0.92rem; color: #3c4050; border-bottom: 1px dashed var(--line); }
.tier-card li::before { content: "\2713  "; color: var(--royal); font-weight: 700; }
.tier-tag { text-align: center; padding: 8px; border-radius: 6px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; background: var(--navy); color: #fff; }
.tier-card.gold .tier-tag { background: var(--gold); color: var(--navy-dark); }
.tier-card.silver .tier-tag { background: var(--silver); color: #fff; }
.tier-card.bronze .tier-tag { background: var(--bronze); color: #fff; }

/* Sponsor list (current supporters) */
.sponsor-logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
.sponsor-name-chip { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px 20px; font-weight: 700; color: var(--navy); font-size: 0.95rem; text-align: center; min-width: 200px; }
.supporter-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; max-width: 700px; margin: 0 auto; }
.supporter-cols ul { list-style: none; padding: 0; margin: 0; }
.supporter-cols li { padding: 7px 0; border-bottom: 1px dashed var(--line); font-weight: 600; color: #33374a; }

/* Donate */
.donate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
.donate-option { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px 20px; text-align: center; }
.donate-option .platform { font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px; }
.donate-option .handle { font-size: 1.05rem; color: var(--royal); font-weight: 700; margin-bottom: 16px; }

.notice-box { background: #fff8e6; border: 1px solid #ecd48a; color: #6b5310; border-radius: 8px; padding: 14px 18px; font-size: 0.92rem; max-width: 760px; margin: 0 auto 32px; }
.tax-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; }

/* Tables */
table.data-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
table.data-table th { background: var(--navy); color: #fff; text-align: left; padding: 12px 14px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; }
table.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
table.data-table tr:last-child td { border-bottom: none; }
table.data-table tr:nth-child(even) td { background: #f8f9fb; }
.table-wrap { overflow-x: auto; margin-bottom: 36px; }

/* Budget categories */
.budget-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 20px; }
.budget-card { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--navy); border-radius: 8px; padding: 20px; }
.budget-amount { font-size: 1.5rem; font-weight: 800; color: var(--royal); margin-bottom: 4px; }
.budget-card h4 { margin: 0 0 8px; color: var(--navy); font-size: 0.98rem; }
.budget-card p { margin: 0; font-size: 0.9rem; color: #45495a; }

/* Embed containers */
.embed-box { background: #fff; border: 1px dashed #7fa3d6; border-radius: 10px; padding: 16px; text-align: center; margin-bottom: 30px; overflow-x: auto; overflow-y: visible; box-sizing: border-box; }
.embed-box.narrow { max-width: 460px; margin-left: auto; margin-right: auto; }
.embed-box iframe { width: 100%; border: none; border-radius: 8px; }
.embed-box > div { width: 100%; min-width: 0; box-sizing: border-box; }
.container-wide { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.social-embed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.follow-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 30px; text-align: center; }
.follow-card .platform-icon { font-size: 2.4rem; margin-bottom: 10px; }
.follow-card h3 { color: var(--navy); margin: 0 0 6px; }
.follow-card p { color: #55596a; font-size: 0.92rem; margin: 0 0 18px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
form.contact-form label { display: block; font-weight: 600; font-size: 0.88rem; margin: 14px 0 6px; color: var(--navy); }
form.contact-form input, form.contact-form textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 6px; font-family: inherit; font-size: 0.95rem; }
form.contact-form textarea { resize: vertical; min-height: 120px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 26px; }
.info-card h3 { color: var(--navy); margin-top: 0; font-size: 1rem; text-transform: uppercase; }
.info-card p { margin: 6px 0; font-size: 0.95rem; }
.social-row { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.social-row a { border: 1px solid var(--line); border-radius: 6px; padding: 8px 14px; font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.social-row a:hover { background: var(--navy); color: #fff; }

footer.site-footer { background: var(--navy-dark); color: #b9c2d9; padding: 34px 0 24px; margin-top: 40px; border-top: 4px solid var(--royal); text-align: center; font-size: 0.85rem; }
footer.site-footer .foot-links { display: flex; justify-content: center; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
footer.site-footer a { color: #dfe6f5; }
footer.site-footer a:hover { color: #fff; text-decoration: underline; }

.placeholder-note { background: #eaf1ff; border: 1px dashed #7fa3d6; color: #1d3c66; font-size: 0.85rem; padding: 10px 14px; border-radius: 6px; margin-bottom: 20px; }

/* Impact ticker (hours + market value delivered) */
.impact-ticker {
  background: var(--navy-dark);
  border: 2px solid var(--royal);
  border-radius: 14px;
  padding: 26px 24px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.impact-ticker .ticker-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.impact-ticker .ticker-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.impact-ticker .impact-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}
.impact-ticker .impact-block { min-width: 220px; }
.impact-ticker .impact-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a9b4cd;
  margin-bottom: 8px;
}
.impact-ticker .hms-row {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.impact-ticker .hms-block {
  background: var(--navy-light);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 64px;
}
.impact-ticker .hms-num { font-size: 1.7rem; font-weight: 800; font-variant-numeric: tabular-nums; line-height: 1; }
.impact-ticker .hms-unit { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.04em; color: #b9c2d9; margin-top: 5px; }
.impact-ticker .value-num {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  background: var(--navy-light);
  border-radius: 10px;
  padding: 14px 20px;
  display: inline-block;
}
.impact-ticker .ticker-sub { margin-top: 18px; font-size: 0.8rem; color: #a9b4cd; }
