/* ========================
   CSS VARIABLES & RESET
   ======================== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #0d1117;
  --dark-2: #161b22;
  --dark-3: #1f2733;
  --white: #ffffff;
  --off-white: #f9f7f2;
  --text-muted: #8b949e;
  --text-body: #c9d1d9;
  --green: #1a6b3c;
  --green-light: #2d9e5f;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.28);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: "Inter", sans-serif;
  --font-display: "Playfair Display", serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================
   TYPOGRAPHY UTILITIES
   ======================== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-tag.light {
  color: var(--gold-light);
  border-color: rgba(232, 201, 122, 0.3);
  background: rgba(232, 201, 122, 0.08);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.65);
}

.text-gold {
  color: var(--gold);
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn.small {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn.full-width {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: var(--dark-3);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
  background: var(--dark-2);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.1;
}

.footer-logo .logo-image {
  height: 80px;
}

.footer-logo .logo-title {
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark) !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--gold) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 17, 23, 0.92) 0%,
    rgba(13, 17, 23, 0.75) 50%,
    rgba(13, 17, 23, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 120px 24px 80px;
  margin-left: max(10vw, 24px);
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.1);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 32px;
  width: fit-content;
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ========================
   MISSION
   ======================== */
.mission {
  padding: 120px 0;
  background: var(--off-white);
}

.mission .section-title {
  color: var(--dark);
}
.mission .section-tag {
  color: var(--green);
  border-color: rgba(26, 107, 60, 0.3);
  background: rgba(26, 107, 60, 0.06);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.mission-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}

.mission-body {
  color: #4a4a4a;
  font-size: 1.02rem;
  line-height: 1.8;
}

.mission-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.value-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
}

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.6;
}

/* ========================
   PROGRAMS
   ======================== */
.programs {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.program-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.program-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.program-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.program-card.featured {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12),
    rgba(201, 168, 76, 0.04)
  );
  border-color: rgba(201, 168, 76, 0.25);
}

.program-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 100px;
}

.program-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.program-icon {
  font-size: 1.6rem;
}

.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}

.program-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.program-link {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.program-link:hover {
  letter-spacing: 0.03em;
}

/* ========================
   IMPACT
   ======================== */
.impact {
  padding: 120px 0;
  background: var(--off-white);
}

.impact .section-title {
  color: var(--dark);
}
.impact .section-tag {
  color: var(--green);
  border-color: rgba(26, 107, 60, 0.3);
  background: rgba(26, 107, 60, 0.06);
}

.impact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.impact-image-col {
  position: relative;
  min-height: 500px;
}

.impact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-stats-col {
  background: var(--dark);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-intro {
  margin-bottom: 40px;
}

.impact-intro p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.02rem;
  line-height: 1.8;
}

.impact-counters {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: var(--transition);
}

.impact-counters.visible {
  opacity: 1;
  transform: translateY(0);
}

.counter-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.counter-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.counter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
  animation: barGrow 1.5s ease forwards;
}

.counter-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.counter-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
}

/* ========================
   STORIES
   ======================== */
.stories {
  padding: 120px 0;
  background: var(--dark-2);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.story-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.story-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.2);
}

.story-card.featured-story {
  background: linear-gradient(160deg, rgba(26, 107, 60, 0.2), var(--dark-3));
  border-color: rgba(45, 158, 95, 0.2);
}

.story-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 20px;
}

.story-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.story-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.story-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ========================
   CALLOUT
   ======================== */
.callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.callout-image {
  position: relative;
  overflow: hidden;
}

.callout-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.callout-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 40%,
    rgba(13, 17, 23, 0.8) 100%
  );
}

.callout-content {
  background: var(--dark);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateX(24px);
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.callout-content.visible {
  opacity: 1;
  transform: translateX(0);
}

.callout-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

.callout-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.02rem;
  line-height: 1.8;
}

