/* =============== */
/* Base + tokens   */
/* =============== */
:root{
  --bg: #f6fbff;
  --ink: #13233a;
  --muted: #4a5a73;

  --card: rgba(255,255,255,.86);
  --card-strong: rgba(255,255,255,.94);

  --brand: #2f7fd6;
  --brand-2: #1f66b7;
  --line: rgba(19,35,58,.12);

  --shadow: 0 14px 40px rgba(19,35,58,.12);
  --shadow-soft: 0 10px 24px rgba(19,35,58,.10);

  --radius: 18px;
  --radius-lg: 24px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 65%, #ffffff 100%);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--max), calc(100% - 2rem));
  margin-inline:auto;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.85rem 1.05rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:600;
  line-height:1;
  white-space:nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
  color:#fff;
  box-shadow: 0 10px 18px rgba(47,127,214,.28);
}
.btn-primary:hover{ box-shadow: 0 14px 28px rgba(47,127,214,.32); }

.btn-ghost{
  background: rgba(255,255,255,.7);
  border-color: var(--line);
}
.btn-ghost:hover{ background: rgba(255,255,255,.92); }

.btn-soft{
  background: rgba(47,127,214,.10);
  border-color: rgba(47,127,214,.18);
}
.btn-soft:hover{ background: rgba(47,127,214,.14); }

.btn-small{
  padding:.65rem .9rem;
  font-size:.95rem;
}

/* =============== */
/* Header          */
/* =============== */
.site-header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
/* Brand (logo + text) */
.brand{
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 220px;
}

.brand-logo{
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.brand-text{
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.85rem 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  min-width: 220px;
}
.brand-mark{
  width:34px; height:34px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, #ffffff 0 35%, rgba(255,255,255,0) 36%),
    linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 10px 20px rgba(47,127,214,.18);
  border: 1px solid rgba(255,255,255,.7);
}
.brand-text{
  font-weight:700;
  letter-spacing:.2px;
}

.nav{
  display:flex;
  align-items:center;
  gap:1.05rem;
}
.nav a{
  font-weight:600;
  color: rgba(19,35,58,.86);
}
.nav a:hover{ color: var(--brand-2); }

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  cursor:pointer;
}

/* Mobile nav behavior */
@media (max-width: 860px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }

  .nav{
    position: absolute;
    top: 72px;
    right: 1rem;
    left: 1rem;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:.6rem;
    padding: .9rem;
    background: rgba(255,255,255,.92);
    border:1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }
  .nav.is-open{ display:flex; }
  .nav a{ padding:.7rem .75rem; border-radius: 12px; }
  .nav a:hover{ background: rgba(47,127,214,.08); }
}

/* =============== */
/* Hero            */
/* =============== */
.heritage-illustration{
  margin-top: .75rem;
  width: 100%;
  max-width: 260px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero{
  position:relative;
  overflow:hidden;
  padding: 3.4rem 0 2.2rem;
}

/* Soft illustrated-style backdrop (no external image needed) */
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 420px at 15% 20%, rgba(47,127,214,.18), transparent 65%),
    radial-gradient(900px 380px at 85% 25%, rgba(31,102,183,.14), transparent 65%),
    radial-gradient(800px 360px at 55% 95%, rgba(47,127,214,.10), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(246,251,255,.85) 100%);
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  margin: 0 0 .8rem;
  padding:.45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  color: rgba(19,35,58,.84);
  font-weight:600;
  font-size:.95rem;
}

.hero-copy h1{
  margin: 0 0 .9rem;
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  letter-spacing:-.02em;
  line-height:1.12;
}
.lead{
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height:1.6;
  color: var(--muted);
  max-width: 60ch;
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
  margin-bottom: 1.1rem;
}

.hero-note{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  padding:.65rem .9rem;
  border-radius: 14px;
  background: rgba(255,255,255,.68);
  border: 1px dashed rgba(19,35,58,.18);
  color: rgba(19,35,58,.86);
  font-size:.95rem;
}

.hero-visual{
  display: grid;
  gap: .95rem;
  justify-items: end;

  /* Soft background blending */
  opacity: 0.95;
  filter: drop-shadow(0 8px 16px rgba(19,35,58,.12));
}


