:root {
  --navy: #072c6c;
  --gold: #c89b3c;
  --gold-dark: #a57a22;
  --cream: #f8f5ee;
  --white: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e6e2d8;
  --shadow: 0 12px 30px rgba(7, 44, 108, 0.08);
  --radius: 18px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.eyebrow.light {
  color: #f7d58c;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

p {
  color: var(--text);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.logo img {
  height: 68px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text);
  font-weight: 600;
  transition: 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
}

.main-nav .donate-btn {
  background: var(--gold);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 12px;
}

.main-nav .donate-btn:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 3px;
}

/* HERO */
.hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-subtext {
  font-size: 1.08rem;
  max-width: 600px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 520px;
  width: 100%;
  object-fit: cover;
}

/* TRUST */
.trust-bar {
  padding: 0 0 40px;
  background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.trust-item h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.trust-item p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* QUICK LINKS */
.quick-links-section {
  padding: 70px 0;
}

.quick-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.quick-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 155, 60, 0.45);
}

.quick-card h3 {
  margin-bottom: 10px;
}

.quick-card p {
  color: var(--muted);
  margin-bottom: 16px;
  min-height: 78px;
}

.quick-card span {
  color: var(--gold-dark);
  font-weight: 700;
}

.card-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}

.featured-card {
  border: 1px solid rgba(200, 155, 60, 0.45);
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

/* IMPACT */
.impact-preview {
  padding: 70px 0;
  background: var(--cream);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.impact-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.impact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
}

.impact-box p {
  color: var(--muted);
}

/* CTA */
.cta-section {
  padding: 70px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #0b3d92 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}

.footer-brand img {
  height: 76px;
  width: auto;
  margin-bottom: 16px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 12px;
}

.site-footer h4 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-links li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
  color: #f6d28a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  padding: 18px 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .quick-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .impact-boxes {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    min-height: auto;
    max-height: 520px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 4%;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 0;
  }

  .main-nav .donate-btn {
    display: inline-block;
    width: auto;
    margin-top: 8px;
  }

  .trust-grid,
  .footer-grid,
  .quick-cards {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .logo img {
    height: 58px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-item,
  .quick-card,
  .impact-box {
    padding: 22px 18px;
  }
}
/* ================= ABOUT PAGE ================= */

.page-hero {
  padding: 100px 0 60px;
  background: #f8f5ee;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-hero p {
  color: #6b7280;
}

.about-section {
  padding: 70px 0;
}

.light-bg {
  background: #f8f5ee;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-block h2 {
  margin-bottom: 10px;
}

.about-block p {
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.cta-section {
  padding: 60px 0;
}

.cta-box {
  background: #072c6c;
  color: white;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-box h2,
.cta-box p {
  color: white;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.main-donate {
  background: #c89b3c !important;
  font-size: 18px;
}

.main-donate:hover {
  background: #a57a22 !important;
}
/* Donation page CSS*/
/* ================= CONTACT PAGE ================= */

.contact-section {
  padding: 70px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #eee;
}

.contact-subtext {
  margin-bottom: 20px;
  color: #6b7280;
}

.contact-item {
  margin-bottom: 18px;
}

.contact-item strong {
  display: block;
  color: #072c6c;
  margin-bottom: 4px;
}

.contact-item a {
  color: #c89b3c;
  font-weight: 500;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #eee;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* Home page  Hero */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.site-header {
  background: white;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: #333;
}

.donate-btn {
  background: #c89b3c;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 1s;
}

.slide.active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  color: white;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-gold {
  background: #c89b3c;
  color: white;
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

/* TRUST */
.trust-grid {
  display: flex;
  justify-content: space-around;
  padding: 30px;
}

/* CARDS */
.quick-cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.quick-card {
  background: white;
  padding: 20px;
  border: 1px solid #eee;
  text-align: center;
}

.featured-card {
  border: 2px solid #c89b3c;
}

/* CTA */
.cta-box {
  text-align: center;
  padding: 40px;
  background: #072c6c;
  color: white;
}

.cta-buttons {
  margin-top: 20px;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 20px;
}
/** Project page */
/* ================= PROJECTS PAGE ================= */

/* PAGE HEADER */
.page-header {
  padding: 80px 0 40px;
  text-align: center;
  background: #f8f5ee;
}

.page-header h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.page-header p {
  color: #6b7280;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 60px 0;
}

/* CARD */
.project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.project-content {
  padding: 20px;
}

.project-content h3 {
  margin-bottom: 10px;
  color: #072c6c;
}

.project-content p {
  color: #555;
  font-size: 14px;
}

/* BUTTON */
.project-btn {
  display: inline-block;
  margin-top: 14px;
  background: #c89b3c;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.project-btn:hover {
  background: #a57a22;
}

/* CTA SECTION */
.cta-section {
  padding: 60px 0;
}

.cta-box {
  background: #072c6c;
  color: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

.cta-box h2 {
  color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
.impact-box {
  margin-top: 20px;
  padding: 15px;
  background: #f8f5ee;
  border-left: 4px solid #c89b3c;
  border-radius: 8px;
}

.impact-box.urgent {
  background: #fff4f4;
  border-left: 4px solid #d9534f;
}
/* ================= TRUSTEES ================= */
/* ================= TRUSTEES ================= */
.trustees-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.trustees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.trustee-card {
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.trustee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.trustee-img {
  width: 110px;
  height: 110px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f1f1f1;
}

.trustee-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trustee-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.trustee-card span {
  color: #c89b3c;
  font-weight: 600;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
  .trustees-grid {
    grid-template-columns: 1fr;
  }
}