@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito+Sans:wght@400;500;600;700;800&display=swap');

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  --navy:         #000814;
  --navy-700:     #001d3d;
  --navy-600:     #003566;
  --gold:         #ffc300;
  --gold-light:   #fff3cc;
  --white:        #ffffff;
  --off-white:    #fafaf8;
  --surface:      #ffffff;
  --surface-soft: #f6f4ef;
  --text-strong:  #000814;
  --text-body:    #1a1a2e;
  --text-muted:   #5a5a72;
  --border:       #e4e0d6;
  --shadow-sm:    0 2px 8px rgba(0,8,20,0.08);
  --shadow-md:    0 8px 28px rgba(0,8,20,0.13);
  --shadow-lg:    0 20px 52px rgba(0,8,20,0.20);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-full:  999px;
}

/* ── Reset & base ──────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-strong);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

/* ── Navigation ────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,8,20,0.97);
  border-bottom: 1px solid rgba(255,195,0,0.15);
  backdrop-filter: blur(14px);
  padding: 0 1.5rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  height: 80px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  transition: color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(255,195,0,0.10);
  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--gold);
  background: rgba(255,195,0,0.12);
}

/* Donate link stands out */
.nav-links a[href="donate.html"] {
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1.1rem;
  font-weight: 800;
}
.nav-links a[href="donate.html"]:hover {
  background: #ffd60a;
  color: var(--navy);
  transform: translateY(-2px);
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn-donate {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 2.1rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(255,195,0,0.40);
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-donate:hover {
  background: #ffd60a;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,195,0,0.55);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy-600);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--navy-600);
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--navy-600);
  color: #fff;
}

.btn-read-more {
  display: inline-block;
  color: var(--navy-600);
  font-weight: 700;
  font-size: 0.93rem;
  margin-top: 0.75rem;
  transition: color 0.2s;
}
.btn-read-more:hover { color: var(--navy-700); }

/* ── Hero / Banner ─────────────────────────────────────────────── */
.banner,
.about-hero,
.projects-hero,
.involve-hero,
.blog-hero,
.contact-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  overflow: hidden;
}

.banner {
  height: 88vh;
  min-height: 580px;
  background: linear-gradient(rgba(0,8,20,0.65), rgba(0,8,20,0.65)),
              url('../images/daddysphotos/PHOTO-2026-04-04-00-10-31.jpeg') center/cover no-repeat;
}

.about-hero {
  height: 72vh;
  min-height: 460px;
  background: linear-gradient(rgba(0,8,20,0.60), rgba(0,8,20,0.60)),
              url('../images/daddysphotos/PHOTO-2025-03-19-09-00-06.jpg') center/cover no-repeat;
}

.projects-hero {
  height: 70vh;
  min-height: 460px;
  background: linear-gradient(rgba(0,8,20,0.60), rgba(0,8,20,0.60)),
              url('../images/daddysphotos/PHOTO-2026-04-04-00-10-25.jpeg') top center/cover no-repeat;
}

.involve-hero {
  height: 62vh;
  min-height: 420px;
  background: linear-gradient(rgba(0,8,20,0.60), rgba(0,8,20,0.60)),
              url('../images/get-involved.jpg') center/cover no-repeat;
}

.blog-hero {
  height: 62vh;
  min-height: 420px;
  background: linear-gradient(rgba(0,8,20,0.60), rgba(0,8,20,0.60)),
              url('../images/daddysphotos/PHOTO-2026-04-04-00-10-40.jpeg') center/cover no-repeat;
}

.contact-hero {
  height: 62vh;
  min-height: 420px;
  background: linear-gradient(rgba(0,8,20,0.60), rgba(0,8,20,0.60)),
              url('../images/contact.png') center/cover no-repeat;
}

/* particle canvas */
#faith-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.banner-content,
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.banner-content h1,
.hero-content h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  color: #fff;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

/* gold accent rule under hero heading */
.banner-content h1::after,
.hero-content h1::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.85rem auto 0;
}

.banner .caption,
.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.90);
  margin-bottom: 2.4rem;
  margin-top: 1rem;
  text-shadow: 0 1px 5px rgba(0,0,0,0.35);
  line-height: 1.65;
}

/* ── Mission / Home ────────────────────────────────────────────── */
.mission-statement {
  padding: 5.5rem 2rem;
  background: var(--navy);
}

.mission-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.5rem;
}

.mission-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--navy-700);
}

