:root {
  --primary: #0f6b4c;
  --primary-dark: #0a4a35;
  --primary-light: #e7f3ee;
  --accent: #d4a017;
  --accent-dark: #b3850e;
  --text: #2b2f2c;
  --muted: #6b7570;
  --bg-soft: #f6f9f7;
  --border: #e3e8e5;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Lora', serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary-dark);
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; }

section { padding: 70px 0; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(212, 160, 23, .12);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 16px;
  max-width: 680px;
}

.bg-soft { background: var(--bg-soft); }

/* Buttons */
.btn-brand, .btn-donate, .btn-outline-brand {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 30px;
  border-radius: 50px;
  transition: all .25s ease;
  text-decoration: none;
}

.btn-brand {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-brand:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }

.btn-outline-brand {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-brand:hover { background: #fff; color: var(--primary-dark); }

.btn-donate {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
}
.btn-donate:hover { background: var(--accent-dark); }

/* Cards */
.card-shadow {
  box-shadow: 0 10px 30px rgba(15, 107, 76, .08);
  border-radius: 14px;
}

/* Page header / banner used on inner pages */
.page-banner {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}
.page-banner h1 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 10px;
}
.page-banner .breadcrumb-nav a { color: rgba(255,255,255,.8); }
.page-banner .breadcrumb-nav span { color: #fff; }
.page-banner .breadcrumb-nav a:hover { color: #fff; }

/* Back to top */
.scrollup {
  position: fixed;
  right: 24px;
  bottom: 94px;
  width: 44px;
  height: 44px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 999;
}
.scrollup.show { opacity: 1; visibility: visible; }
.scrollup:hover { background: var(--accent); color: #fff; }

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  z-index: 999;
  animation: pulse-wa 2.4s infinite;
}
.whatsapp-float:hover { color: #fff; }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.page-content h2 { margin-top: 30px; }
.page-content p { margin-bottom: 16px; }

@media (max-width: 767px) {
  section { padding: 50px 0; }
  .section-title { font-size: 26px; }
}