.callout-facts {
  display: flex;
  gap: 32px;
  margin: 8px 0;
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fact strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.fact span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 140px;
  line-height: 1.4;
}

/* ========================
   PARTNERS
   ======================== */
.partners {
  padding: 100px 0;
  background: var(--off-white);
}

.partners .section-title {
  color: var(--dark);
}
.partners .section-tag {
  color: var(--green);
  border-color: rgba(26, 107, 60, 0.3);
  background: rgba(26, 107, 60, 0.06);
}
.partners .section-subtitle {
  color: #5a5a5a;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.partner-logo-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.partner-logo-item:hover {
  border-color: var(--gold);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ========================
   GET INVOLVED
   ======================== */
.involve {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.involve::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.involve-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.involve-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.involve-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.involve-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-6px);
}

.involve-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.involve-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
}

.involve-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ========================
   CONTACT
   ======================== */
.contact {
  padding: 120px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-tag {
  color: var(--green);
  border-color: rgba(26, 107, 60, 0.3);
  background: rgba(26, 107, 60, 0.06);
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-info > p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

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

.ci-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item strong {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-item span {
  color: #555;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  padding: 8px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--dark);
}

/* Donation Payment Buttons */
.donate-links-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.donate-links-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 4px;
}

.donate-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}

.donate-link-btn.paypal {
  background: #003087;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 48, 135, 0.3);
}

.donate-link-btn.paypal:hover {
  background: #002265;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 48, 135, 0.45);
}

.donate-link-btn.cashapp {
  background: #00d632;
  color: #000;
  box-shadow: 0 4px 16px rgba(0, 214, 50, 0.3);
}

.donate-link-btn.cashapp:hover {
  background: #00b82c;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 214, 50, 0.45);
}

.donate-link-btn svg {
  flex-shrink: 0;
}

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

/* ========================
   PHOTO GALLERY
   ======================== */
.gallery {
  background: var(--dark);
  padding-bottom: 0;
}

.gallery .container {
  padding: 100px 20px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item { height: 220px; }
  .gallery-caption { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item { height: 240px; }
}

/* ========================
   DONORS & SPONSORS
   ======================== */
.donors {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
}

.donors::before {
  content: '';
  position: absolute;
  bottom: -300px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.donor-tier {
  margin-bottom: 64px;
}

.donor-tier-label {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.donor-tier-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-badge.platinum {
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(232,201,122,0.1));
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
}

.tier-badge.gold {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
}

/* Scrolling marquee track */
.donor-logo-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  padding: 16px 0;
}

.donor-logo-scroll {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 18s linear infinite;
}

.donor-logo-scroll:hover {
  animation-play-state: paused;
}

.donor-logo-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 100px;
  flex-shrink: 0;
  transition: var(--transition);
}

.donor-logo-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.25);
}

.donor-logo-item img {
  max-height: 56px;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: var(--transition);
}

.donor-logo-item:hover img {
  opacity: 1;
  filter: brightness(0.9) invert(1) sepia(0.3) hue-rotate(10deg) saturate(3);
}

/* Gold tier card grid */
.donor-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.donor-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
  cursor: default;
}

.donor-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.donor-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.donor-card img {
  max-height: 64px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: var(--transition);
}

.donor-card:hover img {
  opacity: 1;
}

