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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: #4a5568;
}

/* ===========================
   Navigation
   =========================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #C2F6FE;
  border-bottom: 1px solid #e8ecf0;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e40af;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1e40af;
}

.nav-donate-btn {
  background-color: #1e40af !important;
  color: #ffffff !important;
  padding: 0.4rem 1.1rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.nav-donate-btn:hover {
  background-color: #1d3a9e !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  width: 36px;
  height: 36px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background-color: #1e40af;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

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

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #1e40af;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #1d3a9e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #1e40af;
  border: 2px solid #1e40af;
}

.btn-outline:hover {
  background-color: #1e40af;
  color: #ffffff;
  transform: translateY(-1px);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  padding: 7rem 2rem 6rem;
  text-align: center;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 60%);
}

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

.hero-badge {
  display: inline-block;
  background-color: #eff6ff;
  color: #1e40af;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  color: #111827;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: #1e40af;
}

.hero-tagline {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   About Section
   =========================== */
.about {
  padding: 5rem 2rem;
  background-color: #ffffff;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1e40af;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #111827;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 520px;
  margin-bottom: 3rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.card-icon {
  width: 42px;
  height: 42px;
  background-color: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #1e40af;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 1.05rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ===========================
   CTA Strip
   =========================== */
.cta-strip {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-strip p {
  color: #bfdbfe;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.btn-white {
  background-color: #ffffff;
  color: #1e40af;
  font-weight: 700;
}

.btn-white:hover {
  background-color: #eff6ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ===========================
   Donate — Financial Records
   =========================== */
.donate-records {
  padding: 0 2rem 4rem;
  background-color: #ffffff;
}

.donate-records-inner {
  max-width: 820px;
  margin: 0 auto;
}

.records-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  padding: 1.75rem 2rem;
  flex-wrap: wrap;
}

.records-icon {
  width: 48px;
  height: 48px;
  background-color: #dcfce7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.records-icon svg {
  width: 22px;
  height: 22px;
  stroke: #166534;
}

.records-content {
  flex: 1;
  min-width: 200px;
}

.records-content h3 {
  font-size: 1rem;
  color: #111827;
  margin-bottom: 0.35rem;
}

.records-content p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.records-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  flex-shrink: 0;
  color: #166534 !important;
  border-color: #166534 !important;
}

.records-btn:hover {
  background-color: #166534 !important;
  color: #ffffff !important;
}

.records-btn svg {
  width: 14px;
  height: 14px;
}

/* ===========================
   Donate Page
   =========================== */
.donate-hero {
  padding: 7rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 60%);
}

.donate-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.donate-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #111827;
  margin-bottom: 1.25rem;
}

.donate-hero h1 span {
  color: #1e40af;
}

.donate-hero p {
  font-size: 1.15rem;
  color: #6b7280;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-lg svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: #ffffff;
}

.donate-hero-note {
  margin-top: 1rem !important;
  font-size: 0.85rem !important;
  color: #9ca3af !important;
}

.donate-mission {
  padding: 5rem 2rem 2rem;
  background-color: #ffffff;
}

.donate-mission-inner {
  max-width: 720px;
  margin: 0 auto;
}

.donate-impact {
  padding: 3rem 2rem 5rem;
  background-color: #ffffff;
}

.donate-impact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 0;
}

.impact-card {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.impact-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.impact-icon {
  width: 42px;
  height: 42px;
  background-color: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.impact-icon svg {
  width: 22px;
  height: 22px;
  stroke: #1e40af;
}

.impact-card h3 {
  font-size: 1.05rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.impact-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.65;
}

.donate-transparency {
  padding: 4rem 2rem;
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}

.donate-transparency-inner {
  max-width: 680px;
  margin: 0 auto;
}

.transparency-icon {
  width: 52px;
  height: 52px;
  background-color: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.transparency-icon svg {
  width: 24px;
  height: 24px;
  stroke: #1e40af;
}

.donate-transparency h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #111827;
  margin-bottom: 1rem;
}

.donate-transparency p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.8;
}

/* ===========================
   Events — Listing Page
   =========================== */
.events-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 70%);
}

.events-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.events-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #111827;
  margin-bottom: 1rem;
}

.events-hero h1 span {
  color: #1e40af;
}

.events-hero p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 480px;
  margin: 0 auto;
}

.events-section {
  padding: 5rem 2rem;
  background-color: #ffffff;
}

.events-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 0;
}

.event-card {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.event-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.event-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #e5e7eb;
  text-decoration: none;
}

.event-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.event-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eff6ff;
}

.event-card-img-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: #93c5fd;
}

.event-card-img-count {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background-color: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.event-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.event-meta-date,
.event-meta-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}

.event-meta-date svg,
.event-meta-location svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke: #9ca3af;
}

