/* Stem Cells With Love — stemcellswithlove.org */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1a2744;
  --navy-light:#243358;
  --gold:      #b89a63;
  --gold-light:#d4b87a;
  --warm:      #d93a0d;   /* matches logo primary red */
  --warm-light:#e8521e;
  --cream:     #fdf8f3;   /* warm off-white sections */
  --white:     #ffffff;
  --grey:      #fdf8f3;   /* was grey, now warm cream throughout */
  --text:      #2c2c2c;
  --muted:     #6b7280;
  --red:       #c0392b;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--text); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { height: 36px; }
.nav-logo span { color: var(--gold); font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 8px 20px; border-radius: 4px; font-weight: 700 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: .3s; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/military_veterans_group_1.jpg');
  background-size: cover; background-position: center top;
  filter: brightness(0.55) saturate(1.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(18,22,50,0.90) 0%, rgba(18,22,50,0.80) 40%, rgba(253,248,243,0.90) 65%, rgba(253,248,243,0.97) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px; padding: 80px 5%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,154,99,0.2); border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; color: white; line-height: 1.1; margin-bottom: 20px;
  font-family: Georgia, 'Times New Roman', serif;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88); margin-bottom: 36px; max-width: 580px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--warm); color: var(--white);
  padding: 15px 32px; border-radius: 4px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: background .2s, transform .1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--warm-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: white;
  padding: 15px 32px; border-radius: 4px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-navy {
  background: var(--navy); color: white;
  padding: 13px 28px; border-radius: 4px;
  font-weight: 600; font-size: 0.95rem;
  display: inline-block; border: 2px solid var(--navy);
  transition: background .2s;
}
.btn-navy:hover { background: var(--navy-light); }
.btn-gold-outline {
  background: transparent; color: var(--gold);
  padding: 13px 28px; border-radius: 4px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--gold);
  display: inline-block; transition: background .2s, color .2s;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  display: grid; grid-template-columns: repeat(3, 1fr);
  text-align: center; padding: 40px 5%;
  border-top: 3px solid var(--gold);
}
.stat-item { padding: 16px; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--gold); display: block; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.1); }

/* ── SECTIONS ── */
section { padding: 80px 5%; }
.section-light { background: var(--white); }
.section-grey { background: var(--cream); }  /* warm cream — grey removed */
.section-navy { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
  display: block;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-family: Georgia, serif; font-weight: 700;
  color: var(--navy); line-height: 1.2;
}
.section-navy .section-header h2 { color: white; }
.section-header p {
  font-size: 1.1rem; color: var(--muted);
  max-width: 620px; margin: 16px auto 0;
}
.section-navy .section-header p { color: rgba(255,255,255,0.75); }

