:root {
  --green: #008751;
  --green-dark: #005f3a;
  --green-deep: #033d28;
  --green-soft: #e9f8f0;
  --white: #ffffff;
  --ink: #10251b;
  --muted: #60736a;
  --line: #dce9e2;
  --shadow: 0 20px 55px rgba(0, 70, 42, 0.16);
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

.topbar {
  background: var(--green-deep);
  color: white;
  font-size: 0.88rem;
}

.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 8px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.topbar-links { display: flex; gap: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.navbar {
  max-width: 1200px;
  min-height: 84px;
  margin: auto;
  padding: 12px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand strong { display: block; color: var(--green); font-size: 2rem; line-height: 1; }
.brand span { display: block; font-weight: 800; font-size: 0.8rem; color: var(--muted); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  font-weight: 800;
}

.nav-menu a:hover { color: var(--green); }

.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 11px 18px;
  border-radius: 999px;
}

#nav-check, .hamburger { display: none; }

.hero {
  min-height: 760px;
  padding: 120px 22px;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(0, 80, 48, 0.94), rgba(0, 135, 81, 0.86)),
    radial-gradient(circle at 25% 15%, #1fd185, transparent 35%);
}

.hero-content { max-width: 980px; }

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.7rem, 7.5vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  color: #edfdf5;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
}

.btn-primary {
  background: var(--white);
  color: var(--green) !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
}

.btn-light { border: 2px solid white; color: white; }
.btn-green { background: var(--green); color: white; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 850px;
  margin: auto;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  padding: 20px;
}

.hero-stats strong { display: block; font-size: 1.35rem; }
.hero-stats span { color: #daf9ea; }

.section {
  max-width: 1200px;
  margin: auto;
  padding: 92px 22px;
}

.section-kicker {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.section-kicker.light { color: #dfffee; }

.section h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

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

.feature-panel {
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.check-list { margin-top: 18px; list-style: none; }
.check-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 9px; }

.center-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.programs,
.leadership {
  max-width: none;
  background: #f7fbf9;
  padding-left: max(22px, calc((100vw - 1200px) / 2));
  padding-right: max(22px, calc((100vw - 1200px) / 2));
}

.program-grid, .leader-grid, .announcement-grid {
  display: grid;
  gap: 22px;
}

.program-grid { grid-template-columns: repeat(4, 1fr); }
.leader-grid { grid-template-columns: repeat(4, 1fr); }
.announcement-grid { grid-template-columns: repeat(3, 1fr); }

.program-card, .leader-card, .announcement-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 70, 42, 0.08);
}

.program-card:hover, .leader-card:hover, .announcement-grid article:hover {
  transform: translateY(-4px);
  transition: 0.25s ease;
  box-shadow: var(--shadow);
}

.program-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  border-radius: 18px;
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}

.text-link { color: var(--green); font-weight: 900; }

.events-timeline { display: grid; gap: 18px; }

.event-item {
  display: grid;
  grid-template-columns: 12opx 1fr;
  gap: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 70, 42, 0.08);
}

.event-date {
  background: var(--green);
  color: white;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}

.event-date span, .event-date strong { display: block; }
.event-date span { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; }
.event-date strong { font-size: 1.25rem; }

.leadership { background: var(--green-soft); }

.leader-card { text-align: center; }
/* LEADERSHIP SECTION */

.leadership {
  background: #f5f7f6;
}

/* GRID LAYOUT */

.leader-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;

  margin-top: 40px;
}

/* CARD */

.leader-card {

  background: white;

  padding: 30px 20px;

  border-radius: 20px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.leader-card:hover {

  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* PHOTO CONTAINER */

.leader-photo {

  width: 120px;

  height: 120px;

  margin: auto;

  border-radius: 50%;

  overflow: hidden;

  border: 5px solid #008751;

  margin-bottom: 20px;
}

/* IMAGE */

.leader-photo img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

/* NAME */

.leader-card h3 {

  color: #008751;

  margin-bottom: 10px;

  font-size: 1.2rem;
}

/* POSITION */

.leader-card p {

  color: #666;

  font-weight: bold;
}
.leader-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  font-size: 1.7rem;
  font-weight: 900;
  outline: 8px solid var(--green-soft);
}

.gallery-note { color: var(--muted); max-width: 360px; }

.premium-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 18px;
}

.gallery-card {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,135,81,0.9), rgba(0,80,48,0.9));
  color: white;
  display: grid;
  place-items: end start;
  padding: 24px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.gallery-card.large { grid-row: span 2; }
.gallery-card.wide { grid-column: span 2; }
.premium-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.gallery-card p {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
}
.donate-section {
  max-width: none;
  background: var(--green-deep);
  padding-left: max(22px, calc((100vw - 1200px) / 2));
  padding-right: max(22px, calc((100vw - 1200px) / 2));
}

.donate-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  color: white;
}

.donation-options { display: grid; gap: 14px; }

.donate-btn {
  background: white;
  color: var(--green);
  padding: 15px 20px;
  border-radius: 16px;
  text-align: center;
  font-weight: 900;
}

.donate-btn.outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.membership {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.member-benefits {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.member-benefits span {
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900;
}

.premium-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.premium-form label {
  display: block;
  font-weight: 900;
  margin-bottom: 16px;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  border-color: var(--green);
  outline: 4px solid rgba(0, 135, 81, 0.14);
}

.premium-form button {
  width: 100%;
  border: none;
  border-radius: 16px;
  background: var(--green);
  color: white;
  padding: 16px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.premium-form button:hover { background: var(--green-dark); }

.announcement-grid span {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-strip {
  max-width: 1160px;
  margin: 20px auto 80px;
  padding: 42px;
  border-radius: 30px;
  background: var(--green-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: var(--shadow);
  z-index: 150;
}

.footer {
  background: #031d13;
  color: white;
  padding: 55px 22px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
}

.footer a { display: block; color: #dfffee; margin: 7px 0; }
.footer h3 { font-size: 2rem; color: #7df0b3; }

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: #cce6da;
}

@media (max-width: 940px) {
  .topbar-inner, .topbar-links { flex-direction: column; gap: 4px; }

  .hamburger {
    display: block;
    font-size: 2rem;
    color: var(--green);
    cursor: pointer;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    background: white;
    padding: 22px;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }

  #nav-check:checked ~ .nav-menu { display: flex; }

  .split, .membership, .donate-card, .contact-strip, .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-grid, .leader-grid, .announcement-grid {
    grid-template-columns: 1fr 1fr;
  }

  .premium-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-card.large, .gallery-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .event-item { grid-template-columns: 1fr; }

  .contact-strip {
    margin-left: 22px;
    margin-right: 22px;
    align-items: start;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 680px;
    padding: 80px 18px;
  }

  .hero-stats,
  .program-grid,
  .leader-grid,
  .announcement-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 70px 18px; }
  .brand span { display: none; }
  .brand strong { font-size: 1.7rem; }
}
