/*
Theme Name:  Kusaidia Charity
Theme URI:   https://kusaidiacharityinc.com
Author:      Kusaidia Charity Inc.
Author URI:  https://kusaidiacharityinc.com
Description: Custom WordPress theme for Kusaidia Charity Inc. — a non-profit humanitarian organization providing food, clothing, shelter and education to children in Kenya.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kusaidia
Tags:        charity, non-profit, humanitarian, one-column, custom-menu, custom-logo, footer-widgets, theme-options
*/

/* ============================================================
   ALL SITE STYLES — Kusaidia Charity Inc.
   ============================================================ */

/* Google Fonts loaded via functions.php wp_enqueue_scripts */

:root {
  --green-deep: #1a4731;
  --green-mid:  #2d7a4f;
  --green-light:#4caf79;
  --gold:       #c9973a;
  --gold-light: #e8b850;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --text-dark:  #1c2c1e;
  --text-mid:   #3d5140;
  --text-muted: #6b7d6e;
  --border:     rgba(45,122,79,0.15);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── WORDPRESS ALIGNMENT HELPERS ── */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1rem auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; }

/* ── NAVIGATION ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--green-deep);
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.site-branding {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.site-branding-emblem {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--green-deep);
  flex-shrink: 0;
}
.site-branding-text .site-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--white);
  line-height: 1.2; display: block;
}
.site-branding-text .site-tagline {
  font-size: 0.65rem; font-weight: 300; letter-spacing: 0.15em;
  color: var(--gold-light); text-transform: uppercase; display: block;
}

.main-navigation ul {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none; margin: 0; padding: 0;
}
.main-navigation ul li a {
  font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.85rem; border-radius: 4px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  display: block;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current_page_item > a {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}
.main-navigation ul li.menu-item-donate > a {
  background: var(--gold);
  color: var(--green-deep) !important;
  padding: 0.5rem 1.25rem;
}
.main-navigation ul li.menu-item-donate > a:hover {
  background: var(--gold-light);
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem; color: var(--white);
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all 0.3s;
}

/* ── SITE CONTENT WRAPPER ── */
.site-content { padding-top: 70px; }

/* ── SHARED LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; }
section { padding: 5rem 2rem; }

.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green-mid);
  margin-bottom: 0.75rem; display: block;
}
.section-label--gold { color: var(--gold-light); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 1.25rem;
}
.section-title em { color: var(--green-mid); font-style: italic; }

.section-lead {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 640px; line-height: 1.75;
}

.divider {
  width: 48px; height: 3px; background: var(--gold);
  margin: 1.5rem 0; border: none;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--green-deep);
  padding: 0.9rem 2rem; border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  border: none; transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--green-deep); }

.btn-secondary {
  background: transparent; color: var(--white);
  padding: 0.9rem 2rem; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.35);
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }

.btn-green {
  background: var(--green-mid); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.2s;
  display: inline-block;
}
.btn-green:hover { background: var(--green-deep); color: var(--white); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, #1c4a30 100%);
  padding: 5rem 2rem 4rem; text-align: center;
}
.page-hero-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 1rem; display: block;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; color: var(--white); margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  max-width: 600px; margin: 0 auto;
}

/* ── HOME: HERO ── */
.home-hero {
  min-height: 92vh;
  background: linear-gradient(160deg, var(--green-deep) 0%, #0f2e1e 55%, #1a3d26 100%);
  display: flex;
  align-items: center;
  padding: 5rem 2rem 4rem;
}
.home-hero-pattern {
  display: none;
}
.home-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 10;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,151,58,0.2); border: 1px solid rgba(201,151,58,0.4);
  color: var(--gold-light); padding: 0.4rem 1rem; border-radius: 30px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1.75rem;
  pointer-events: none;
}
.home-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 1rem;
}
.home-hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-tagline {
  font-size: 1.15rem; font-weight: 300; color: rgba(255,255,255,0.75);
  max-width: 560px; margin-bottom: 2.5rem; line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
}
.hero-ctas a {
  display: inline-block;
  position: relative;
  z-index: 100;
  pointer-events: all;
  cursor: pointer;
  text-decoration: none;
}
/* ── HOME: STATS ── */
.stats-band { background: var(--green-deep); padding: 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2px;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  padding: 2.5rem 2rem; text-align: center;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.stat-card:hover { background: rgba(255,255,255,0.09); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--gold-light); line-height: 1;
}
.stat-label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.5rem;
}

