/* ============================================================
   READ TO THRIVE — Main Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --blue:        #b8442a;
  --blue-dark:   #8f3320;
  --blue-light:  #f9e8e3;
  --blue-mid:    #c95538;
  --orange:      #d4691e;
  --orange-light:#fdf3ea;
  --yellow:      #e6ac00;
  --green:       #2a7a4a;
  --teal:        #1a6b64;
  --teal-dark:   #144f4a;
  --teal-light:  #d4f0ec;
  --text:        #2c1a0e;
  --text-muted:  #6b5e54;
  --white:       #ffffff;
  --bg:          #fffbf5;
  --border:      #eeddd4;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:      0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 20px 40px rgba(0,0,0,.1);
  --transition:  0.2s ease;
  --font-body:   'Nunito', sans-serif;
  --font-serif:  'Lora', serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  line-height: 1.25;
  font-weight: 800;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; font-weight: 700; }

em { font-style: italic; font-family: var(--font-serif); color: var(--blue); }

.section-eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: .3rem .8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-eyebrow.light {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
}

.section-title { margin-bottom: 1rem; }
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-sub.light { color: rgba(255,255,255,.8); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(22,124,175,.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(22,124,175,.45);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
}

.btn-nav {
  background: var(--orange);
  color: var(--white);
  padding: .55rem 1.25rem;
  font-size: .875rem;
  box-shadow: 0 4px 12px rgba(249,115,22,.3);
}
.btn-nav:hover {
  background: #ea6a0a;
  box-shadow: 0 6px 18px rgba(249,115,22,.4);
}

.btn-light {
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.btn-light:hover {
  box-shadow: var(--shadow-lg);
  background: var(--blue-light);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-sm {
  padding: .5rem 1.2rem;
  font-size: .875rem;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 999px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}
.btn-sm:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(44,26,14,.65), rgba(44,26,14,.72)),
              url('images/Virtual_Prog.JPG') center center / cover no-repeat;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--yellow);
  top: -200px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--green);
  bottom: -150px; left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 300px; height: 300px;
  background: var(--white);
  top: 50%; left: 40%;
  animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 5rem;
  max-width: 760px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  padding: .3rem .8rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-content h1 em {
  color: #fde68a;
  font-family: var(--font-serif);
  font-style: italic;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-actions .btn-primary {
  background: #e6ac00;
  color: #2c1a0e;
  box-shadow: 0 4px 18px rgba(230,172,0,.4);
}
.hero-actions .btn-primary:hover {
  background: #c99500;
  color: #2c1a0e;
}
.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,.1);
}

/* Book stack illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.book-stack {
  position: relative;
  width: 280px;
  height: 280px;
}
.book {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: bookFloat 6s ease-in-out infinite;
}
.book-a {
  width: 160px; height: 200px;
  background: linear-gradient(135deg, #fef9c3, #fde68a);
  top: 10px; left: 60px;
  animation-delay: 0s;
  transform: rotate(-5deg);
}
.book-b {
  width: 130px; height: 160px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  top: 60px; left: 10px;
  animation-delay: 1s;
  transform: rotate(8deg);
  z-index: 2;
}
.book-c {
  width: 120px; height: 150px;
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  top: 90px; right: 20px;
  animation-delay: 2s;
  transform: rotate(-3deg);
}
@keyframes bookFloat {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--rot, 0deg)); }
}
.book-a { --rot: -5deg; }
.book-b { --rot: 8deg; }
.book-c { --rot: -3deg; }

.floating-word {
  position: absolute;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.15);
  padding: .2rem .6rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  animation: wordFloat 5s ease-in-out infinite;
}
.word-1 { top: 0; left: 0; animation-delay: 0s; }
.word-2 { top: 30px; right: 0; animation-delay: .8s; }
.word-3 { bottom: 40px; left: 0; animation-delay: 1.6s; }
.word-4 { bottom: 0; right: 20px; animation-delay: 2.4s; }
@keyframes wordFloat {
  0%, 100% { transform: translateY(0); opacity: .8; }
  50% { transform: translateY(-8px); opacity: 1; }
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }


/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.about-text p:last-of-type { margin-bottom: 1.75rem; }
.about-text strong { color: var(--text); }


/* ============================================================
   IMPACT
   ============================================================ */
.impact {
  background: linear-gradient(135deg, #144f4a 0%, #1a6b64 100%);
  position: relative;
  text-align: center;
  padding: 2rem 0 3rem;
}
.impact-wave-top, .impact-wave-bot { line-height: 0; }
.impact-wave-top svg, .impact-wave-bot svg { display: block; width: 100%; height: 60px; }

.impact-heading { margin-bottom: 2.5rem; }
.impact-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: .5rem;
}
.impact-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: .6rem auto 0;
}
.impact-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-top: .75rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.stat-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-top: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease, border-top-color 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.18);
  border-top-color: var(--yellow);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.stat-icon { font-size: 2rem; margin-bottom: .75rem; }
.stat-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-number span { font-size: 1.5rem; color: var(--yellow); }
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
}


/* ============================================================
   PROGRAMS
   ============================================================ */