.verse {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin: 1rem 0;
  text-align: left;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-block {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.mission-block h3 {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  color: var(--navy-700);
}

.mission-block p {
  color: var(--text-body);
  line-height: 1.78;
}

.mission-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.mission-block.highlight {
  border-color: rgba(255,195,0,0.30);
  background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
}

.impact-list {
  list-style: none;
  margin: 0.75rem 0 1.25rem;
}

.impact-list li {
  padding: 0.45rem 0;
  color: var(--text-body);
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action {
  grid-column: 1 / -1;
  background: linear-gradient(125deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #fff;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.call-to-action h1,
.call-to-action h2,
.call-to-action h3,
.call-to-action h4 {
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.call-to-action p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.call-to-action .btn-donate {
  background: var(--white);
  color: var(--navy-700);
  box-shadow: 0 6px 22px rgba(0,0,0,0.2);
}

.call-to-action .btn-donate:hover { background: var(--off-white); }

/* Progress bar */
.donation-progress { margin-top: 1.5rem; }

.progress-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy-600), var(--gold));
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1s ease;
}

.progress-amount {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-600);
  margin-top: 0.45rem;
}

/* ── Highlights (home bottom) ──────────────────────────────────── */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding: 3.5rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--navy-700);
}

.card ul {
  padding-left: 1.2rem;
  color: var(--text-body);
  line-height: 1.85;
}

.card p { color: var(--text-body); line-height: 1.75; }

/* ── About page ────────────────────────────────────────────────── */
.mission-section {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.mission-content { flex: 1; min-width: 280px; }

.mission-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--navy-700);
}

.mission-content p {
  font-size: 1.05rem;
  line-height: 1.82;
  margin-bottom: 1.25rem;
  color: var(--text-body);
}

blockquote {
  font-style: italic;
  color: var(--text-muted);
  background: var(--surface-soft);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin: 1.75rem 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.mission-image {
  flex: 1;
  min-width: 260px;
  max-width: 480px;
}

.mission-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* Timeline */
.history-section {
  padding: 5rem 2rem;
  background: var(--navy);
  text-align: center;
}

.history-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 3rem;
  color: var(--navy-700);
}

.timeline {
  max-width: 840px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 148px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--navy-600) 100%);
  opacity: 0.18;
  pointer-events: none;
}

/* Each row: [year label] [connector dot + card] */
.timeline-item {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 0;
  margin-bottom: 1.75rem;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  align-items: start;
  transition: none;
}

.timeline-item:hover {
  transform: none;
  box-shadow: none;
}

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  white-space: normal;
  text-align: right;
  padding: 1.55rem 1.4rem 1.55rem 0;
  line-height: 1.3;
  min-width: unset;
  position: relative;
}

/* dot on the line */
.timeline-year::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 1.75rem;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--surface-soft);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.75rem;
  margin-left: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
  color: var(--navy-700);
}

.timeline-content p {
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.72;
}

/* Team */
.team-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--gold-light);
}

.team-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 2rem;
  color: var(--navy-700);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.team-member {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-member h3 {
  font-size: 1.25rem;
  color: var(--navy-700);
  margin-bottom: 0.4rem;
}

.team-member p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── Projects page ─────────────────────────────────────────────── */
.projects-section {
  padding: 5rem 2rem;
  background: var(--navy);
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover img { transform: scale(1.04); }

.project-content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-content h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--navy-700);
}

.project-content p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-body);
  flex: 1;
}

.impact-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.impact-stats li {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--surface-soft);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.impact-stats strong {
  color: var(--navy-700);
  font-weight: 800;
}

/* ── Get Involved page ─────────────────────────────────────────── */
.involvement-section {
  padding: 5rem 2rem;
  background: var(--navy);
}

.involvement-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.option-card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.option-card .icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: bold;
}

.option-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--navy-700);
}

.option-card > p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.impact-story {
  background: var(--surface-soft);
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  margin-top: auto;
}

.impact-story h4 {
  font-size: 0.97rem;
  color: var(--navy-700);
  margin-bottom: 0.4rem;
}

.impact-story p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Blog page ─────────────────────────────────────────────────── */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover img { transform: scale(1.04); }

.blog-content {
  padding: 1.5rem;
  flex: 1;
}

.blog-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--navy-700);
}

.blog-content p {
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.72;
}

/* ── Donate page ───────────────────────────────────────────────── */
.donation-section {
  padding: 5rem 2rem;
  background: var(--surface-soft);
}

.donation-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.donation-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.donation-card h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--navy-700);
}

.security-note {
  color: #16a34a;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.45rem;
  color: var(--text-strong);
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-strong);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Nunito Sans', sans-serif;
}

