:root {
  --green: #1a8a3c;
  --green-dark: #0f5c27;
  --green-light: #25c25a;
  --yellow: #f5c800;
  --red: #d42b2b;
  --black: #0d0d0d;
  --white: #f9f9f4;
  --gray: #1c1c1c;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 70px;
  background: rgba(10,10,10,0.95);
  border-bottom: 3px solid var(--yellow);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--yellow);
  letter-spacing: 2px;
  line-height: 1.1;
}
.nav-logo span { color: var(--green-light); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 8px 20px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta:hover { background: var(--green-light); color: var(--black) !important; }

/* ---- HERO ---- */
#home {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
    url('./images/bg.jpg') center/cover,
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(26,138,60,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,200,0,0.10) 0%, transparent 60%);
}
.hero-stripe {
  position: absolute; top: 0; right: 0;
  width: 6px; height: 100%;
  background: linear-gradient(to bottom, var(--yellow), var(--green), var(--red));
}
.hero-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-bottom: 1.5rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.92;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .accent { color: var(--yellow); display: block; }
.hero-title .green { color: var(--green-light); }
.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(249,249,244,0.7);
  max-width: 520px;
  line-height: 1.6;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-buttons {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
  margin-bottom: 5rem;
}
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  clip-path: none;
  padding: 12px 34px;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.hero-stats {
  position: absolute; bottom: 60px; left: 5vw;
  display: flex; 
  flex-direction: row;
  gap: 3rem;
  align-items: center;
  flex-wrap: nowrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 0 0 auto;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(249,249,244,0.7);
  font-weight: 600;
}
.hero-flag {
  position: absolute; right: 5vw; bottom: 60px;
  display: flex; flex-direction: column; gap: 0;
  width: 60px; border-radius: 4px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.flag-stripe { height: 20px; }
.flag-stripe.s1 { background: #000; }
.flag-stripe.s2 { background: #fcdc00; }
.flag-stripe.s3 { background: #de3008; }
.flag-circle {
  position: absolute;
  width: 28px; height: 28px; border-radius: 50%;
  background: #c0c0c0;
  right: calc(5vw + 16px);
  bottom: 66px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900;
}

/* ---- SECTIONS COMMON ---- */
section { padding: 100px 5vw; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
  border-left: 3px solid var(--yellow);
  padding-left: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

/* ---- ABOUT ---- */
#about { background: var(--gray); position: relative; overflow: hidden; }
#about::before {
  content: 'TUZIMBE';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18vw;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-size: 1.05rem;
  color: rgba(249,249,244,0.8);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-text strong { color: var(--yellow); }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--yellow);
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
}
.value-card:hover { transform: translateY(-4px); border-top-color: var(--green-light); }
.value-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.value-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}
.value-card p { font-size: 0.85rem; color: rgba(249,249,244,0.6); line-height: 1.5; }

/* ---- PROGRAMS ---- */
#programs { background: var(--black); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  margin-top: 3rem;
  border: 1.5px solid rgba(255,255,255,0.07);
}
.program-card {
  padding: 2.5rem 2rem;
  background: var(--gray);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.program-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.program-card:hover { background: #252525; }
.program-card:hover::after { transform: scaleX(1); }
.prog-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  position: absolute; top: 1rem; right: 1.5rem;
}
.prog-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.program-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.program-card p { font-size: 0.9rem; color: rgba(249,249,244,0.6); line-height: 1.6; }
.prog-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
}

/* ---- EVENTS ---- */
#events { background: var(--green-dark); position: relative; }
.events-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.events-list { display: flex; flex-direction: column; gap: 1px; }
.event-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 2rem;
  background: rgba(0,0,0,0.3);
  padding: 1.5rem 2rem;
  border-left: 4px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.event-row:hover { border-left-color: var(--yellow); background: rgba(0,0,0,0.45); }
.event-date {
  text-align: center;
  background: var(--yellow);
  color: var(--black);
  padding: 10px;
  font-family: 'Bebas Neue', sans-serif;
}
.event-date .day { font-size: 2.2rem; line-height: 1; }
.event-date .month { font-size: 0.75rem; letter-spacing: 2px; }
.event-info h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}
.event-info p { font-size: 0.85rem; color: rgba(249,249,244,0.6); }
.event-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  background: rgba(245,200,0,0.15);
  color: var(--yellow);
  border: 1px solid rgba(245,200,0,0.3);
  white-space: nowrap;
}

