/*
Theme Name: Let It Bee Theme
Author: Prescott
*//* =========================================================
   Let It Bee Foundation Canada — Global Stylesheet
   ========================================================= */

/* --- CSS Variables ---------------------------------------- */
:root {
  --background: hsl(0, 0%, 0%);
  --foreground: hsl(0, 0%, 100%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 0%);
  --primary: hsl(51, 100%, 50%);
  --primary-foreground: hsl(0, 0%, 0%);
  --secondary: hsl(0, 0%, 12%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(0, 0%, 20%);
  --muted-foreground: hsl(0, 0%, 70%);
  --border: hsl(0, 0%, 20%);
  --destructive: hsl(0, 84%, 60%);
  --radius: 0.5rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Layout Utility --------------------------------------- */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.container-sm {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container-sm { padding: 0 1.5rem; } }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* --- Animations ------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.fade-in    { animation: fadeIn 0.6s ease forwards; }
.scale-in   { animation: scaleIn 0.5s ease forwards; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.header-logo img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
}
.header-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.02em;
  display: none;
}
@media (min-width: 640px) { .header-logo-text { display: block; } }

.header-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .header-nav { display: flex; } }

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s, background-color 0.2s;
}
.nav-link:hover { color: var(--primary); background-color: var(--secondary); }
.nav-link.active { color: var(--primary); background-color: rgba(255, 215, 0, 0.1); }

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .header-actions { display: flex; } }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: var(--foreground);
  transition: background-color 0.2s;
}
.menu-toggle:hover { background-color: var(--secondary); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--background);
  padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background-color 0.2s;
}
.mobile-nav-link:hover { background-color: var(--secondary); }
.mobile-nav-link.active { color: var(--primary); background-color: rgba(255, 215, 0, 0.1); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  transition: background-color 0.2s, opacity 0.2s, transform 0.1s;
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover { background-color: hsl(51, 100%, 44%); }

.btn-primary-lg {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius);
}
.btn-primary-lg:hover { background-color: hsl(51, 100%, 44%); }

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-outline:hover { background-color: var(--secondary); }

.btn-outline-lg {
  background-color: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
}
.btn-outline-lg:hover { background-color: rgba(255,255,255,0.2); }

