/*
Theme Name: ICASAF Uganda
Theme URI: https://facebook.com/ICASAFUganda
Author: ICASAF Uganda
Author URI: https://facebook.com/ICASAFUganda
Description: Official website theme for the Initiative for Caring Adolescents and Sexually Active Foundation Uganda. Empowering transgender and gender-diverse adolescents through healthcare, advocacy, and community-led support.
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: icasaf-uganda
Tags: custom-colors, custom-menu, featured-images, full-width-template, threaded-comments, accessibility-ready, nonprofit, ngo
*/

/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  --orange:        #F97316;
  --orange-light:  #FED7AA;
  --orange-dark:   #9A3412;
  --pink:          #EC4899;
  --pink-light:    #FCE7F3;
  --pink-dark:     #831843;
  --teal:          #0D9488;
  --teal-light:    #CCFBF1;
  --teal-dark:     #134E4A;
  --green:         #16A34A;
  --green-light:   #DCFCE7;
  --blue:          #2563EB;
  --blue-light:    #DBEAFE;
  --purple:        #7C3AED;
  --purple-light:  #EDE9FE;
  --amber:         #F59E0B;
  --cream:         #FFFBF5;
  --warm-white:    #FFF7ED;
  --dark:          #1C1917;
  --gray:          #57534E;
  --light-gray:    #F5F5F4;
  --border:        #E7E5E4;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --transition:    all 0.25s ease;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-pill:   50px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 24px rgba(0,0,0,0.09);
  --shadow-lg:     0 20px 48px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }

/* ===========================
   TYPOGRAPHY SCALE
   =========================== */
.text-xs   { font-size: 12px; }
.text-sm   { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg   { font-size: 18px; }
.text-xl   { font-size: 20px; }
.text-2xl  { font-size: 24px; }
.text-3xl  { font-size: 30px; }
.text-4xl  { font-size: 36px; }
.text-5xl  { font-size: 48px; }

.font-medium { font-weight: 500; }
.font-bold   { font-weight: 700; }
.font-black  { font-weight: 900; }

.font-sans   { font-family: var(--font-body); }
.font-serif  { font-family: var(--font-heading); }

.text-muted  { color: var(--gray); }
.text-white  { color: #fff; }
.text-orange { color: var(--orange); }
.text-teal   { color: var(--teal); }
.text-pink   { color: var(--pink); }

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--wide  { max-width: 1400px; }
.container--narrow { max-width: 760px; }

.section { padding: 96px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-sm  { gap: 12px; }
.flex-gap-md  { gap: 20px; }
.flex-gap-lg  { gap: 32px; }

.align-center { align-items: center; }
.text-center  { text-align: center; }

/* ===========================
   COLOR BAND
   =========================== */
.color-band {
  height: 5px;
  background: linear-gradient(90deg,
    var(--orange) 0%,
    var(--pink) 20%,
    var(--purple) 40%,
    var(--teal) 60%,
    var(--green) 80%,
    var(--blue) 100%
  );
}

/* ===========================
   SECTION LABELS & HEADINGS
   =========================== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-label--light { color: rgba(255,255,255,1); }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--dark);
}

.section-title--white { color: #fff; }

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.85;
  max-width: 580px;
}

.section-subtitle--white { color: #000; }

.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: #5BCEFA;
  color: #fff;
}
.btn--primary:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249,115,22,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn--outline:hover {
  background: var(--dark);
  color: #fff;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

.btn--teal {
  background: var(--teal);
  color: #fff;
}
.btn--teal:hover { background: var(--teal-dark); color: #fff; }

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===========================
   BADGES
   =========================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.badge--orange { background: var(--orange-light); color: var(--orange-dark); }
.badge--green  { background: var(--green-light);  color: #14532d; }
.badge--teal   { background: var(--teal-light);   color: var(--teal-dark); }
.badge--pink   { background: var(--pink-light);   color: var(--pink-dark); }
.badge--pulse::before {
  content: '';
  width: 7px; height: 7px;
  background: currentColor;
  border-radius: 50%;
  display: inline-block;
}

/* ===========================
   CARDS
   =========================== */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card--dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.card--dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

/* ===========================
   NAVIGATION
   =========================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  background: rgba(255,251,245,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--orange-light);
  display: flex;
  align-items: center;
}

#site-header .container {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.logo-text span {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.3px;
}

#primary-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  align-items: center;
}

#primary-menu li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-decoration: none;
}

#primary-menu li a:hover { color: #205063; background: #F5A9B8; }

#primary-menu .menu-cta a {
  background: #F5A9B8;
  color: #fff !important;
  font-weight: 600;
}
#primary-menu .menu-cta a:hover {
  background: #5BCEFA;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO
   =========================== */
#hero {
  min-height: 100vh;
  padding-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
}

.hero-content .badge { margin-bottom: 28px; }

.hero-content h1 {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-content .lead {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--orange-light);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--orange) 0%, var(--pink) 50%, var(--teal) 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.55;
  position: absolute;
  top: 0; left: 0;
}

.hero-quote-card {
  position: relative;
  z-index: 2;
  margin: 0 36px 0;
  align-self: flex-end;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.hero-quote-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-quote-card cite {
  font-style: normal;
  font-size: 13px;
  opacity: 0.8;
}

/* ===========================
   MISSION SECTION
   =========================== */
#mission {
  background: linear-gradient(90deg,rgba(91, 206, 250, 1) 0%, rgba(245, 169, 184, 1) 50%, rgba(255, 255, 255, 1) 100%);
  padding: 100px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mission-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  transition: var(--transition);
}
.mission-card:hover { background: rgba(255,255,255,0.1); }

.mission-card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.mission-card-body h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}
.mission-card-body p {
  font-size: 13px;
  color: #000;
  line-height: 1.65;
  margin: 0;
}