/* ---- IMPACT BANNER ---- */
#impact {
  background: var(--yellow);
  color: var(--black);
  padding: 80px 5vw;
  text-align: center;
}
#impact .section-title { color: var(--black); }
#impact .section-label { color: var(--green-dark); border-left-color: var(--black); }
.impact-grid {
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; margin-top: 3rem;
}
.impact-stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--black);
  line-height: 1;
}
.impact-stat .label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
}

/* ---- CONTACT ---- */
#contact { background: var(--gray); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}
.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--yellow);
}
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon { font-size: 1.5rem; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(249,249,244,0.4); margin-bottom: 3px; }
.contact-detail p { font-size: 1rem; color: var(--white); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(249,249,244,0.5); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 12px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-bottom-color: var(--yellow);
  background: rgba(255,255,255,0.07);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: var(--gray); }

/* ---- FOOTER ---- */
footer {
  background: #080808;
  border-top: 3px solid var(--green);
  padding: 50px 5vw 30px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--yellow);
  letter-spacing: 2px;
  line-height: 1.1;
}
.footer-logo span { color: var(--green-light); font-size: 0.9rem; display: block; letter-spacing: 3px; }
.footer-tagline { font-size: 0.85rem; color: rgba(249,249,244,0.4); margin-top: 8px; max-width: 240px; }
.footer-links h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(249,249,244,0.55); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(249,249,244,0.3); }
.footer-bottom span { color: var(--green-light); }
.color-bar { display: flex; height: 5px; }
.color-bar div { flex: 1; }
.color-bar .cb1 { background: var(--black); }
.color-bar .cb2 { background: #fcdc00; }
.color-bar .cb3 { background: #de3008; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- MISSION BANNER ---- */
#mission { background: var(--gray); position: relative; overflow: hidden; }
#mission::before {
  content: 'INSPIRE';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15vw;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.mission-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}
.mission-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.06); }
.mission-icon { font-size: 3rem; margin-bottom: 1rem; }
.mission-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.mission-card p { 
  font-size: 0.95rem; 
  color: rgba(249,249,244,0.7); 
  line-height: 1.6; 
}

/* ---- STORIES ---- */
#stories { background: var(--black); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.story-card {
  background: var(--gray);
  border-left: 4px solid var(--green-light);
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  transition: transform 0.3s, border-left-color 0.3s;
}
.story-card:hover { transform: translateX(8px); border-left-color: var(--yellow); }
.story-image {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}
.story-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.story-content p {
  font-size: 0.9rem;
  color: rgba(249,249,244,0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.story-meta {
  font-size: 0.75rem;
  color: var(--green-light);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---- SUPPORT BANNER ---- */
#support { 
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  position: relative;
  overflow: hidden;
}
#support::before {
  content: 'CHANGE';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12vw;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
}
.support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.support-text h2 { color: var(--white); }
.support-text p { 
  color: rgba(249,249,244,0.8); 
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.support-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.support-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.support-stat {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-left: 3px solid var(--yellow);
}
.support-stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.support-stat .label {
  font-size: 0.85rem;
  color: rgba(249,249,244,0.7);
  line-height: 1.4;
}

/* ---- MODAL ---- */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: var(--gray);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--yellow);
  max-width: 500px;
  width: 90%;
  position: relative;
}
.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}
.close:hover { color: var(--yellow); }

.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .nav-links { 
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 20px;
    border-top: 2px solid var(--yellow);
  }
  .nav-links.active {
    display: flex;
  }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-buttons {
    margin-bottom: 3rem;
  }
  .hero-stats { 
    gap: 2rem; 
    flex-wrap: wrap;
    bottom: 40px;
    left: 5vw;
    right: 5vw;
    margin-top: 3rem;
  }

  .hero-buttons { 
    gap: 2rem; 
    flex-wrap: wrap;
    margin-bottom: 150px;
    left: 5vw;
    right: 5vw;
    margin-top: 3rem;
  }

  .hero-stats > div {
    flex: 0 0 auto;
    min-width: 80px;
  }
  .stat-num { font-size: 2.8rem; }
  .stat-label { font-size: 0.75rem; }
  .event-row { grid-template-columns: 70px 1fr; }
  .event-badge { display: none; }
  .impact-grid { gap: 2rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .support-content { grid-template-columns: 1fr; gap: 2rem; }
  .story-card { flex-direction: column; text-align: center; }
  .story-image { margin: 0 auto 1rem; }
}
