/* ============================================================
   Nolensville Social Club — Shared Styles
   v4.0 — March 2026
   ============================================================ */

:root {
  --navy: #1B365D;
  --navy-light: #2A4A7F;
  --navy-dark: #0F2340;
  --gold: #B8860B;
  --gold-light: #DAA520;
  --gold-bg: rgba(184, 134, 11, 0.06);
  --gold-border: rgba(184, 134, 11, 0.2);
  --red: #C62828;
  --red-bg: rgba(198, 40, 40, 0.05);
  --red-border: rgba(198, 40, 40, 0.12);
  --green: #2E7D32;
  --bg: #F7F8FA;
  --surface: #FFFFFF;
  --text: #1a1a1a;
  --text-dim: #555;
  --text-light: #888;
  --border: #e0e0e0;
  --border-light: #eee;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ============ HERO ============ */
.hero {
  background: var(--navy-dark);
  background-image: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: #fff;
  padding: 72px 24px 64px;
  text-align: center;
}
.hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.15;
}
.hero .tagline {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero .intro {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}
.hero-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-links {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-links a {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  text-decoration: none;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-links a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* ============ CONTAINER ============ */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAV ============ */
.nav-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-strip a {
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.nav-strip a:hover,
.nav-strip a.active {
  border-bottom-color: var(--gold);
}

/* ============ SECTIONS ============ */
.section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border-light);
}
.section:last-child {
  border-bottom: none;
}
.section-label {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.section h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}
.section h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.section .lead {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ============ STAT CARDS ============ */
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}
@media (max-width: 600px) {
  .stat-row { grid-template-columns: 1fr; }
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.stat-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.stat-card .number {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--red);
  line-height: 1.1;
}
.stat-card .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-top: 6px;
}
.stat-card .detail {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============ TABLES ============ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}
.data-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 8px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.data-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border-light);
}
.data-table tr:nth-child(even) td {
  background: #fafafa;
}
.data-table .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.data-table .highlight-red {
  color: var(--red);
  font-weight: 700;
}
.data-table .total-row td {
  font-weight: 700;
  border-top: 2px solid var(--navy);
  background: rgba(27, 54, 93, 0.04);
}

/* ============ CALLOUT ============ */
.callout {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 6px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.6;
}
.callout-red {
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  border-left: 4px solid var(--red);
}
.callout-green {
  background: rgba(46, 125, 50, 0.05);
  border: 1px solid rgba(46, 125, 50, 0.15);
  border-left: 4px solid var(--green);
}

/* ============ FACTS LIST ============ */
.facts-list {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.facts-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.55;
}
.facts-list li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-size: 12px;
  top: 8px;
}

/* ============ ACTION LIST ============ */
.action-list {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.action-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  line-height: 1.55;
}
.action-list li::before {
  content: "\2713";
  position: absolute;
  left: 4px;
  top: 9px;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

/* ============ QUESTIONS LIST ============ */
.question-list {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  counter-reset: q;
}
.question-list li {
  font-family: 'Source Serif 4', Georgia, serif;
  padding: 10px 0 10px 40px;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  counter-increment: q;
  font-style: italic;
  color: var(--navy-dark);
}
.question-list li::before {
  content: "Q" counter(q);
  position: absolute;
  left: 0;
  top: 9px;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
  font-size: 10px;
  font-style: normal;
  padding: 2px 6px;
  border-radius: 3px;
}

/* ============ FORM SECTION ============ */
.form-section {
  background: var(--surface);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 32px;
  margin: 24px 0;
}
.form-section h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-section .form-lead {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.form-group .optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 11px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0;
}
.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
}
.checkbox-group label {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
  cursor: pointer;
}

.submit-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.submit-btn:hover {
  background: var(--navy-light);
}
.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.form-note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 8px;
  text-align: center;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 40px 24px;
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
}
.site-footer strong {
  color: rgba(255,255,255,0.85);
}
.footer-links {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  text-decoration: none;
  margin: 0 8px;
}
.footer-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ============ SUCCESS MESSAGE ============ */
.success-message {
  display: none;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin: 16px 0;
}
.success-message h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--green);
  font-size: 18px;
  margin-bottom: 4px;
}
.success-message p {
  color: var(--text-dim);
  font-size: 14px;
}

/* ============ CLE VIDEO ============ */
.cle-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.cle-desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 12px;
  line-height: 1.55;
}
.cle-embed {
  margin: 0 0 36px 0;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.cle-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ PAGE CARDS (home page) ============ */
.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
@media (max-width: 600px) {
  .page-grid { grid-template-columns: 1fr; }
}
.page-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, border-color 0.2s;
  display: block;
}
.page-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.page-card .card-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.page-card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.page-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  margin: 40px 0;
}
.cta-section h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s;
}
.cta-btn:hover {
  background: var(--gold-light);
}

/* ============ CONTRAST SECTION ============ */
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
@media (max-width: 600px) {
  .contrast-grid { grid-template-columns: 1fr; }
}
.contrast-card {
  border-radius: 10px;
  padding: 24px;
}
.contrast-card.what-they-say {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
}
.contrast-card.what-the-record-shows {
  background: var(--red-bg);
  border: 1px solid var(--red-border);
}
.contrast-card h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contrast-card p, .contrast-card li {
  font-size: 13px;
  line-height: 1.55;
}

/* ============ RED FLAG CHECKLIST ============ */
.red-flag-list {
  list-style: none;
  padding: 0;
}
.red-flag-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  border-bottom: 1px solid var(--border-light);
}
.red-flag-list li:last-child {
  border-bottom: none;
}
.red-flag-list li::before {
  content: "\26A0";
  position: absolute;
  left: 4px;
  top: 10px;
  font-size: 14px;
}

/* ============ TEMPLATE LETTER ============ */
.template-letter {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin: 16px 0;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
}
.template-letter .placeholder {
  color: var(--red);
  font-weight: 700;
}

/* ============ STEP LIST ============ */
.step-list {
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.step-list li {
  padding: 12px 0 12px 48px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  counter-increment: step;
  border-bottom: 1px solid var(--border-light);
}
.step-list li:last-child {
  border-bottom: none;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* ============ STATE COMPARISON ============ */
.state-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13px;
}
.state-table th {
  background: var(--navy);
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.state-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}
.state-table tr:nth-child(even) td {
  background: #fafafa;
}
.state-table .yes { color: var(--green); font-weight: 700; }
.state-table .no { color: var(--red); font-weight: 700; }
.state-table .varies { color: var(--gold); font-weight: 600; }