.btn-dark {
  background-color: var(--background);
  color: var(--foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.btn-dark:hover { background-color: var(--secondary); }

.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand-logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand-name { font-size: 1.1rem; font-weight: 700; }
.footer-brand-sub  { font-size: 0.75rem; opacity: 0.8; }
.footer-blurb { font-size: 0.875rem; opacity: 0.8; line-height: 1.6; }

.footer-heading { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links a:hover { opacity: 1; color: var(--primary); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact-item i { opacity: 0.8; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.875rem; opacity: 0.8; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background-color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
  color: var(--foreground);
}
.social-btn:hover { background-color: var(--primary); color: var(--primary-foreground); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p { font-size: 0.875rem; opacity: 0.8; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.875rem; opacity: 0.8; transition: opacity 0.2s, color 0.2s; }
.footer-legal a:hover { opacity: 1; color: var(--primary); }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--foreground);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================================
   HOME — HERO SECTION
   ========================================================= */
.home-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 5rem 0 6rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.hero-text { text-align: center; }
@media (min-width: 1024px) { .hero-text { text-align: left; } }
.hero-text h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hero-text p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
@media (min-width: 1024px) { .hero-text p { margin-left: 0; margin-right: 0; } }
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
@media (min-width: 1024px) { .hero-actions { justify-content: flex-start; } }

/* =========================================================
   DONATION WIDGET
   ========================================================= */
.donation-widget {
  background-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.widget-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: #000;
}
.donation-widget h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 0.5rem;
}
.donation-widget .widget-sub {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.6);
  text-align: center;
  margin-bottom: 1.5rem;
}
.widget-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background-color: rgba(0,0,0,0.05);
  border-radius: var(--radius);
  padding: 0.25rem;
  margin-bottom: 1.5rem;
}
.widget-tab {
  padding: 0.5rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(0,0,0,0.5);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: none;
}
.widget-tab.active {
  background-color: #fff;
  color: #000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.widget-amounts { display: none; }
.widget-amounts.active { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.amount-btn {
  padding: 0.875rem;
  border-radius: var(--radius);
  background-color: var(--primary);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  height: 3.5rem;
  transition: background-color 0.2s, transform 0.1s;
  font-family: inherit;
}
.amount-btn:hover { background-color: hsl(51, 100%, 44%); transform: scale(1.02); }
.amount-btn-custom {
  padding: 0.875rem;
  border-radius: var(--radius);
  background-color: transparent;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  height: 3.5rem;
  transition: border-color 0.2s, background-color 0.2s;
  font-family: inherit;
}
.amount-btn-custom:hover { border-color: var(--primary); background-color: rgba(255,215,0,0.05); }
.widget-fine-print {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.5);
  text-align: center;
  margin-top: 1rem;
}

/* =========================================================
   SECTIONS — shared patterns
   ========================================================= */
.section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.section-dark { background-color: var(--secondary); }
.section-gradient { background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 100%); }
.section-yellow { background-color: var(--primary); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--foreground);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================================
   STAT CARD
   ========================================================= */
.stat-card {
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
.stat-card .stat-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(255,215,0,0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}
.stat-card .stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* =========================================================
   PROGRAM CARD
   ========================================================= */
.program-card {
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s;
}
.program-card:hover { transform: translateY(-4px); }
.program-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
.program-card-body { padding: 1.5rem; }
.program-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.program-card-body p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* =========================================================
   TESTIMONIAL CARD
   ========================================================= */
.testimonial-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.testimonial-quote {
  font-size: 1rem;
  color: var(--card-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-quote::before { content: '"'; }
.testimonial-quote::after  { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(0,0,0,0.1);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--card-foreground); }
.testimonial-role { font-size: 0.8rem; color: rgba(0,0,0,0.5); }

/* =========================================================
   NEWSLETTER FORM
   ========================================================= */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 480px) { .newsletter-form { flex-direction: row; } }
.newsletter-form input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
}
.newsletter-form input::placeholder { color: var(--muted-foreground); }
.newsletter-form input:focus { outline: 2px solid var(--primary); outline-offset: 1px; }
.newsletter-form button {
  padding: 0.625rem 1.25rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  border-radius: var(--radius);
  white-space: nowrap;
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s;
}
.newsletter-form button:hover { background-color: hsl(51, 100%, 44%); }

/* Footer newsletter variant */
.newsletter-form-footer input {
  background-color: rgba(255,255,255,0.05);
  border-color: var(--border);
  color: var(--foreground);
}
.newsletter-form-footer input::placeholder { color: var(--muted-foreground); }

/* =========================================================
   CARDS (white)
   ========================================================= */
.card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.card h3 { color: var(--card-foreground); }
.card p  { color: rgba(0,0,0,0.65); }

.card-dark {
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

/* =========================================================
   GRIDS
   ========================================================= */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; } }

/* =========================================================
   FORMS
   ========================================================= */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: #000;
  background-color: transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ca3af; }
.form-group textarea { resize: vertical; min-height: 6rem; }
.form-error {
  font-size: 0.8rem;
  color: var(--destructive);
  margin-top: 0.25rem;
  display: none;
}
.form-error.show { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
}

.input-prefix {
  position: relative;
}
.input-prefix-symbol {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0,0,0,0.4);
}
.input-prefix input { padding-left: 1.75rem; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.values-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.values-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background-color: rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-foreground);
}
.values-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.75rem;
}
.values-card p {
  color: rgba(0,0,0,0.6);
  line-height: 1.7;
}

.team-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.team-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  background-color: rgba(255,215,0,0.2);
  margin: 0 auto 1rem;
}
.team-name { font-size: 1.1rem; font-weight: 700; color: var(--card-foreground); margin-bottom: 0.25rem; }
.team-role { font-size: 0.875rem; color: rgba(0,0,0,0.5); }

.prose-section p {
  font-size: 1.05rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* =========================================================
   PROGRAMS PAGE
   ========================================================= */
.program-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.program-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .program-section-grid { grid-template-columns: 1fr 1fr; } }