/* ── HOME: MISSION CARDS ── */
.mission-section { background: var(--white); }
.mission-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.mission-card {
  background: var(--white); border-radius: 8px;
  border: 1px solid var(--border); padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mission-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.mission-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(45,122,79,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.5rem;
}
.mission-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.6rem;
}
.mission-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── HOME: QUOTE ── */
.quote-band {
  background: var(--green-mid);
  text-align: center; padding: 4rem 2rem;
}
.quote-band blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-style: italic; color: var(--white);
  max-width: 800px; margin: 0 auto; line-height: 1.55;
  border: none; padding: 0;
}
.quote-band cite {
  display: block; margin-top: 1rem;
  font-family: 'Lato', sans-serif; font-style: normal;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}

/* ── HOME: CTA BAND ── */
.cta-band {
  background: var(--cream); border-top: 1px solid var(--border);
  text-align: center; padding: 4.5rem 2rem;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-dark); margin-bottom: 0.75rem;
}
.cta-band p { color: var(--text-muted); margin-bottom: 2rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT PAGE ── */
.about-section { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; color: var(--text-dark); margin-bottom: 1rem;
}
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.values-list { list-style: none; margin-top: 1.5rem; }
.values-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem; color: var(--text-mid);
}
.values-list li:last-child { border-bottom: none; }
.values-list li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-mid); flex-shrink: 0; margin-top: 7px;
}
.vision-card {
  background: var(--green-deep); border-radius: 12px;
  padding: 2.5rem; color: var(--white);
}
.vision-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--gold-light); margin-bottom: 1rem;
}
.vision-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 1rem; }
.vision-goals { list-style: none; margin-top: 1rem; }
.vision-goals li {
  padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 0.75rem;
}
.vision-goals li::before { content: '→'; color: var(--gold-light); font-weight: 700; flex-shrink: 0; }
.mission-quote-card {
  margin-top: 1.5rem; background: var(--cream); border-radius: 10px;
  padding: 1.75rem; border: 1px solid var(--border);
}
.mission-quote-card p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.05rem; color: var(--text-dark); line-height: 1.6; margin: 0;
}

/* ── PROGRAMS PAGE ── */
.programs-section { background: var(--white); }
.programs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem; margin-top: 3rem;
}
.program-card {
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: box-shadow 0.2s;
}
.program-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.program-card-header {
  background: var(--green-deep); padding: 1.75rem 1.75rem 1.25rem;
}
.program-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.program-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: var(--white);
}
.program-card-body { padding: 1.75rem; }
.program-card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.program-tag {
  display: inline-block;
  background: rgba(45,122,79,0.1); color: var(--green-mid);
  padding: 0.25rem 0.75rem; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin: 0.2rem 0.2rem 0 0;
}

/* ── GALLERY PAGE ── */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.gallery-item {
  background: var(--white); border-radius: 10px;
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.1); }
.gallery-thumb {
  height: 200px; overflow: hidden; position: relative;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-placeholder {
  height: 200px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-deep), #2d7a4f);
  text-align: center; color: rgba(255,255,255,0.5);
}
.gallery-thumb-placeholder span { font-size: 2.5rem; opacity: 0.6; }
.gallery-item-info { padding: 1.25rem; }
.gallery-item-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--text-dark); margin-bottom: 0.4rem;
}
.gallery-item-info p { font-size: 0.85rem; color: var(--text-muted); }
.gallery-location {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: var(--green-mid);
  font-weight: 700; margin-top: 0.5rem;
}
.gallery-cta {
  background: var(--green-deep); border-radius: 12px;
  padding: 2.5rem; text-align: center; margin-top: 3rem;
}
.gallery-cta h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light); margin-bottom: 0.75rem; font-size: 1.4rem;
}
.gallery-cta p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── CONTACT PAGE ── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--text-dark); margin-bottom: 1rem;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(45,122,79,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text strong {
  display: block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.2rem;
}
.contact-detail-text span { font-size: 1rem; color: var(--text-dark); }
.contact-detail-text a { color: var(--text-dark); text-decoration: none; }
.contact-donate-box {
  margin-top: 2.5rem; background: rgba(45,122,79,0.08);
  border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem;
}
.contact-donate-box p { font-size: 0.9rem; color: var(--text-muted); margin: 0.5rem 0 1.25rem; }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--cream); border-radius: 12px; padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--text-dark); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.4rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  background: var(--white); color: var(--text-dark);
  font-family: 'Lato', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--green-mid);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 1rem;
  background: var(--green-mid); color: var(--white);
  border: none; border-radius: 6px;
  font-family: 'Lato', sans-serif; font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--green-deep); }