.donor-card-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* CTA block */
.donor-cta {
  margin-top: 16px;
  padding: 40px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.donor-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive donors */
@media (max-width: 900px) {
  .donor-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .donor-cards-grid { grid-template-columns: 1fr 1fr; }
  .donor-cta { flex-direction: column; text-align: center; }
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-col h4 {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.4;
  }
}

@keyframes barGrow {
  from {
    width: 0;
  }
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .callout {
    grid-template-columns: 1fr;
  }
  .callout-content {
    padding: 64px 40px;
    transform: none !important;
  }
  .callout-image {
    height: 320px;
  }
  .impact-split {
    grid-template-columns: 1fr;
  }
  .impact-image-col {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 4px;
    border-radius: 0 0 20px 20px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 16px;
    border-radius: 10px;
    width: 100%;
  }
  .nav-links .nav-cta {
    margin-top: 8px;
  }

  .hero-content {
    margin-left: 0;
    padding: 100px 20px 60px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }
  .stat-divider {
    display: none;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mission-values {
    grid-template-columns: 1fr 1fr;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .involve-cards {
    grid-template-columns: 1fr;
  }

  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .callout-facts {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-badge {
    font-size: 0.7rem;
  }
  .mission-values {
    grid-template-columns: 1fr;
  }
  .partner-logos {
    grid-template-columns: 1fr;
  }
}

/* ========================
   COMMUNITY EVENTS / ADS
   ======================== */
.community-ads {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark-2) 100%);
  overflow: hidden;
}

/* Ticker */
.ads-ticker {
  margin: 40px 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  animation: shimmerBg 4s linear infinite;
  overflow: hidden;
  white-space: nowrap;
}

@keyframes shimmerBg {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.ads-ticker-inner {
  display: inline-flex;
  gap: 28px;
  padding: 14px 28px;
  animation: tickerScroll 18s linear infinite;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-dot {
  opacity: 0.5;
}

/* Grid wrapper */
.ads-grid-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.ads-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

/* Ad Card base */
.ad-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  background: var(--dark-3);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(32px);
}

.ad-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.ad-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 168, 76, 0.35);
}

/* Featured card spans 2 rows */
.ad-card--featured {
  grid-row: span 2;
}

/* Image */
.ad-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.ad-card--featured .ad-img-wrap {
  min-height: 560px;
}

.ad-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.ad-card:hover .ad-img-wrap img {
  transform: scale(1.07);
}

/* Overlay */
.ad-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 17, 23, 0.95) 0%,
    rgba(13, 17, 23, 0.55) 50%,
    rgba(13, 17, 23, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  gap: 8px;
  transition: background 0.4s ease;
}

.ad-card:hover .ad-overlay {
  background: linear-gradient(
    to top,
    rgba(13, 17, 23, 0.97) 0%,
    rgba(13, 17, 23, 0.72) 55%,
    rgba(13, 17, 23, 0.18) 100%
  );
}

.ad-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.ad-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.ad-card--featured .ad-title {
  font-size: 1.75rem;
}

.ad-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 340px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  margin-top: 4px;
}

.ad-card:hover .ad-desc {
  opacity: 1;
  transform: translateY(0);
}

.ad-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0;
  border: none;
  background: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s 0.05s ease, transform 0.35s 0.05s ease,
              letter-spacing 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  margin-top: 4px;
}

.ad-card:hover .ad-cta {
  opacity: 1;
  transform: translateY(0);
}

.ad-cta:hover {
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

/* Responsive */
@media (max-width: 900px) {
  .ads-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .ad-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .ad-card--featured .ad-img-wrap {
    min-height: 340px;
  }
}

@media (max-width: 600px) {
  .ads-grid {
    grid-template-columns: 1fr;
  }
  .ad-card--featured {
    grid-column: span 1;
  }
  .ad-img-wrap {
    min-height: 240px;
  }
  .ad-card--featured .ad-img-wrap {
    min-height: 300px;
  }
  .ad-desc,
  .ad-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================
   FOUNDER
   ======================== */
.founder {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.founder-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.founder-image-col {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.founder-img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.founder-image-col:hover .founder-img {
  transform: scale(1.03);
}

.founder-image-col::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  pointer-events: none;
}

.founder-content-col {
  display: flex;
  flex-direction: column;
}

.founder-bio {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-body);
}

.founder-bio .bio-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
}

.founder-bio p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
  .founder-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ========================
   SVG ICONS SIZING
   ======================== */
.value-icon svg,
.program-icon svg,
.involve-icon svg,
.ci-icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
}
