/* DARK PURPLE (#1e1029) + GOLD (#D4AF37) + WHITE (#FFFFFF) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0d0712; /* deep dark purple background */
  color: #f0eef7;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* HEADER */
.site-header {
  background: #120b1a;
  border-bottom: 2px solid #d4af37;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}
.logo-name {
  color: #d4af37;
}
.logo-tag {
  font-size: 0.8rem;
  font-weight: 400;
  background: #2a1c36;
  padding: 0.2rem 0.5rem;
  border-radius: 30px;
  margin-left: 0.5rem;
}
.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.main-nav a {
  color: #f0eef7;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 0.25rem;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-size: 1.8rem;
  padding: 0 0.8rem;
  border-radius: 8px;
  cursor: pointer;
}

/* buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}
.btn-gold {
  background: #d4af37;
  color: #120b1a;
  border: none;
}
.btn-gold:hover {
  background: #f3c950;
  transform: scale(1.02);
}
.btn-outline {
  border: 2px solid #d4af37;
  color: #d4af37;
  background: transparent;
}
.btn-outline:hover {
  background: #d4af37;
  color: #120b1a;
}

/* hero */
.hero {
  background: linear-gradient(135deg, #140d1f 0%, #1f142c 100%);
  padding: 4rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 0.5rem;
}
.hero-badge {
  background: #2a1c36;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.2rem;
  color: #d4af37;
}
.hero-quote {
  font-family: 'Merriweather', serif;
  font-style: italic;
  margin: 1.5rem 0;
  opacity: 0.9;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cross {
  font-size: 3rem;
  margin-top: 2rem;
  opacity: 0.4;
}

/* bilingual section */
.bilingual-section {
  padding: 4rem 0;
  background: #0f0916;
}
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 {
  font-size: 2rem;
  color: #d4af37;
}
.title-decor {
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 0.8rem auto;
}
.bilingual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.lang-card {
  background: #1e142b;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid #332244;
}
.lang-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
}
.lang-flag { font-size: 2rem; }
.lang-card h3 { color: #d4af37; }
.statement-text p { margin-bottom: 1rem; }
.promise-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.5rem 0;
  list-style: none;
}
.promise-list li {
  padding-left: 0.2rem;
}
.blessing {
  font-style: italic;
  background: #2c1e3a;
  padding: 1rem;
  border-radius: 20px;
  margin-top: 1rem;
}

.action-strip {
  background: #120b1a;
  text-align: center;
  padding: 2.5rem;
  border-top: 1px solid #d4af37;
  border-bottom: 1px solid #d4af37;
}
.action-strip p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* vision page */
.page-hero {
  background: #1f142c;
  padding: 3rem 0;
  text-align: center;
}
.page-hero h1 {
  color: #d4af37;
  font-size: 2.5rem;
}
.vision-grid-section {
  padding: 4rem 0;
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.vision-card {
  background: #1e142b;
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: 0.2s;
  border: 1px solid #332244;
}
.vision-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}
.vision-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.vision-card h3 {
  color: #d4af37;
  margin-bottom: 0.8rem;
}
.quote-block {
  background: #140d1f;
  padding: 3rem;
  text-align: center;
}
.quote-inner p {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: 'Merriweather', serif;
}
.chichewa-quote {
  color: #d4af37;
  margin-top: 1rem;
  font-size: 1rem;
}

/* contact page */
.contact-section {
  padding: 4rem 0;
}
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.contact-info, .contact-form {
  flex: 1;
  background: #1e142b;
  padding: 2rem;
  border-radius: 28px;
}
.contact-info h2, .contact-form h3 {
  color: #d4af37;
  margin-bottom: 1.2rem;
}
.contact-info p {
  margin-bottom: 0.8rem;
}
.social-links {
  margin: 1.5rem 0;
}
.social-links a {
  color: #d4af37;
  text-decoration: none;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  background: #2c1e3a;
  border: 1px solid #4a3660;
  border-radius: 12px;
  color: white;
}
.contact-form button {
  width: 100%;
  cursor: pointer;
}
.volunteer-note {
  margin-top: 1.5rem;
  font-style: italic;
  border-left: 3px solid #d4af37;
  padding-left: 1rem;
}

/* footer */
.site-footer {
  background: #0a0510;
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid #2a1c36;
}
.footer-small {
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* responsive */
@media (max-width: 768px) {
  .bilingual-grid, .contact-flex {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .main-nav {
    display: none;
    width: 100%;
    margin-top: 1rem;
  }
  .main-nav.show {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero h1 { font-size: 2.2rem; }
  .promise-list { grid-template-columns: 1fr; }
}