:root {
  --gold: #C9A84C;
  --gold-light: #F0D07A;
  --gold-dark: #9A7A2E;
  --green: #2D6A4F;
  --green-dark: #1B4332;
  --green-light: #52B788;
  --cream: #FAF6EE;
  --text-dark: #1A1A1A;
}

* { box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  margin: 0;
}

/* ── NAVBAR ── */
.navbar {
  background-color: var(--green-dark);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}
.navbar-brand {
  font-family: 'Marcellus', serif;
  font-size: 1.4rem;
  color: var(--gold-light) !important;
  letter-spacing: 0.02em;
}
.navbar-brand span {
  color: #fff;
  font-weight: 300;
}
.nav-donate-btn {
  background: var(--gold);
  color: var(--green-dark) !important;
  font-weight: 700;
  border-radius: 2px;
  padding: 0.45rem 1.3rem !important;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-donate-btn:hover { background: var(--gold-light); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #3a8c65 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23C9A84C' opacity='0.15'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: 'Marcellus', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.btn-hero {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 2.4rem;
  border-radius: 2px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-hero:hover {
  background: var(--gold-light);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-hero-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  margin-left: 1rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-hero-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ── IMAGE PLACEHOLDER ── */
.hero-img-wrap {
  position: relative;
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(201,168,76,0.12) 100%);
  border: 2px dashed rgba(201,168,76,0.45);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.hero-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(82,183,136,0.12) 0%, transparent 70%);
}
.img-placeholder-icon {
  width: 64px;
  height: 64px;
  border: 2px dashed rgba(201,168,76,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.hero-stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-family: 'Marcellus', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* ── MISSION STRIP ── */
.mission-strip {
  background: var(--gold);
  padding: 1.1rem 2rem;
  text-align: center;
}
.mission-strip p {
  margin: 0;
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.03em;
}

/* ── ABOUT ── */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Marcellus', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: normal;
  color: var(--gold-dark);
}
.about-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3a3a3a;
  font-weight: 400;
}
.about-body strong { color: var(--green-dark); font-weight: 700; }
.gold-rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.8rem;
}

/* ── PILLARS ── */
.pillars-section {
  background: var(--green-dark);
  padding: 5rem 0;
}
.pillar-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-top: 3px solid var(--gold);
  border-radius: 3px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform 0.2s, border-color 0.2s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.6);
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.pillar-card h5 {
  font-family: 'Marcellus', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
}
.pillar-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

/* ── SCHOOL BUILD ── */
.build-section {
  background: #ffffff;
  border-top: none;
  padding: 5rem 0;
}
.deadline-badge {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ── DONATE ── */
.donate-section {
  background: #ffffff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
}
.donate-section h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.donate-section h2 em {
  font-style: normal;
  color: var(--gold-dark);
}
.donate-section p {
  font-size: 1.1rem;
  color: #555;
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.btn-donate-big {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 3rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 28px rgba(0,0,0,0.25);
  position: relative;
  margin-bottom: 2rem;
}
.btn-donate-big:hover {
  background: var(--gold-light);
  color: var(--green-dark);
  transform: translateY(-3px);
}
.donate-tagline {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #aaa;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.55);
  padding: 2.5rem 1rem;
  text-align: center;
  border-top: 3px solid var(--gold-dark);
}
footer .footer-brand {
  font-family: 'Marcellus', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
footer p { font-size: 0.85rem; margin: 0; line-height: 1.6; }
footer a { color: var(--gold-light); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── NAVBAR MOBILE ── */
@media (max-width: 575px) {
  .navbar {
    padding: 0.75rem 1rem;
  }
  .navbar-brand {
    font-size: 1.05rem;
  }
  .nav-donate-btn {
    padding: 0.4rem 0.9rem !important;
    font-size: 0.78rem;
  }
}