.programs {
  background: var(--bg);
  text-align: center;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.program-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.program-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(249,115,22,.15);
}
.program-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.program-icon { font-size: 2.5rem; }
.program-card h3 { margin: 0; min-height: 3rem; }
.program-card p { color: var(--text-muted); font-size: .95rem; flex: 1; }

.program-img-wrap {
  width: 100%;
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  margin-bottom: .25rem;
}
.program-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.program-location {
  font-size: .8rem !important;
  font-weight: 700;
  color: var(--blue) !important;
  text-transform: uppercase;
  letter-spacing: .05em;
  flex: 0 !important;
  margin-bottom: -.25rem;
}

.program-features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.program-features li {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue-dark);
  padding-left: 1.2rem;
  position: relative;
}
.program-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
}

/* ---------- Photo Scroll Marquee ---------- */
.photo-scroll-section {
  background: var(--text);
  padding: 1.5rem 0;
  overflow: hidden;
}
.photo-scroll-wrap {
  overflow: hidden;
  width: 100%;
}
.photo-scroll-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: photoScroll 50s linear infinite;
}
.photo-scroll-wrap:hover .photo-scroll-track {
  animation-play-state: paused;
}
@keyframes photoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.photo-scroll-item {
  flex-shrink: 0;
  width: 220px;
  height: 290px;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-scroll-wrap:hover .photo-scroll-item img {
  transform: scale(1.04);
}

/* ============================================================
   WHY READING MATTERS
   ============================================================ */
.why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1.5rem;
}
.why-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-point-icon {
  flex-shrink: 0;
  font-size: 1.75rem;
  background: var(--blue-light);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-point h4 { margin-bottom: .25rem; color: var(--text); }
.why-point p { color: var(--text-muted); font-size: .95rem; }

.why-quote-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 3rem;
}
blockquote {
  background: var(--bg);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
}
blockquote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: .5rem;
  line-height: 1.5;
}
blockquote cite {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text-muted);
  font-style: normal;
}


/* ============================================================
   VOLUNTEER
   ============================================================ */
.volunteer {
  background: linear-gradient(135deg, #1a6b64, #218f87);
  position: relative;
  text-align: center;
  padding: 2rem 0 3rem;
}
.volunteer-wave-top, .volunteer-wave-bot { line-height: 0; }
.volunteer-wave-top svg, .volunteer-wave-bot svg { display: block; width: 100%; height: 60px; }

.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 2rem;
}

.volunteer-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-top: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease, border-top-color 0.25s ease, box-shadow 0.25s ease;
}
.volunteer-card:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-6px);
  border-top-color: var(--yellow);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.vol-step {
  width: 52px; height: 52px;
  background: var(--white);
  color: var(--blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 1rem;
}
.volunteer-card h3 { color: var(--white); margin-bottom: .5rem; }
.volunteer-card p { color: rgba(255,255,255,.8); font-size: .95rem; }

.volunteer-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   DONATE
   ============================================================ */
.donate { background: var(--bg); }

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.donate-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.donate-impact-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}
.donate-impact-item {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  font-size: .95rem;
}
.donate-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue);
  min-width: 3.5rem;
}

.donate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}
.donate-card h3 { margin-bottom: .5rem; }
.donate-card > p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: .95rem; }

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  margin-bottom: 1rem;
}
.amount-btn {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: .6rem;
  font-weight: 800;
  font-size: .95rem;
  color: var(--text);
  transition: all var(--transition);
}
.amount-btn:hover, .amount-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(22,124,175,.3);
}

.donate-custom { margin-bottom: 1rem; }
.donate-custom label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.custom-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.custom-input-wrap:focus-within { border-color: var(--blue); }
.custom-input-wrap span {
  padding: .6rem .75rem;
  background: var(--bg);
  color: var(--text-muted);
  font-weight: 700;
}
.custom-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: .6rem .75rem;
  font-size: .95rem;
  color: var(--text);
}

.donate-frequency {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
}
.radio-label input { accent-color: var(--blue); }

.donate-btn { width: 100%; justify-content: center; font-size: 1rem; margin-bottom: .75rem; }
.donate-note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
}
.donate-note a { color: var(--blue); font-weight: 600; }


/* ============================================================
   BOARD
   ============================================================ */
.board {
  background: var(--white);
  text-align: center;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem;
}
.board-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.board-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.board-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid var(--blue-light);
}
.board-card h4 { margin-bottom: .2rem; font-size: 1rem; }
.board-role {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}
.board-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }
.board-note {
  color: var(--text-muted);
  font-size: .9rem;
}
.board-note a { color: var(--blue); font-weight: 700; }

.board-read-more {
  background: none;
  border: none;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  padding: .25rem 0;
  margin-top: .5rem;
  transition: color var(--transition);
}
.board-read-more:hover { color: var(--blue-dark); text-decoration: underline; }

/* ---------- Program Card Actions ---------- */
.program-card-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: .25rem;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
}

