:root {
  --primary: #e05c2a;
  --primary-dark: #c04a1e;
  --secondary: #2a6496;
  --accent: #f0a500;
  --bg: #fdf9f6;
  --bg-dark: #1a1a2e;
  --text: #2d2d2d;
  --text-muted: #666;
  --border: #e8e0d8;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

/* NAV */
.navbar {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1140px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a { color: var(--text); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.btn-nav {
  background: var(--primary);
  color: white !important;
  padding: 9px 20px;
  border-radius: 999px;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--primary-dark) !important; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #e05c2a22 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner { max-width: 760px; margin: auto; position: relative; }

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  font-family: system-ui, sans-serif;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  font-family: system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: white; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* STATS */
.stats {
  background: var(--primary);
  color: white;
  padding: 40px 24px;
}

.stats-grid {
  max-width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: system-ui, sans-serif;
  display: block;
}

.stat-label {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* SECTION */
.section { padding: 72px 24px; }
.section-inner { max-width: 1140px; margin: auto; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--text);
  margin-bottom: 12px;
}

.section-header p {
  font-family: system-ui, sans-serif;
  color: var(--text-muted);
  max-width: 540px;
  margin: auto;
}

/* PROGRAMS */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.program-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}

.program-color {
  height: 6px;
}

.program-body { padding: 28px; }

.program-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.program-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}

.program-body p {
  font-family: system-ui, sans-serif;
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.program-link {
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.program-link:hover { text-decoration: underline; }

/* EVENTS */
.events-bg { background: #f0ebe4; }

.events-list { display: flex; flex-direction: column; gap: 18px; }

.event-item {
  background: white;
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.event-item:hover { transform: translateX(4px); }

.event-date {
  text-align: center;
  min-width: 64px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  padding: 10px 8px;
  font-family: system-ui, sans-serif;
}

.event-month { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.event-day { font-size: 2rem; font-weight: 700; line-height: 1; }

.event-info { flex: 1; }
.event-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.event-info p {
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.event-tag {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fde8e0;
  color: var(--primary);
}

/* VOLUNTEER */
.volunteer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.volunteer-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.volunteer-text p {
  font-family: system-ui, sans-serif;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.volunteer-roles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.role-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  font-family: system-ui, sans-serif;
}

.role-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* DONATE CTA */
.donate-cta {
  background: linear-gradient(135deg, var(--bg-dark), #16213e);
  color: white;
  padding: 80px 24px;
  text-align: center;
}

.donate-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.donate-cta p {
  font-family: system-ui, sans-serif;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 36px;
}

.donate-amounts {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.amount-btn {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  color: white;
  padding: 10px 24px;
  border-radius: 999px;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.amount-btn:hover, .amount-btn.active {
  background: var(--primary);
  border-color: var(--primary);
}

/* FOOTER */
footer {
  background: #111827;
  color: rgba(255,255,255,0.7);
  padding: 52px 24px 28px;
  font-family: system-ui, sans-serif;
}

.footer-inner {
  max-width: 1140px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p { font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .volunteer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-links { display: none; }
  .event-item { flex-direction: column; align-items: flex-start; }
}
