@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --orange: #E8650A;
  --orange-dark: #B84F08;
  --orange-light: #FFF3EA;
  --charcoal: #1E1E1E;
  --mid: #4A4A4A;
  --muted: #7A7A7A;
  --border: #E8E4DF;
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --green: #2D6A4F;
  --green-light: #E8F5EE;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.7;
}

/* TOP BAR */
.topbar {
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  padding: 6px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #fff; text-decoration: none; }

/* HEADER */
header {
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-wrap { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.logo-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-size: 22px; font-weight: 600; color: #fff;
}
.logo-text h1 { font-family: 'Lora', serif; font-size: 20px; font-weight: 600; color: var(--charcoal); }
.logo-text p { font-size: 10px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; max-width: 260px; line-height: 1.4; }

/* NAV */
nav { display: flex; gap: 4px; flex-wrap: wrap; }
nav a {
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  font-weight: 500; color: var(--mid); padding: 8px 12px;
  border-radius: 6px; transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
nav a:hover { background: var(--orange-light); color: var(--orange); }
nav a.active { color: var(--orange); }
nav a.active::after {
  content: ''; display: block;
  height: 2px; background: var(--orange); border-radius: 2px;
  margin-top: 2px;
}

.donate-btn {
  background: var(--orange) !important; color: #fff !important;
  border-radius: 8px !important; padding: 10px 20px !important;
  font-weight: 600 !important;
}
.donate-btn:hover { background: var(--orange-dark) !important; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #1E1E1E 0%, #3A2E20 100%);
  color: #fff;
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="%23E8650A" opacity="0.15"/></svg>') repeat;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero-tag {
  display: inline-block; background: rgba(232,101,10,0.2);
  border: 1px solid rgba(232,101,10,0.4);
  color: #F5A464; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero h2 {
  font-family: 'Lora', serif; font-size: 46px; font-weight: 600;
  line-height: 1.2; margin-bottom: 20px;
}
.hero h2 em { color: var(--orange); font-style: italic; }
.hero p { font-size: 17px; color: #C8C4BF; max-width: 580px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: #fff; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  padding: 14px 32px; border-radius: 8px; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4); cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  padding: 14px 32px; border-radius: 8px; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* STATS BAR */
.stats-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.stat {
  padding: 28px 24px; text-align: center; border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Lora', serif; font-size: 34px; font-weight: 600; color: var(--orange); }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 4px; }

/* SECTIONS */
.section { padding: 64px 32px; max-width: 1100px; margin: 0 auto; }
.section-sm { padding: 40px 32px; max-width: 1100px; margin: 0 auto; }

.section-header { margin-bottom: 40px; }
.section-tag {
  display: inline-block; background: var(--orange-light); color: var(--orange);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Lora', serif; font-size: 32px; font-weight: 600; color: var(--charcoal);
  margin-bottom: 12px;
}
.section-header p { color: var(--mid); max-width: 540px; font-size: 16px; }

/* WORK CARDS */
.work-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.work-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; transition: all 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.work-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232,101,10,0.1); }
.work-icon {
  width: 48px; height: 48px; border-radius: 10px; background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.work-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.work-card p { color: var(--mid); font-size: 14px; line-height: 1.6; }
.work-card .read-more {
  display: inline-block; margin-top: 16px; color: var(--orange);
  font-size: 13px; font-weight: 500; text-decoration: none;
}

/* ABOUT GRID */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 700px) { .about-grid { grid-template-columns: 1fr; } }

.about-text h2 { font-family: 'Lora', serif; font-size: 30px; margin-bottom: 20px; }
.about-text p { color: var(--mid); margin-bottom: 16px; font-size: 15px; }

.values-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.value-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 16px;
}
.value-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); margin-top: 5px; flex-shrink: 0; }
.value-item strong { font-size: 14px; font-weight: 600; display: block; }
.value-item span { font-size: 13px; color: var(--mid); }

/* DONATE PAGE */
.donate-hero {
  background: var(--orange); color: #fff;
  padding: 60px 32px; text-align: center;
}
.donate-hero h2 { font-family: 'Lora', serif; font-size: 34px; margin-bottom: 12px; }
.donate-hero p { font-size: 16px; opacity: 0.9; max-width: 540px; margin: 0 auto; }

.bank-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
}
.bank-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.bank-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 16px; color: var(--charcoal); }
.bank-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.bank-row:last-child { border-bottom: none; }
.bank-row span:first-child { color: var(--muted); }
.bank-row span:last-child { font-weight: 500; font-family: monospace; }