input:focus, textarea:focus {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(0,53,102,0.18);
  outline: none;
}

.amount-presets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.amount-option {
  background: var(--surface-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-strong);
  font-family: 'Nunito Sans', sans-serif;
}

.amount-option:hover,
.amount-option.selected {
  border-color: var(--navy-600);
  color: var(--navy-600);
  background: rgba(0,53,102,0.07);
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.method-option {
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  color: var(--text-body);
}

.method-option:has(input[type="radio"]:checked) {
  border-color: var(--navy-600);
  background: rgba(0,53,102,0.07);
  color: var(--navy-600);
}

.method-option input[type="radio"] {
  accent-color: var(--navy-600);
  width: 16px;
  height: 16px;
}

.impact-sidebar {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 96px;
}

.impact-sidebar h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy-700);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-light);
}

.impact-item {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
  padding: 0.9rem 1rem;
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
  align-items: flex-start;
}

.impact-icon {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.impact-item p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

.form-feedback {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  display: none;
}

.form-feedback.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-feedback.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ── Contact page ──────────────────────────────────────────────── */
.contact-form-section {
  padding: 5rem 2rem;
  background: var(--surface-soft);
  text-align: center;
}

.form-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--navy-700);
}

.form-container > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

form label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--text-strong);
}

.btn-submit {
  background: var(--navy-600);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(255,195,0,0.30);
  font-family: 'Nunito Sans', sans-serif;
}

.btn-submit:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}