.event-card-title {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.event-card-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.event-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.event-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e40af;
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.event-card-btn {
  align-self: flex-start;
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
}

/* ===========================
   Events — Detail Page
   =========================== */
.event-detail-hero {
  padding: 5rem 2rem 3.5rem;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 70%);
}

.event-detail-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.event-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e40af;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: gap 0.2s ease;
}

.event-back-link:hover {
  gap: 0.55rem;
}

.event-back-link svg {
  width: 16px;
  height: 16px;
}

.event-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.event-detail-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: #111827;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.event-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.event-detail-section {
  padding: 3.5rem 2rem 5rem;
  background-color: #ffffff;
}

.event-detail-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* Carousel */
.carousel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background-color: #111827;
  margin-bottom: 3rem;
  user-select: none;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: background 0.2s ease;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-prev { left: 0.75rem; }
.carousel-next { right: 0.75rem; }

.carousel-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background: #ffffff;
  transform: scale(1.25);
}

.carousel-counter {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* Description */
.event-detail-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.event-detail-body p {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.8;
}

.event-detail-body ul {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.event-detail-body ul li {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.7;
}

/* ===========================
   News Page
   =========================== */
.news-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 70%);
}

.news-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.news-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #111827;
  margin-bottom: 1rem;
}

.news-hero h1 span {
  color: #1e40af;
}

.news-hero p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 480px;
  margin: 0 auto;
}

.news-media {
  padding: 4rem 2rem 5rem;
  background-color: #ffffff;
}

.news-media-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.media-item {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.75rem;
}

.media-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.media-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.media-type-badge svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.media-type-video {
  background-color: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.media-type-video svg {
  stroke: #1e40af;
}

.media-type-audio {
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.media-type-audio svg {
  stroke: #166534;
}

.media-external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e40af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.media-external-link:hover {
  color: #1d3a9e;
  text-decoration: underline;
}

.media-external-link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.embed-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background-color: #111827;
}

.embed-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.embed-audio-wrapper {
  width: 100%;
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #111827;
}

.embed-audio-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  display: block;
}

/* ===========================
   Sign Up Page
   =========================== */
.signup-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 70%);
}

.signup-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #111827;
  margin-bottom: 1rem;
}

.signup-hero p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 480px;
  margin: 0 auto;
}

.form-section {
  padding: 3rem 2rem 6rem;
  max-width: 720px;
  margin: 0 auto;
}

.form-container {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
}

.form-placeholder {
  padding: 3rem 1rem;
  border: 2px dashed #bfdbfe;
  border-radius: 10px;
  background-color: #eff6ff;
  color: #1e40af;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.form-placeholder small {
  display: block;
  font-weight: 400;
  color: #6b7280;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

/* ===========================
   Footer
   =========================== */
footer {
  background-color: #111827;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-sub {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.footer-contact {
  font-size: 0.85rem;
  color: #6b7280;
}

.footer-social {
  margin-top: 1.25rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: #e1306c;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-contact a {
  color: #93c5fd;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #bfdbfe;
}

.footer-divider {
  border: none;
  border-top: 1px solid #1f2937;
  margin: 1.5rem 0;
}

.footer-copy {
  font-size: 0.8rem;
  color: #4b5563;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: #C2F6FE;
    border-top: 1px solid #a5f3fc;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 0.5rem 0 1rem;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

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

  .nav-links a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .nav-donate-btn {
    margin: 0.5rem 1.5rem 0 !important;
    display: block;
    text-align: center;
    padding: 0.6rem 1rem !important;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 5rem 1.25rem 4rem;
  }

  .about {
    padding: 3.5rem 1.25rem;
  }

  .cta-strip {
    padding: 3.5rem 1.25rem;
  }

  .donate-hero {
    padding: 5rem 1.25rem 4rem;
  }

  .donate-mission,
  .donate-impact {
    padding: 3rem 1.25rem;
  }

  .donate-transparency {
    padding: 3rem 1.25rem;
  }

  .events-hero {
    padding: 4rem 1.25rem 2.5rem;
  }

  .events-section {
    padding: 3.5rem 1.25rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-detail-hero {
    padding: 3.5rem 1.25rem 2.5rem;
  }

  .event-detail-section {
    padding: 2.5rem 1.25rem 4rem;
  }

  .news-hero {
    padding: 4rem 1.25rem 2.5rem;
  }

  .news-media {
    padding: 3rem 1.25rem 4rem;
  }

  .media-item {
    padding: 1.25rem;
  }

  .embed-audio-wrapper {
    height: 280px;
  }

  .signup-hero {
    padding: 4rem 1.25rem 2.5rem;
  }

  .form-section {
    padding: 2rem 1.25rem 4rem;
  }

  .form-container {
    padding: 2rem 1.25rem;
  }

  footer {
    padding: 2.5rem 1.25rem;
  }
}