/* ---------- Program Modals ---------- */
.prog-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.prog-modal[hidden] { display: none; }
.prog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
}
.prog-modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.prog-modal-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.prog-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.prog-modal-body {
  padding: 2rem 2.5rem 2.5rem;
}
.prog-modal-body h3 {
  font-size: 1.4rem;
  margin-bottom: .2rem;
}
.prog-modal-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin: 1.25rem 0 .4rem;
}
.prog-modal-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.prog-modal-body .program-location {
  margin-bottom: 1rem;
}
.prog-modal-cta {
  margin-top: 1.5rem;
}

/* ---------- Bio Modal ---------- */
.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.bio-modal[hidden] { display: none; }
.bio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
}
.bio-modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
}
.bio-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  transition: background var(--transition);
}
.bio-modal-close:hover { background: var(--border); }
.bio-modal-inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.bio-modal-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 4px solid var(--blue-light);
}
.bio-modal-text h3 { margin-bottom: .2rem; }
.bio-modal-text .board-role { margin-bottom: 1rem; }
.bio-modal-text p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: .75rem; }

/* ---------- Volunteer Faces ---------- */
.vol-faces {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
.vol-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.vol-face img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid rgba(255,255,255,.4);
  transition: border-color var(--transition), transform var(--transition);
}
.vol-face:hover img {
  border-color: var(--yellow);
  transform: scale(1.08);
}
.vol-face span {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}

/* ---------- Volunteer Sign-Up Form ---------- */
.vol-form-wrap {
  margin-top: 3rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  backdrop-filter: blur(8px);
  scroll-margin-top: 80px;
}
.vol-form-title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
}
.vol-form .form-group label { color: rgba(255,255,255,.9); }
.vol-form input,
.vol-form select,
.vol-form textarea {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  color: var(--white);
}
.vol-form input::placeholder,
.vol-form textarea::placeholder { color: rgba(255,255,255,.5); }
.vol-form input:focus,
.vol-form select:focus,
.vol-form textarea:focus {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.2);
  outline: none;
}
.vol-form select option { background: #1a6b64; color: var(--white); }
.vol-submit-btn { margin-top: .5rem; }

/* ---------- PayPal Donate ---------- */
.paypal-form { margin: 1rem 0 .5rem; }
.paypal-btn { width: 100%; justify-content: center; }

.donate-program-note[hidden] { display: none; }
.donate-program-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  padding: .6rem 1rem;
  margin-bottom: .75rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--teal-dark);
}
.donate-program-clear {
  background: none;
  border: none;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--teal-dark);
  opacity: .7;
  padding: 0;
  flex-shrink: 0;
}
.donate-program-clear:hover { opacity: 1; }


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: linear-gradient(135deg, #144f4a 0%, #1a6b64 100%);
  position: relative;
  padding: 2rem 0 3rem;
}
.contact-wave-top, .contact-wave-bot { line-height: 0; }
.contact-wave-top svg, .contact-wave-bot svg { display: block; width: 100%; height: 60px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.contact-info { color: var(--white); }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item h4 {
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: .2rem;
}
.contact-item a, .contact-item p {
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
}

.contact-social { margin-top: 2rem; }
.contact-social p {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  margin-bottom: .75rem;
}
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .875rem;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.social-link:hover {
  background: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

.contact-form {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  color: var(--white);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.4);
}
.form-group select option { background: var(--blue-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.2);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  margin-top: .75rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  background: rgba(34,197,94,.2);
  border-radius: var(--radius);
  padding: .75rem;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1c0f08;
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 1.5rem 2.5rem;
}

.footer-brand .logo { color: var(--white); margin-bottom: .75rem; }
.footer-brand .logo .logo-accent { color: var(--blue); }
.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: .5rem;
  max-width: 280px;
}
.footer-501c3 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--yellow);
  text-transform: uppercase;
}

.footer-links h4 {
  color: var(--white);
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact h4 {
  color: var(--white);
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-contact p {
  font-size: .9rem;
  margin-bottom: .4rem;
}
.footer-contact a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-donate-btn {
  display: inline-flex;
  margin-top: 1.25rem;
  font-size: .875rem;
  padding: .6rem 1.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .programs-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: .75rem 2rem;
    font-size: 1rem;
  }
  .nav-links .btn-nav { margin: .5rem 2rem; border-radius: var(--radius); display: inline-flex; }

  /* Hero */
  .hero-content { grid-template-columns: 1fr; gap: 2rem; padding-top: 2rem; text-align: center; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-sub { margin: 0 auto 1.75rem; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo { height: 280px; }

  /* Photo scroll — reduce item size on tablet */
  .photo-scroll-item { width: 180px; height: 240px; }

  /* Volunteer */
  .volunteer-grid { grid-template-columns: 1fr; max-width: 360px; margin: 2rem auto; }

  /* Donate */
  .donate-grid { grid-template-columns: 1fr; gap: 2rem; }
  .donate-amounts { grid-template-columns: repeat(2, 1fr); }

  /* Board */
  .board-grid { grid-template-columns: 1fr 1fr; max-width: 560px; margin: 2rem auto 1.5rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .donate-amounts { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .photo-scroll-item { width: 150px; height: 200px; }
}