.reg-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: #14532d;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-top: 28px;
}

/* ===========================
   PROGRAMS SECTION
   =========================== */
#programs {
  background: var(--cream);
  padding: 100px 0;
}

.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.program-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px 24px;
  transition: var(--transition);
  cursor: default;
}
.program-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(249,115,22,0.12);
}

.program-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.program-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.program-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   WHO WE SERVE
   =========================== */
#who-we-serve {
  background: #fff;
  padding: 100px 0;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.who-card {
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border-left: 4px solid transparent;
  transition: var(--transition);
}
.who-card:hover { transform: translateX(5px); }

.who-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.who-card p { font-size: 14px; line-height: 1.75; margin: 0; }

/* ===========================
   GALLERY SECTION
   =========================== */
#gallery {
  background: var(--warm-white);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 56px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gallery-item.gallery-tall { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
 object-position: center top;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  padding: 28px 20px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-quote-tile {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
}
.gallery-quote-tile blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.gallery-quote-tile cite {
  font-style: normal;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* ===========================
   STRATEGIC PILLARS
   =========================== */
#pillars {
  background: linear-gradient(90deg, rgba(91, 206, 250, 1) 0%, rgba(245, 169, 184, 1) 50%, rgba(255, 255, 255, 1) 100%);
  padding: 100px 0;
}

.pillars-intro { text-align: center; margin-bottom: 64px; }
.pillars-intro .section-subtitle { margin: 0 auto; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar-card {
  text-align: center;
  padding: 44px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  transition: var(--transition);
}
.pillar-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.pillar-num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
}

.pillar-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
.pillar-card p {
  font-size: 13px;
  color: #000;
  line-height: 1.75;
  margin: 0;
}

/* ===========================
   LEADERSHIP
   =========================== */
#leadership {
  background: var(--cream);
  padding: 100px 0;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}

.leader-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.leader-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.leader-card-header {
  height: 90px;
}

.leader-card-avatar-wrap {
  padding: 0 24px;
  margin-top: -28px;
  margin-bottom: 14px;
}

.leader-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.leader-card-body {
  padding: 0 24px 24px;
}
.leader-card-body h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.leader-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.leader-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--gray);
}
.leader-contact a {
  color: var(--teal);
}
.leader-contact a:hover { text-decoration: underline; }

/* ===========================
   CONTACT SECTION
   =========================== */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-panel-left {
  background: linear-gradient(140deg, var(--orange) 0%, var(--pink) 100%);
  padding: 100px 80px;
  color: #fff;
}