/* ── WHO WE SERVE ── */
.serve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.serve-card {
  background: white; border-radius: 8px; padding: 32px 24px;
  text-align: center; border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform .2s, box-shadow .2s;
}
.serve-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.serve-icon { font-size: 2.8rem; margin-bottom: 16px; }
.serve-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.serve-card p { font-size: 0.9rem; color: var(--muted); }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }
.step { text-align: center; padding: 32px 24px; position: relative; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.step p { font-size: 0.875rem; color: rgba(255,255,255,0.72); }

/* ── TREATMENT AREAS ── */
.treatments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.treatment-card {
  background: white; border-radius: 8px;
  padding: 28px; border-left: 4px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.treatment-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.treatment-card p { font-size: 0.875rem; color: var(--muted); }

/* ── MISSION SPLIT ── */
.mission-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.mission-split img { border-radius: 8px; height: 420px; object-fit: cover; }
.mission-text h2 { font-family: Georgia, serif; font-size: 2rem; color: var(--navy); margin-bottom: 20px; }
.mission-text p { color: var(--muted); margin-bottom: 16px; font-size: 1rem; }
.mission-text ul { list-style: none; margin: 20px 0; }
.mission-text ul li { padding: 6px 0; color: var(--muted); font-size: 0.95rem; }
.mission-text ul li::before { content: "✓ "; color: var(--gold); font-weight: 700; }

/* ── DONATE SECTION ── */
.donate-section {
  background: var(--navy);
  text-align: center; padding: 80px 5%;
}
.donate-section h2 { font-family: Georgia, serif; font-size: 2.2rem; color: white; margin-bottom: 16px; }
.donate-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.donate-amounts { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.donate-amount {
  background: rgba(255,255,255,0.1); color: white;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 10px 24px; border-radius: 4px; font-weight: 600; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.donate-amount:hover, .donate-amount.active {
  background: var(--gold); border-color: var(--gold); color: var(--navy);
}

/* ── PROVIDER CTA ── */
.provider-section { text-align: center; }
.provider-section h2 { font-family: Georgia, serif; font-size: 2rem; color: var(--navy); margin-bottom: 16px; }
.provider-section p { color: var(--muted); max-width: 560px; margin: 0 auto 32px; font-size: 1rem; }

/* ── FORM PAGES ── */
.form-page { max-width: 700px; margin: 0 auto; padding: 80px 5%; }
.form-page h1 { font-family: Georgia, serif; font-size: 2rem; color: var(--navy); margin-bottom: 12px; }
.form-page .lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 40px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 6px; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d1d5db;
  border-radius: 4px; font-size: 1rem; font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,154,99,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit { margin-top: 8px; }
.form-submit .btn-primary { width: 100%; text-align: center; padding: 16px; font-size: 1.05rem; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; text-align: center; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy); padding: 60px 5% 48px;
  text-align: center;
}
.page-hero .breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.page-hero h1 { font-family: Georgia, serif; font-size: 2.4rem; color: white; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 12px auto 0; font-size: 1.05rem; }
.gold-bar { height: 4px; background: var(--gold); width: 60px; margin: 16px auto 0; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; align-items: start; max-width: 1000px; margin: 0 auto; }
.status-badge {
  background: #fef3cd; border: 1px solid #f0c040;
  color: #7d5a00; padding: 10px 16px; border-radius: 4px;
  font-size: 0.875rem; font-weight: 600; margin-bottom: 24px;
  display: inline-block;
}
.values-list { list-style: none; }
.values-list li { padding: 12px 0; border-bottom: 1px solid #e5e7eb; font-size: 0.95rem; color: var(--muted); }
.values-list li strong { color: var(--navy); }
.values-list li::before { content: "◆ "; color: var(--gold); font-size: 0.7rem; }

/* ── FOOTER ── */
footer {
  background: #0f1a2e; color: rgba(255,255,255,0.6);
  padding: 48px 5% 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { color: var(--gold); font-weight: 700; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 0.875rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; font-size: 0.8rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.florida-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 16px; font-style: italic; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-content { padding: 60px 5%; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .mission-split, .about-grid { grid-template-columns: 1fr; }
  .mission-split img { height: 260px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a, .hero-actions button { width: 100%; text-align: center; }
}


/* ── CHARITY WARMTH OVERRIDES ── */

/* Soften ALL sharp edges globally */
.serve-card, .treatment-card, .step, .donate-amount,
.btn-primary, .btn-outline, .btn-navy, .btn-gold-outline,
.hero-badge, input, select, textarea, .form-group input,
.form-group select, .form-group textarea {
  border-radius: 12px !important;
}

.btn-primary, .btn-outline, .btn-navy, .btn-gold-outline {
  border-radius: 50px !important;  /* pill shape for charity feel */
  padding: 14px 36px !important;
  letter-spacing: 0.3px;
}

/* Warm hover on cards */
.serve-card:hover {
  border-color: var(--warm) !important;
}

/* Serve icons bigger and warmer */
.serve-icon { 
  font-size: 3.2rem !important; 
  margin-bottom: 20px !important;
}

/* Softer section transitions */
section { 
  border-radius: 0;
}

/* Step numbers — warm circle */
.step-number {
  background: var(--warm) !important;
  color: white !important;
  width: 64px !important;
  height: 64px !important;
  font-size: 1.6rem !important;
  box-shadow: 0 4px 16px rgba(232,98,58,0.35) !important;
}

/* Donation amounts — pill shaped */
.donate-amount {
  border-radius: 50px !important;
  padding: 10px 28px !important;
  font-weight: 700 !important;
  border-width: 2px !important;
}
.donate-amount.active, .donate-amount:hover {
  background: var(--warm) !important;
  border-color: var(--warm) !important;
  color: white !important;
}

/* Nav CTA — warm */
.nav-cta {
  background: var(--warm) !important;
  color: white !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--warm-light) !important; }

/* Treatment cards — softer */
.treatment-card {
  border-left: none !important;
  border-top: 4px solid var(--warm) !important;
  border-radius: 16px !important;
}

/* Mission list bullets — warm */
.mission-text ul li::before { color: var(--warm) !important; }

/* Donate section — warmer bg */
.donate-section { 
  background: linear-gradient(135deg, #1a2744 0%, #2d1b0e 100%) !important; 
}

/* Serve grid cards — warm bottom border on hover */
.serve-card { border-radius: 16px !important; }

/* Hero section min-height — more breathing room */
.hero { min-height: 85vh !important; }

/* Stats bar label */
.stat-number { color: var(--warm) !important; }