.tax-note {
  background: var(--green-light); border: 1px solid #B7DFCC;
  border-radius: 10px; padding: 20px 24px; margin: 24px 0;
  font-size: 14px; color: var(--green);
}

/* CONTACT PAGE */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

.office-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; margin-bottom: 16px;
}
.office-card h3 { font-size: 14px; font-weight: 600; color: var(--orange); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.office-card p { font-size: 14px; color: var(--mid); }

.helpline-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.helpline-item {
  display: flex; justify-content: space-between; align-items: start;
  font-size: 13px; padding: 10px 14px;
  background: var(--bg); border-radius: 8px; border: 1px solid var(--border);
}
.helpline-item span:first-child { color: var(--mid); max-width: 60%; }
.helpline-item strong { color: var(--charcoal); }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.contact-form h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: var(--mid); margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 14px; font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--charcoal); background: var(--bg); transition: border 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange); background: var(--white);
}
.form-group textarea { height: 100px; resize: none; }
.form-submit {
  width: 100%; background: var(--orange); color: #fff; border: none;
  border-radius: 8px; padding: 12px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--orange-dark); }
.form-success { display: none; color: var(--green); font-size: 14px; margin-top: 12px; text-align: center; }

/* ABOUT PAGE */
.inspiration-block {
  background: var(--charcoal); color: #fff;
  border-radius: 16px; padding: 48px; margin-bottom: 32px;
  position: relative; overflow: hidden;
}
.inspiration-block::before {
  content: '"';
  position: absolute; top: -20px; left: 24px;
  font-family: 'Lora', serif; font-size: 160px; color: rgba(232,101,10,0.1);
  line-height: 1;
}
.inspiration-block p { font-size: 17px; line-height: 1.8; color: #D8D4CE; position: relative; z-index: 1; }

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;
}
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; text-align: center;
}
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange-light); border: 2px solid var(--orange);
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-size: 20px; font-weight: 600; color: var(--orange);
}
.team-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.team-card p { font-size: 12px; color: var(--muted); }

/* PROGRAMS PAGE */
.program-detail {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin-bottom: 20px;
}
.program-detail h3 {
  font-family: 'Lora', serif; font-size: 20px; margin-bottom: 12px;
  color: var(--charcoal);
}
.program-detail p { color: var(--mid); font-size: 14px; margin-bottom: 12px; }
.program-tag {
  display: inline-block; background: var(--orange-light); color: var(--orange);
  font-size: 11px; padding: 3px 10px; border-radius: 20px; margin-right: 6px; margin-bottom: 6px;
}

/* FOOTER */
footer {
  background: #1A1A1A; color: #9A9690;
  padding: 48px 32px 24px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand h3 { font-family: 'Lora', serif; font-size: 20px; color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-brand .footer-email { color: var(--orange); margin-top: 16px; font-size: 13px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: #9A9690; font-size: 13px;
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-divider { border: none; border-top: 1px solid #2E2E2E; margin-bottom: 20px; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 12px;
}
.footer-bottom a { color: var(--orange); text-decoration: none; }

/* EVENTS PAGE */
.event-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; margin-bottom: 16px;
  display: flex; gap: 20px; align-items: flex-start;
}
.event-date {
  background: var(--orange); color: #fff;
  border-radius: 8px; padding: 10px 16px; text-align: center;
  min-width: 60px; flex-shrink: 0;
}
.event-date .day { font-size: 24px; font-weight: 700; line-height: 1; }
.event-date .month { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; }
.event-info h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.event-info p { font-size: 14px; color: var(--mid); }

/* SUCCESS STORIES */
.story-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; margin-bottom: 20px;
}
.story-header {
  background: var(--charcoal); color: #fff;
  padding: 24px 28px;
}
.story-header h3 { font-family: 'Lora', serif; font-size: 20px; margin-bottom: 6px; }
.story-header span { font-size: 12px; color: #888; }
.story-body { padding: 24px 28px; }
.story-body p { color: var(--mid); font-size: 14px; line-height: 1.7; }

/* PAGE HERO (sub-pages) */
.page-hero {
  background: var(--charcoal); color: #fff;
  padding: 48px 32px;
}
.page-hero h2 { font-family: 'Lora', serif; font-size: 34px; margin-bottom: 8px; }
.page-hero p { color: #B0ACA7; font-size: 16px; }

/* ACCREDITATION */
.acc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
}
.acc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px; text-align: center;
}
.acc-badge {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange-light); border: 2px solid var(--orange);
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.acc-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.acc-card p { font-size: 12px; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 700px) {
  .hero h2 { font-size: 30px; }
  header { padding: 12px 16px; }
  .section { padding: 40px 16px; }
  nav { display: none; }
}