.contact-panel-left .section-label { color: rgba(255,255,255,0.65); }
.contact-panel-left .section-title { color: #fff; font-size: 2.2rem; }
.contact-panel-left .section-subtitle { color: rgba(255,255,255,0.82); }

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.contact-info-text p {
  font-size: 15px;
  color: #fff;
  margin: 0;
}

.contact-panel-right {
  background: var(--warm-white);
  padding: 100px 80px;
}

.contact-panel-right h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 36px;
  color: var(--dark);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ===========================
   FOOTER
   =========================== */
#site-footer {
  background: var(--dark);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  margin-top: 16px;
  max-width: 290px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.38); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); color: #fff; }

/* ===========================
   BLOG / POSTS
   =========================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.post-card-thumb {
  height: 200px;
  overflow: hidden;
}
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-card-thumb img { transform: scale(1.06); }

.post-card-body { padding: 24px; }

.post-meta {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}

.post-card-body h2, .post-card-body h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.45;
}

.post-card-body h2 a, .post-card-body h3 a { color: var(--dark); }
.post-card-body h2 a:hover, .post-card-body h3 a:hover { color: var(--orange); }

.post-card-body .excerpt { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }

.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

/* ===========================
   SINGLE POST
   =========================== */
.single-post-hero {
  background: var(--dark);
  padding: 120px 0 80px;
  text-align: center;
}

.post-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 40px;
}

.post-content h2, .post-content h3 { margin: 32px 0 16px; }
.post-content p { margin-bottom: 20px; color: var(--gray); line-height: 1.85; }
.post-content img { border-radius: var(--radius-md); margin: 28px 0; }
.post-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  background: var(--orange-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--orange-dark);
}

/* ===========================
   PAGE: ABOUT
   =========================== */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 20px; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* ===========================
   SIDEBAR / WIDGETS
   =========================== */
.widget-area { display: flex; flex-direction: column; gap: 28px; }

.widget {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
}

.widget-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange-light);
}

/* ===========================
   PAGINATION
   =========================== */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 56px;
}
.pagination a, .pagination span {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}
.pagination a:hover, .pagination .current {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* ===========================
   COMMENTS
   =========================== */
.comments-area { max-width: 740px; margin: 0 auto; padding: 40px; }
.comments-area h2 { margin-bottom: 28px; font-size: 1.5rem; }

.comment-body {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 20px;
  margin-bottom: 16px;
}

/* ===========================
   ACCESSIBILITY
   =========================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

*:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
	background: #fff;
}

/* Donate */
#primary-menu .menu-donate a {
    background: #5BCEFA;
    color: #fff !important;
    font-weight: 600;
}
#primary-menu .menu-donate a:hover {
    background: #F5A9B8;
    color: #fff !important;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .programs-grid  { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  #hero                { grid-template-columns: 1fr; }
  .hero-visual         { min-height: 360px; }
  .hero-content        { padding: 60px 40px; }
  .mission-grid        { grid-template-columns: 1fr; gap: 48px; }
  .who-grid            { grid-template-columns: 1fr 1fr; }
  .leadership-grid     { grid-template-columns: 1fr 1fr; }
  #contact             { grid-template-columns: 1fr; }
  .contact-panel-left  { padding: 60px 40px; }
  .contact-panel-right { padding: 60px 40px; }
  .gallery-grid        { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-tall        { grid-row: span 1; }
}

@media (max-width: 680px) {
  .container           { padding: 0 20px; }
  section, .section    { padding: 64px 0; }
  #site-header .container { padding: 0 20px; }
  #primary-menu        { display: none; }
  #primary-menu.open   { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: #fff; padding: 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); gap: 4px; }
  .menu-toggle         { display: flex; }
  .programs-grid       { grid-template-columns: 1fr 1fr; }
  .who-grid            { grid-template-columns: 1fr; }
  .leadership-grid     { grid-template-columns: 1fr; }
  .pillars-grid        { grid-template-columns: 1fr 1fr; }
  .gallery-grid        { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .hero-stats          { flex-wrap: wrap; gap: 20px; }
  .programs-header     { flex-direction: column; }
}

/* Scroll animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
    opacity: 1;
    transform: translate(0);
}