/* Movement For Action — shared styles */
:root {
  --teal: #0d5c63;
  --teal-dark: #093f44;
  --amber: #f0a202;
  --amber-dark: #d18e00;
  --cream: #faf7f0;
  --ink: #24313a;
  --grey: #5c6b73;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(13, 92, 99, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a { color: var(--teal); }

/* ---------- Header / Navigation ---------- */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.nav-wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #17858e);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

.brand-name {
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 1.12rem;
  line-height: 1.2;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--grey);
  font-weight: 400;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0.2rem;
  border-bottom: 2px solid transparent;
}

nav a:hover { color: var(--teal); border-bottom-color: var(--amber); }

nav a.active { color: var(--teal); border-bottom-color: var(--teal); }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-donate {
  background: var(--amber);
  color: var(--teal-dark) !important;
  border-bottom: none !important;
}

.btn-donate:hover { background: var(--amber-dark); }

.btn-primary { background: var(--teal); color: var(--white); }

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 55%, #17858e 100%);
  color: var(--white);
  padding: 5rem 1.2rem 5.5rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 1.2rem;
}

.hero p.lead {
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  opacity: 0.92;
}

.hero .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero .btn-donate { font-size: 1.05rem; padding: 0.8rem 2.2rem; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(140deg, var(--teal-dark), var(--teal));
  color: var(--white);
  padding: 3.2rem 1.2rem;
  text-align: center;
}

.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

.page-hero p { max-width: 640px; margin: 0.7rem auto 0; opacity: 0.92; }

/* ---------- Sections ---------- */
section { padding: 3.5rem 1.2rem; }

.container { max-width: 1150px; margin: 0 auto; }

.container-narrow { max-width: 820px; margin: 0 auto; }

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--teal-dark);
  margin-bottom: 0.6rem;
}

.section-sub {
  text-align: center;
  color: var(--grey);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.alt { background: var(--white); }

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
}

.alt .card { border: 1px solid #e8e4da; border-top: 4px solid var(--teal); box-shadow: none; }

.card h3 { color: var(--teal-dark); margin-bottom: 0.6rem; font-size: 1.15rem; }

.card p { color: var(--grey); font-size: 0.97rem; }

.card .icon { font-size: 1.9rem; margin-bottom: 0.7rem; display: block; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}

.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1rem;
  box-shadow: var(--shadow);
}

.stat .num { font-size: 2.2rem; font-weight: 800; color: var(--teal); display: block; }

.stat .label { color: var(--grey); font-size: 0.92rem; }

/* ---------- Donate band ---------- */
.donate-band {
  background: linear-gradient(135deg, var(--amber), #f7b733);
  text-align: center;
  padding: 3.5rem 1.2rem;
}

.donate-band h2 { color: var(--teal-dark); font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 0.6rem; }

.donate-band p { color: #5b4300; max-width: 560px; margin: 0 auto 1.6rem; }

.donate-band .btn-primary { font-size: 1.05rem; padding: 0.8rem 2.4rem; }

/* ---------- Donation page ---------- */
.tiers {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2.5rem;
}

.tier {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}

.tier.featured { border-color: var(--amber); position: relative; }

.tier.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.9rem;
  border-radius: 999px;
}

.tier .amount { font-size: 2rem; font-weight: 800; color: var(--teal); }

.tier p { color: var(--grey); font-size: 0.92rem; margin: 0.6rem 0 1.2rem; }

/* ---------- Lists ---------- */
.check-list { list-style: none; }

.check-list li {
  padding-left: 1.9rem;
  position: relative;
  margin-bottom: 0.7rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber-dark);
  font-weight: 800;
}

/* ---------- Table ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

th, td { padding: 0.9rem 1.1rem; text-align: left; }

th { background: var(--teal); color: var(--white); font-weight: 600; }

tr:nth-child(even) td { background: #f2efe8; }

/* ---------- Team ---------- */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #17858e);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.team-card h3 { color: var(--teal-dark); }

.team-card .role { color: var(--amber-dark); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.6rem; }

/* ---------- FAQ ---------- */
details {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  padding: 1.1rem 1.4rem;
}

summary {
  font-weight: 600;
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 1.02rem;
}

details p { margin-top: 0.8rem; color: var(--grey); }

/* ---------- Contact ---------- */
.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-box label { font-weight: 600; display: block; margin: 1rem 0 0.3rem; color: var(--teal-dark); }

.contact-box input, .contact-box textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #d5d0c4;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.97rem;
}

.contact-box button {
  margin-top: 1.4rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

/* ---------- Partner list ---------- */
.partner-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.partner {
  background: var(--white);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  border-left: 4px solid var(--amber);
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.partner strong { color: var(--teal-dark); }

.partner p { font-size: 0.88rem; color: var(--grey); margin-top: 0.25rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--teal-dark);
  color: #cfe3e5;
  padding: 3rem 1.2rem 2rem;
}

.footer-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

footer h4 { color: var(--white); margin-bottom: 0.8rem; }

footer ul { list-style: none; }

footer li { margin-bottom: 0.45rem; }

footer a { color: #cfe3e5; text-decoration: none; }

footer a:hover { color: var(--amber); }

.footer-bottom {
  max-width: 1150px;
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  text-align: center;
  color: #9fc0c3;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }

.mt-2 { margin-top: 2rem; }

.prose h2 { color: var(--teal-dark); margin: 2rem 0 0.8rem; }

.prose h3 { color: var(--teal); margin: 1.5rem 0 0.6rem; }

.prose p { margin-bottom: 1rem; }

.prose ul { margin: 0 0 1rem 1.4rem; }

.notice {
  background: #fff6df;
  border: 1px solid #f0d89a;
  border-radius: 10px;
  padding: 1rem 1.3rem;
  font-size: 0.93rem;
  color: #6b5200;
}

@media (max-width: 700px) {
  nav ul { gap: 0.7rem; font-size: 0.9rem; }
  .hero { padding: 3.5rem 1rem 4rem; }
}