.logo-card{
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.logo{
  width: min(300px, 100%);
  margin-inline: auto;

  /* Soft blend with background */
  opacity: 0.92;
  filter: drop-shadow(0 6px 12px rgba(19,35,58,.15));
}

.motto{
  margin: .85rem 0 0;
  text-align:center;
  color: rgba(19,35,58,.72);
  font-weight:600;
  letter-spacing:.2px;
}

.visual-badge{
  width:min(420px, 100%);
  display:flex;
  align-items:flex-start;
  gap:.8rem;
  padding: .95rem 1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.visual-badge i{
  font-size: 1.25rem;
  color: var(--brand-2);
  margin-top:.1rem;
}
.badge-title{ font-weight:700; }
.badge-sub{
  margin-top:.15rem;
  color: var(--muted);
  font-size:.95rem;
}

/* Feature strip */
.feature-strip{
  position:relative;
  margin-top: 2.1rem;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature{
  display:flex;
  gap: .9rem;
  padding: 1.05rem 1.05rem;
  border-radius: var(--radius);
  background: var(--card-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.feature-icon{
  width:44px; height:44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(47,127,214,.12);
  border: 1px solid rgba(47,127,214,.18);
  flex: 0 0 auto;
}
.feature-icon i{
  color: var(--brand-2);
  font-size: 1.1rem;
}

.feature-text h3{
  margin:0 0 .2rem;
  font-size: 1.05rem;
}
.feature-text p{
  margin:0;
  color: var(--muted);
  line-height:1.5;
  font-size: .98rem;
}

/* Responsive layout */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ justify-items:start; }
}

@media (max-width: 860px){
  .feature-strip{ grid-template-columns: 1fr; }
  .hero{ padding: 2.6rem 0 1.8rem; }
}
@media (max-width: 520px){
  .brand-logo{
    width: 30px;
    height: 30px;
  }

  .brand-text{
    font-size: .95rem;
  }
}
.about-us{
  padding: 80px 8%;
  background: #fff;
}

.about-us h2{
  text-align:center;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 0 0 50px;
}

.about-wrap{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items:center;
}

.about-cards{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 28px;
  align-items:start;
}

.about-card h3{
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.about-card p{
  margin: 0;
  line-height: 1.75;
  color: #444;
}

.about-divider{
  width:1px;
  background:#ddd;
  height: 100%;
  display:block;
}

.about-image img{
  width:100%;
  max-width: 440px;
  display:block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px){
  .about-wrap{
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-cards{
    grid-template-columns: 1fr;
  }
  .about-divider{
    display:none;
  }
  .about-us{
    text-align:center;
  }
}
.about-us{
  padding: 80px 8%;
  background: #fff;
}

.about-us h2{
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
}

.about-wrap{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-cards{
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 30px;
}

.about-card h3{
  margin-bottom: 12px;
}

.about-card p{
  line-height: 1.7;
  color: #444;
}

.about-divider{
  width: 1px;
  background: #ddd;
}

.about-image img{
  width: 100%;
  max-width: 440px;
  display: block;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 900px){
  .about-wrap{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-cards{
    grid-template-columns: 1fr;
  }

  .about-divider{
    display: none;
  }
}
.whatwedo{
  padding: 70px 8%;
  background: #f6f7fb; /* soft light like your screenshot */
}

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

.whatwedo__title{
  text-align: center;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 0;
  color: #1b1b1b;
}

.whatwedo__subtitle{
  text-align: center;
  margin: 10px 0 34px;
  color: #6b7280;
  font-size: 1rem;
}

.whatwedo__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.whatwedo__card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.whatwedo__cardhead{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.whatwedo__icon{
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0,0,0,.04);
  display: grid;
  place-items: center;
  color: rgba(0,0,0,.55);
  flex: 0 0 auto;
}

.whatwedo__icon svg{
  width: 26px;
  height: 26px;
}

.whatwedo__heading{
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.1;
  color: #111827;
}

.whatwedo__list{
  margin: 0;
  padding-left: 18px; /* bullet indent */
  color: #4b5563;
  line-height: 1.6;
}

.whatwedo__list li{
  margin: 10px 0;
}

/* Responsive */
@media (max-width: 980px){
  .whatwedo__grid{
    grid-template-columns: 1fr;
  }
  .whatwedo__card{
    text-align: left;
  }
}
.events-involved{
  padding: 60px 8%;
  background: #f3f6fa;
}

.events-wrap{
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
}

.events-box,
.involved-box{
  background: #fff;
  border-radius: 14px;
  padding: 26px 30px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.events-box h3,
.involved-box h3{
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.events-subtitle{
  margin: 0 0 18px;
  color: #6b7280;
}

.events-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn.primary{
  background: #1f7db6;
  color: #fff;
}

.btn.outline{
  border: 1px solid #d1d5db;
  color: #111827;
  background: transparent;
}

.involved-list{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.involved-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #374151;
}

.involved-list .icon{
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 900px){
  .events-wrap{
    grid-template-columns: 1fr;
  }
}
.final-cta{
  padding: 40px 8%;
  background: linear-gradient(90deg, #2a7fb8, #2f8ec6);
}

.final-cta__inner{
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.final-cta__title{
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
}

.final-cta__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,.35);
  transition: transform .12s ease, opacity .12s ease;
}

.cta-btn:hover{
  transform: translateY(-1px);
  opacity: .95;
}

.cta-btn--outline{
  background: transparent;
  color: #fff;
}

.cta-btn--light{
  background: rgba(255,255,255,.88);
  color: #0f172a;
  border-color: rgba(255,255,255,.65);
}

.cta-btn__icon{
  font-size: 1.05rem;
  line-height: 1;
}

/* Mobile */
@media (max-width: 860px){
  .final-cta__inner{
    justify-content: center;
    text-align: center;
  }
}
/* Modal */
.volunteer-form button {
  margin-top: 15px;
  padding: 10px;
}

.consent-note {
  font-size: 12px;
  color: #555;
  margin-top: 6px;
}

.submit-btn {
  width: 100%;
  margin-top: 16px;
  padding: 12px 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
}

/* Embedded Google Forms */
.contact-embed,
.volunteer-embed {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 75vh;
  border: 0;
}

@media (max-width: 768px) {
  .contact-embed,
  .volunteer-embed {
    height: calc(100vh - 110px);
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  #contact-modal .modal-box,
  #volunteer-modal .modal-box {
    padding: 44px 0 0;
    overflow: hidden;
    height: 100vh;
  }

  #contact-modal .modal-logo,
  #volunteer-modal .modal-logo {
    display: none;
  }

  #contact-modal .close,
  #volunteer-modal .close {
    top: 8px;
    left: 10px;
    right: auto;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    display: grid;
    place-items: center;
  }

  #contact-modal .contact-embed,
  #volunteer-modal .volunteer-embed {
    height: calc(100vh - 44px);
  }
}

#contact-modal .modal-box,
#volunteer-modal .modal-box {
  overflow: hidden;
  height: 90vh;
}

#contact-modal .close,
#volunteer-modal .close {
  top: 10px;
  left: 12px;
  right: auto;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
}

#contact-modal .contact-embed,
#volunteer-modal .volunteer-embed {
  height: 100%;
}
/* ===== Shared modal base (works with donate/contact/volunteer) ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow-y: auto;
}

.modal.active { display: block; }

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* Donate modal card */
.modal-box {
  position: relative;
  max-width: 720px;
  margin: 5vh auto;
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .modal-box {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
  }
}

.close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  line-height: 1;
  border: none;
  background: transparent;
  cursor: pointer;
}

.modal-logo { text-align: center; margin-bottom: 10px; }
.modal-logo img { max-width: 140px; height: auto; }

.modal-title { text-align: center; margin: 0 0 10px; }
.modal-title span { font-size: 0.85em; color: #666; }

.modal-intro { margin: 0 0 14px; color: #444; line-height: 1.4; }
.small-note { margin: 10px 0 0; font-size: 13px; color: #555; }

.modal-box label:not(.consent) {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}

.donate-block { margin-top: 14px; }
.block-title { display: block; font-weight: 700; margin-bottom: 8px; }

.toggle-row { display: flex; gap: 12px; flex-wrap: wrap; }
.toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 520px) {
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
}

.amount-btn {
  padding: 12px 10px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
}

.amount-btn.active {
  border-color: #222;
}

.custom-label { margin-top: 12px; display: block; font-weight: 600; }

.custom-amount,
.modal-box input,
.modal-box select,
.modal-box textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
}

.consent {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.35;
}

.consent input { margin-top: 3px; }

.stripe-placeholder {
  border: 1px dashed #bbb;
  border-radius: 12px;
  padding: 14px;
  color: #555;
  font-size: 14px;
  margin-bottom: 12px;
}

.donate-submit {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.success { margin-top: 10px; font-size: 14px; }
.footer-note { margin-top: 14px; font-size: 12px; color: #555; }

.donate-page {
  min-height: 100vh;
  background:
    radial-gradient(900px 360px at 10% 10%, rgba(47,127,214,.18), transparent 60%),
    radial-gradient(700px 320px at 90% 15%, rgba(31,102,183,.14), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.donate-layout {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.donate-panel {
  width: min(720px, 100%);
  padding: 32px;
  border: 1px solid rgba(19,35,58,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 60px rgba(19,35,58,.12);
  text-align: center;
}

.donate-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--brand-2);
}

.donate-page-logo {
  width: 84px;
  margin: 0 auto 18px;
}

.donate-kicker {
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.donate-panel h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.donate-copy,
.donate-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bank-details {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.bank-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(47,127,214,.08);
  border: 1px solid rgba(47,127,214,.14);
}

.bank-label {
  color: rgba(19,35,58,.68);
  font-weight: 600;
}

.bank-value {
  text-align: center;
  font-size: 1.02rem;
}

.donate-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 640px) {
  .donate-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .bank-row {
    padding: 16px 18px;
  }
}