.program-section-img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
}
.program-section-img img { width: 100%; height: 100%; object-fit: cover; }

.program-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.metric-box {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.metric-label {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.5);
  font-weight: 600;
  text-transform: capitalize;
}

/* =========================================================
   IMPACT PAGE — TIMELINE
   ========================================================= */
.timeline { display: flex; flex-direction: column; gap: 2rem; }
.timeline-item { display: flex; gap: 1.5rem; }
.timeline-year {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-foreground);
}
.timeline-event {
  padding-top: 1rem;
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.6;
}

.partner-quote {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  margin-bottom: 2rem;
}
.partner-quote p {
  font-size: 1rem;
  color: var(--card-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.partner-quote-name { font-weight: 700; color: var(--card-foreground); }
.partner-quote-title { font-size: 0.875rem; color: rgba(0,0,0,0.5); }

/* =========================================================
   GET INVOLVED PAGE
   ========================================================= */
.volunteer-card {
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.2s;
}
.volunteer-card:hover { border-color: var(--primary); }
.volunteer-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.volunteer-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.volunteer-card p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.check-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-bullet {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-foreground);
}
.check-item p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
}

/* =========================================================
   DONATE PAGE
   ========================================================= */
.donation-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--secondary);
  border-radius: var(--radius);
  padding: 0.25rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.donation-tab {
  padding: 0.625rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-align: center;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all 0.2s;
}
.donation-tab.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .tier-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tier-grid { grid-template-columns: 1fr 1fr 1fr; } }

.tier-card {
  background-color: var(--secondary);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.tier-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.tier-card.selected { border-color: var(--primary); background-color: rgba(255,215,0,0.05); }
.tier-recommended-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.tier-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.tier-impact {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) { .impact-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.impact-box {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.impact-box .amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.impact-box p { font-size: 0.875rem; color: rgba(0,0,0,0.6); line-height: 1.5; }

.why-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
}
.why-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--card-foreground); margin-bottom: 0.75rem; }
.why-card p  { font-size: 0.9rem; color: rgba(0,0,0,0.6); line-height: 1.6; }

/* =========================================================
   BLOG PAGE
   ========================================================= */
.blog-card {
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; display: block; flex-shrink: 0; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}
.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}
.blog-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* =========================================================
   BLOG POST PAGE
   ========================================================= */
.post-hero img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.post-meta {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.post-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 2rem 0 1rem;
}
.post-content p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.post-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--muted-foreground);
}
.post-content ul li { margin-bottom: 0.5rem; line-height: 1.7; font-size: 1rem; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-info-label { font-weight: 600; color: var(--foreground); margin-bottom: 0.25rem; }
.contact-info-value { color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.6; }

.map-placeholder {
  aspect-ratio: 16/9;
  background-color: rgba(255,255,255,0.05);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   DONATION SUCCESS PAGE
   ========================================================= */
.success-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background-color: rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}
.next-steps { display: flex; flex-direction: column; gap: 1rem; }
.next-step  { display: flex; align-items: flex-start; gap: 0.75rem; }
.step-num {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-foreground);
}
.next-step p { font-size: 0.9rem; color: rgba(0,0,0,0.7); line-height: 1.6; }

.success-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .success-actions { flex-direction: row; justify-content: center; } }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background-color: var(--primary);
  padding: 6rem 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}
.cta-section p {
  font-size: 1.125rem;
  color: rgba(0,0,0,0.75);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* =========================================================
   PARTNERS SECTION
   ========================================================= */
.partner-logo-box {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.partner-logo-inner { text-align: center; }
.partner-logo-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: rgba(255,215,0,0.2);
  margin: 0 auto 0.75rem;
}
.partner-logo-box p {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0,0,0,0.5);
}

/* =========================================================
   FORM SUCCESS MESSAGE
   ========================================================= */
.form-success {
  display: none;
  background-color: rgba(255,215,0,0.1);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  color: var(--foreground);
  font-weight: 600;
  margin-top: 1rem;
}
.form-success.show { display: block; }

/* =========================================================
   UTILITY
   ========================================================= */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.hidden { display: none; }
.divider { border-top: 1px solid var(--border); margin: 2rem 0; }