.wpcf7-response-output { margin-top: 1rem; padding: 0.75rem 1rem; border-radius: 6px; font-size: 0.9rem; }

/* ── DONATE PAGE ── */
.donate-hero {
  background: linear-gradient(145deg, #0d2218 0%, var(--green-deep) 60%, #1e4a2e 100%);
  padding: 5rem 2rem 4rem; text-align: center;
}
.donate-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white); margin-bottom: 1rem;
}
.donate-hero h1 em { color: var(--gold-light); font-style: italic; }
.donate-hero p { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto; font-size: 1rem; }

.donate-section { background: var(--cream); padding: 5rem 2rem; }
.donate-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start;
}
.donate-form-card {
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--border); padding: 2.5rem;
}
.donate-form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--text-dark); margin-bottom: 1.75rem;
}
.amount-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-bottom: 1.25rem;
}
.amount-btn {
  padding: 0.85rem; border: 1.5px solid var(--border); border-radius: 6px;
  background: var(--white); color: var(--text-dark);
  font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.15s; text-align: center;
}
.amount-btn:hover, .amount-btn.selected {
  border-color: var(--green-mid); background: rgba(45,122,79,0.08); color: var(--green-mid);
}
.amount-btn.selected { border-width: 2px; }
.custom-amount-wrap { position: relative; margin-bottom: 1.5rem; }
.custom-amount-prefix {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-weight: 700; font-size: 1rem;
}
.custom-amount-input {
  width: 100%; padding: 0.85rem 1rem 0.85rem 2.25rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: 'Lato', sans-serif; font-size: 1rem; color: var(--text-dark);
}
.custom-amount-input:focus { outline: none; border-color: var(--green-mid); }
.donate-submit {
  width: 100%; padding: 1.1rem;
  background: var(--gold); color: var(--green-deep);
  border: none; border-radius: 6px;
  font-family: 'Lato', sans-serif; font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s; margin-top: 0.5rem;
}
.donate-submit:hover { background: var(--gold-light); }
.donate-secure {
  display: flex; align-items: center; gap: 0.5rem; justify-content: center;
  margin-top: 1rem; font-size: 0.8rem; color: var(--text-muted);
}

.donate-impact h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--text-dark); margin-bottom: 1.5rem; }
.impact-item {
  display: flex; gap: 1.25rem; margin-bottom: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--border);
}
.impact-item:last-of-type { border-bottom: none; }
.impact-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--gold);
  flex-shrink: 0; min-width: 70px;
}
.impact-desc strong { display: block; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.impact-desc p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.donate-contact-box {
  background: var(--cream); border-radius: 10px; padding: 1.5rem;
  border: 1px solid var(--border); margin-top: 1.5rem;
}
.donate-contact-box p:first-child { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; margin-bottom: 1rem; }
.donate-contact-box .phone-link { font-weight: 700; color: var(--green-mid); text-decoration: none; }

/* ── QR CODE CARD ── */
.qr-card {
  background: var(--green-deep); border-radius: 12px;
  padding: 2rem; text-align: center; margin-top: 2rem;
}
.qr-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--gold-light); margin-bottom: 1rem;
}
.qr-inner {
  width: 160px; height: 160px; background: var(--white);
  border-radius: 8px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.qr-inner img { width: 100%; height: auto; }
#qr-render { width: 140px; height: 140px; margin: 0 auto; }
.qr-card > p { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ── FOOTER ── */
.site-footer {
  background: #0a1a10; color: rgba(255,255,255,0.7);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
}
.footer-brand-emblem {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--green-deep);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white);
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-brand .footer-phone { margin-top: 0.75rem; font-size: 0.85rem; }
.footer-brand .footer-phone a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; font-size: 0.78rem; color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .donate-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-navigation { display: none; }
  .main-navigation.is-open { display: block; position: absolute; top: 70px; left: 0; right: 0; background: var(--green-deep); padding: 1rem 2rem 2rem; }
  .main-navigation.is-open ul { flex-direction: column; gap: 0.25rem; }
  .menu-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 480px) {
  section { padding: 3.5rem 1.25rem; }
  .home-hero { padding: 4rem 1.25rem 3rem; }
  .amount-grid { grid-template-columns: repeat(2,1fr); }
}


