/* ============================================================
   PROGRAMS HERO SECTION
   ============================================================ */

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 6vw, 6rem);
  min-height: auto;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.programs-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto;
}

.programs-content .section-title {
  margin-bottom: 0.1rem;
}

.programs-content .section-motto {
  max-width: 700px;
  margin: 0 auto 0.25rem;
}

.programs-content .section-paragraph {
  max-width: 580px;
  margin: 0 auto;
  font-weight: 400;
}

/* ============================================================
   TABLET (769px – 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section {
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  }

  .programs-content {
    max-width: 90%;
  }

  .programs-content .section-paragraph {
    max-width: 100%;
  }
}

/* ============================================================
   MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 1.5rem;
  }

  .programs-content {
    gap: 0.75rem;
    max-width: 100%;
  }

  .programs-content .section-paragraph {
    max-width: 100%;
  }
}

/* ============================================================
   EXTRA SMALL (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-section {
    padding: 1.5rem 1rem;
  }

  .programs-content .section-motto {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
  }

  .programs-content .section-paragraph {
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  }
}

/* ============================================================
   PROGRAMS CARDS SECTION
   ============================================================ */

.programs-section {
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 6vw, 6rem);
  background-color: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  min-height: auto;
}

.programs-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Individual Card ── */
.program-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(1.25rem, 2vw, 2rem);
  background: var(--secondary-background);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(60, 53, 47, 0.04);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(60, 53, 47, 0.10);
}

/* ── Card Title ── */
.program-card .program-title {
  font-family: var(--font-serif);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  color: var(--primary-pink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.25rem 0;
}

/* ── Card Subtitle ── */
.program-card .program-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 600;
  color: var(--black-text);
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
}

/* ── Card Description ── */
.program-card .program-description {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 400;
  color: var(--black-text);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* ============================================================
   TABLET (769px – 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .programs-section {
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  }

  .programs-cards {
    gap: clamp(1.25rem, 2vw, 1.75rem);
    max-width: 100%;
  }

  .program-card {
    padding: clamp(1.25rem, 2vw, 1.75rem);
  }

  .program-card .program-title {
    font-size: clamp(0.7rem, 0.9vw, 0.8125rem);
  }

  .program-card .program-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
  }

  .program-card .program-description {
    font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  }
}

/* ============================================================
   MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .programs-section {
    padding: 2rem 1.5rem;
  }

  .programs-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 100%;
  }

  .program-card {
    padding: 1.5rem;
  }

  .program-card .program-title {
    font-size: 0.75rem;
  }

  .program-card .program-subtitle {
    font-size: 1.125rem;
  }

  .program-card .program-description {
    font-size: 0.875rem;
  }
}

/* ============================================================
   EXTRA SMALL (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .programs-section {
    padding: 1.5rem 1rem;
  }

  .programs-cards {
    gap: 1rem;
  }

  .program-card {
    padding: 1.25rem;
  }

  .program-card .program-title {
    font-size: 0.6875rem;
  }

  .program-card .program-subtitle {
    font-size: 1rem;
  }

  .program-card .program-description {
    font-size: 0.8125rem;
  }
}

/* ============================================================
   DONATE SECTION
   ============================================================ */

.ready-section {
  padding: clamp(1rem, 2vw, 2rem) clamp(2rem, 2vw, 2rem);
  background-color: var(--tertiary-background);
  margin: 0 auto;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ready-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto;
}

.ready-content .section-motto {
  color: var(--white-text);
}

.ready-content .section-paragraph {
  color: var(--white-text);
  max-width: 580px;
}

.support-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ============================================================
   TABLET (769px – 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .ready-section {
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  }

  .ready-content {
    max-width: 90%;
  }

  .ready-content .section-paragraph {
    max-width: 100%;
  }

  .pink-btn {
    font-size: 18px;
    padding: 8px 28px;
  }
}

/* ============================================================
   MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .ready-section {
    padding: 2rem 1.5rem;
  }

  .ready-content {
    gap: 0.75rem;
    max-width: 100%;
  }

  .ready-content .section-paragraph {
    max-width: 100%;
  }

  .support-btns {
    justify-content: center;
    width: 100%;
  }

  .pink-btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
  }
}

/* ============================================================
   EXTRA SMALL (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .ready-section {
    padding: 1.5rem 1rem;
  }

  .support-btns {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .pink-btn {
    min-width: 120px;
    max-width: 100%;
    width: 100%;
  }
}