:root {
  --blue: #0057b7;
  --yellow: #ffd700;
  --dark: #0f172a;
  --text: #1f2937;
  --muted: #64748b;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, var(--blue), #1d4ed8);
  color: var(--white);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.fundraiser-banner {
  background: linear-gradient(90deg, var(--yellow), #ffe45c);
  color: #111827;
  padding: 0.7rem 1rem;
  text-align: center;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.fundraiser-banner span {
  font-weight: 800;
}

.fundraiser-banner a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #111827;
  color: white;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.fundraiser-banner a.facebook {
  background: #1877f2;
}

.fundraiser-banner a.x {
  background: #111827;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  color: var(--dark);
}

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--blue) 50%, var(--yellow) 50%);
  box-shadow: var(--shadow);
  border: 2px solid rgba(15, 23, 42, 0.06);
}

.brand-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 700;
  color: #334155;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-primary {
  background: var(--yellow);
  color: #111827;
  box-shadow: 0 10px 24px rgba(255, 215, 0, 0.35);
}

.btn-secondary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 87, 183, 0.22);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 215, 0, 0.24), transparent 25%),
    radial-gradient(circle at left center, rgba(0, 87, 183, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 5.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: rgba(0, 87, 183, 0.08);
  color: var(--blue);
  border: 1px solid rgba(0, 87, 183, 0.12);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1rem;
  max-width: 12ch;
}

.hero p {
  font-size: 1.1rem;
  color: #334155;
  max-width: 62ch;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

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

.stat-card,
.card,
.program,
.event,
.info-box,
.volunteer-box,
.story,
.contact-card,
.donation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.1rem;
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--dark);
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  padding: 1.4rem;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.hero-photo {
  height: 420px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.15)),
    url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1200&q=80') center/cover;
  position: relative;
  overflow: hidden;
}

.floating-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  font-weight: 800;
  color: var(--dark);
  box-shadow: var(--shadow);
}

section {
  padding: 5rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.mission-grid,
.program-grid,
.story-grid,
.events-grid,
.contact-grid,
.donation-grid {
  display: grid;
  gap: 1.25rem;
}

.mission-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.card {
  padding: 1.6rem;
}

.card h3,
.program h3,
.event h3,
.volunteer-box h3,
.donation-card h3,
.contact-card h3,
.story h3 {
  margin-bottom: 0.75rem;
  color: var(--dark);
  font-size: 1.2rem;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: #334155;
  font-weight: 600;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 87, 183, 0.1);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex: 0 0 24px;
  margin-top: 0.1rem;
}

.info-stack {
  display: grid;
  gap: 1rem;
}

.info-box {
  padding: 1.2rem;
}

.info-box strong {
  display: block;
  color: var(--dark);
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.info-box p,
.card p,
.program p,
.event p,
.volunteer-box p,
.story p,
.contact-card p,
.donation-card p {
  color: var(--muted);
}

.program-grid {
  grid-template-columns: repeat(3, 1fr);
}

.program {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.program::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.program-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
}

.story {
  padding: 1.5rem;
}

.story small {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.6rem;
}

.events-grid {
  grid-template-columns: repeat(3, 1fr);
}

.event {
  padding: 1.5rem;
}

.event-meta {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--blue);
  background: rgba(0, 87, 183, 0.08);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.volunteer-section {
  background: linear-gradient(180deg, #eff6ff, #f8fafc);
}

.volunteer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.volunteer-box {
  padding: 1.6rem;
}

.volunteer-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.volunteer-form input,
.volunteer-form textarea,
.newsletter-form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fff;
}

.volunteer-form textarea {
  min-height: 120px;
  resize: vertical;
}

.donation-grid {
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
}

.donation-card {
  padding: 1.6rem;
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.amount-btn {
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.95rem;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.amount-btn.active,
.amount-btn:hover {
  border-color: var(--blue);
  background: rgba(0, 87, 183, 0.06);
  color: var(--blue);
}

.impact-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.impact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--border);
  color: #334155;
  font-weight: 700;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.contact-card {
  padding: 1.6rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
  color: #334155;
  font-weight: 700;
}

.map-placeholder {
  min-height: 100%;
  background:
    linear-gradient(rgba(0, 87, 183, 0.08), rgba(255, 215, 0, 0.08)),
    url('https://images.unsplash.com/photo-1521295121783-8a321d551ad2?auto=format&fit=crop&w=1200&q=80') center/cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 280px;
  font-weight: 700;
  color: var(--dark);
}

.newsletter {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0;
}

.newsletter-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: #cbd5e1;
  max-width: 60ch;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  min-width: min(100%, 480px);
}

.newsletter-form input {
  flex: 1 1 240px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
}

footer {
  background: #020617;
  color: #cbd5e1;
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-note {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.95rem;
}

.hidden-mobile {
  display: inline-flex;
}

.paypal-form-inline {
  display: inline-flex;
}

.share-buttons {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.share-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: #334155;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.share-buttons a:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.share-buttons .facebook {
  background: #1877f2;
}

.share-buttons .x {
  background: #111827;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

@media (max-width: 1024px) {
  .hero-grid,
  .mission-grid,
  .volunteer-wrap,
  .donation-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .story-grid,
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav-links,
  .nav-actions .hidden-mobile {
    display: none;
  }

  .nav.open {
    flex-wrap: wrap;
  }

  .nav.open .nav-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.5rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-stats,
  .program-grid,
  .story-grid,
  .events-grid,
  .donation-options {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    min-width: 100%;
  }

  .hero-photo {
    height: 320px;
  }
}