/* Events (legacy, kept for safety) */
.events-hero {
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(rgba(0,8,20,0.60), rgba(0,8,20,0.60)),
              url('../images/events.png') center/cover no-repeat;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.events-hero h1, .events-hero h2, .events-hero h3, .events-hero h4 { color: #fff; }

.events-section { padding: 5rem 2rem; background: var(--surface-soft); }

.events-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.event-date {
  background: linear-gradient(125deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  width: 100%;
}

.event-date .day { font-size: 2.4rem; font-weight: 800; }
.event-date .month { font-size: 1.2rem; }

.event-details { padding: 1.5rem; }
.event-details h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--navy-700); }
.event-details p { font-size: 1rem; line-height: 1.7; color: var(--text-body); margin-bottom: 0.75rem; }
.event-details strong { color: var(--navy-700); font-weight: 700; }

/* ── CTA section ───────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(125deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #fff;
  text-align: center;
  padding: 5.5rem 2rem;
}

.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section h4 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 660px;
  margin: 0 auto 2.4rem;
  font-size: 1.1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.88);
}

.cta-section .btn-donate {
  background: var(--gold);
  color: var(--navy);
  font-size: 1.05rem;
  padding: 1rem 2.6rem;
  box-shadow: 0 8px 28px rgba(255,195,0,0.40);
}

.cta-section .btn-donate:hover { background: #ffd60a; color: var(--navy); }

/* ── Footer ────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: #cbd5e1;
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.9rem;
}

footer p { margin-bottom: 0.75rem; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
}

.footer-links a {
  color: #93c5fd;
  font-size: 0.86rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #cbd5e1;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #1877f2;
  color: #fff;
}

/* ── Legal pages ───────────────────────────────────────────────── */
.legal-page {
  padding: 5rem 1.5rem;
  background: var(--surface-soft);
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

.legal-container h1 { margin-bottom: 1rem; }
.legal-container h2 { margin-top: 2rem; margin-bottom: 0.6rem; font-size: 1.25rem; }
.legal-container p, .legal-container li { line-height: 1.82; color: var(--text-body); }
.legal-container ul { margin-left: 1.25rem; }

/* ── Cookie banner ─────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: min(96%, 740px);
  z-index: 1000;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.cookie-banner-content { padding: 1.25rem 1.4rem; }
.cookie-banner h3 { margin-bottom: 0.35rem; font-size: 1.05rem; color: var(--text-strong); }
.cookie-banner p { margin-bottom: 0.9rem; font-size: 0.9rem; }

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-policy-link {
  font-weight: 700;
  color: var(--navy-600);
  text-decoration: underline;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .highlights { grid-template-columns: 1fr; }
  .donation-container { grid-template-columns: 1fr; }
  .impact-sidebar { position: static; }
}

@media (max-width: 768px) {
  nav { height: 68px; }
  .logo img { height: 56px; }

  .mobile-menu-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: -1.5rem;
    right: -1.5rem;
    flex-direction: column;
    gap: 0.2rem;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.25rem;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .nav-links a[href="donate.html"] {
    text-align: center;
    margin-top: 0.25rem;
  }

  .mission-section { flex-direction: column; gap: 2rem; padding: 3.5rem 1.5rem; }
  .mission-image { max-width: 100%; }

  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-year {
    text-align: left;
    padding: 0.5rem 0 0.25rem;
    font-size: 1rem;
  }
  .timeline-year::after { display: none; }
  .timeline-content { margin-left: 0; }

  .team-grid { grid-template-columns: 1fr 1fr; }
  .projects-container { grid-template-columns: 1fr; }
  .involvement-container { grid-template-columns: 1fr; }
  .events-container { grid-template-columns: 1fr; }

  .donation-card, .form-container { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }

  .btn-donate, .btn-secondary, .btn-submit {
    padding: 0.75rem 1.6rem;
    font-size: 0.95rem;
  }

  .cta-section { padding: 4rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}


/* ── Donation frequency toggle ─────────────────────────────────── */
.frequency-toggle-wrap {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.frequency-toggle {
  display: inline-flex;
  background: var(--surface-soft);
  border-radius: var(--radius-full);
  padding: 4px;
  border: 1.5px solid var(--border);
  margin-bottom: 0.75rem;
}

.freq-btn {
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.55rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s;
  color: var(--text-muted);
  font-family: 'Nunito Sans', sans-serif;
}

.freq-btn.active {
  background: var(--navy-600);
  color: #fff;
  box-shadow: 0 2px 10px rgba(255,195,0,0.30);
}

.freq-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Google Maps section ───────────────────────────────────────── */
.maps-section {
  padding: 5rem 2rem;
  background: var(--surface-soft);
  text-align: center;
}

.maps-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy-700);
  margin-bottom: 0.6rem;
}

.maps-section > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.25rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.maps-embed {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.maps-embed iframe {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .maps-embed iframe { height: 300px; }
  .freq-btn { padding: 0.5rem 1rem; font-size: 0.88rem; }
}

/* ── Color blocking: dark section text overrides ───────────────── */

/* mission-statement (home) on dark navy */
.mission-statement .mission-header h2 { color: #fff; }
.mission-statement .verse {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.80);
}
.mission-statement .mission-block {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.mission-statement .mission-block h3 { color: #fff; }
.mission-statement .mission-block p,
.mission-statement .impact-list li { color: rgba(255,255,255,0.82); }
.mission-statement .mission-block.highlight {
  background: rgba(0,29,61,0.55);
  border-color: rgba(255,195,0,0.35);
}
.mission-statement .progress-label { color: rgba(255,255,255,0.65); }
.mission-statement .progress-amount { color: var(--gold-light); }
.mission-statement .call-to-action {
  background: linear-gradient(135deg, #ffc300 0%, #e6b000 100%);
}
.mission-statement .call-to-action h3 { color: var(--navy); }
.mission-statement .call-to-action p { color: rgba(0,8,20,0.88); }
.mission-statement .call-to-action .btn-donate {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
}
.mission-statement .call-to-action .btn-donate:hover { background: var(--navy-700); }

/* history-section (about) on dark navy */
.history-section h2 { color: #fff; }
.history-section .timeline-content {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.history-section .timeline-content h3 { color: #fff; }
.history-section .timeline-content p { color: rgba(255,255,255,0.82); }
.history-section .timeline-year::after { border-color: var(--navy); }

/* projects-section on dark navy — cards stay white, they pop */
.projects-section .project-content h3 { color: var(--navy-700); }

/* involvement-section on dark navy */
.involvement-section .option-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.involvement-section .option-card h3 { color: #fff; }
.involvement-section .option-card > p { color: rgba(255,255,255,0.82); }
.involvement-section .option-card .icon { color: var(--gold-light); }
.involvement-section .impact-story { background: rgba(255,255,255,0.06); }
.involvement-section .impact-story h4 { color: rgba(255,255,255,0.90); }
.involvement-section .impact-story p { color: rgba(255,255,255,0.65); }

/* highlights wrapper (home bottom) */
.highlights-wrap { background: var(--off-white); }

/* promise section (about page) — warm break between dark sections */
.promise-section {
  background: var(--gold-light);
  padding: 5rem 2rem;
  text-align: center;
}

.promise-inner {
  max-width: 700px;
  margin: 0 auto;
}

.promise-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy-700);
  margin-bottom: 1rem;
}

.promise-section p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}

.promise-closing {
  font-weight: 700;
  margin-top: 1.25rem;
  color: var(--navy-700);
}
