/* =========================================================
   OEEF (Hello + Elementor) Theme Layer
   Scope your page by adding this class to the TOP section:
   Advanced > CSS Classes:  oeef-page
   ========================================================= */

/* ---------- Design Tokens ---------- */
.oeef-page{
  --oeef-navy-900:#102f58;
  --oeef-navy-800:#163a63;
  --oeef-navy-700:#2c5181;
  --oeef-navy-650:#20457e;
  --oeef-gold:#f5b41a;
  --oeef-gold-2:#e0b043;
  --oeef-ink:#0f172a;
  --oeef-text:#334155;
  --oeef-muted:#64748b;
  --oeef-bg:#ffffff;
  --oeef-soft:#f6f8fc;
  --oeef-border:#e6edf7;

  --oeef-radius-xl:18px;
  --oeef-radius-lg:14px;
  --oeef-radius-md:12px;

  --oeef-shadow: 0 12px 30px rgba(16, 47, 88, .12);
  --oeef-shadow-soft: 0 10px 25px rgba(16, 47, 88, .08);

  --oeef-container-pad: clamp(16px, 3vw, 36px);
}

.oeef-page,
.oeef-page *{
  box-sizing:border-box;
}

.oeef-page{
  color:var(--oeef-text);
  background:var(--oeef-bg);
}

/* ---------- Typography Helpers ---------- */
.oeef-page .oeef-h1{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  font-size: clamp(34px, 4vw, 60px);
  color:#fff;
}
.oeef-page .oeef-accent{ color: var(--oeef-gold); }
.oeef-page .oeef-lead{
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
}

/* ---------- Header (optional) ---------- */
/* Add class to your header section: oeef-header */
.oeef-page .oeef-header{
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.oeef-page .oeef-header.is-scrolled{
  box-shadow: 0 10px 25px rgba(16,47,88,.12);
}

/* ---------- Hero ---------- */
/* Add class to hero section: oeef-hero */
.oeef-page .oeef-hero{
  background: radial-gradient(800px 400px at 70% 35%, rgba(245,180,26,.18), rgba(245,180,26,0) 60%),
              linear-gradient(135deg, var(--oeef-navy-800) 0%, var(--oeef-navy-700) 55%, var(--oeef-navy-650) 100%);
  border-radius: 0 0 26px 26px;
  overflow: hidden;
  padding: clamp(46px, 6vw, 86px) 0;
  position: relative;
}

/* pill badge "Transforming Lives Together" */
.oeef-page .oeef-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  line-height: 1;
}

/* hero buttons */
.oeef-page .oeef-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration:none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  outline: none;
}
.oeef-page .oeef-btn:focus-visible{
  box-shadow: 0 0 0 4px rgba(245,180,26,.25);
}

.oeef-page .oeef-btn--primary{
  background: var(--oeef-gold);
  color: #1a2b44;
  box-shadow: 0 14px 30px rgba(245,180,26,.25);
}
.oeef-page .oeef-btn--primary:hover{ transform: translateY(-1px); }

.oeef-page .oeef-btn--ghost{
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.20);
}
.oeef-page .oeef-btn--ghost:hover{
  background: rgba(255,255,255,.14);
  transform: translateY(-1px);
}

/* Hero stat row */
.oeef-page .oeef-stats{
  display:flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.oeef-page .oeef-stat{
  min-width: 120px;
}
.oeef-page .oeef-stat__num{
  font-weight: 800;
  color: var(--oeef-gold);
  font-size: 20px;
  line-height: 1.2;
}
.oeef-page .oeef-stat__label{
  color: rgba(255,255,255,.72);
  font-size: 12px;
  margin-top: 4px;
}

/* Floating cards in hero (right side) */
.oeef-page .oeef-float-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 14px;
  box-shadow: var(--oeef-shadow);
  padding: 14px 16px;
}

/* ---------- General Sections ---------- */
.oeef-page .oeef-section{
  padding: clamp(42px, 6vw, 80px) 0;
}
.oeef-page .oeef-section--soft{
  background: var(--oeef-soft);
}

/* Title block */
.oeef-page .oeef-eyebrow{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 700;
  color: var(--oeef-gold-2);
}
.oeef-page .oeef-title{
  font-family:"Playfair Display", serif;
  font-weight: 700;
  letter-spacing:-.02em;
  font-size: clamp(26px, 2.8vw, 40px);
  color: var(--oeef-ink);
  line-height: 1.15;
}
.oeef-page .oeef-subtitle{
  color: var(--oeef-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 720px;
  margin: 8px auto 0;
}

/* ---------- Cards ---------- */
.oeef-page .oeef-card{
  background:#fff;
  border: 1px solid var(--oeef-border);
  border-radius: var(--oeef-radius-xl);
  box-shadow: var(--oeef-shadow-soft);
  padding: 18px;
}
.oeef-page .oeef-card:hover{
  transform: translateY(-2px);
  transition: transform .18s ease;
}

.oeef-page .oeef-checklist{
  list-style:none;
  padding:0;
  margin: 14px 0 0;
}
.oeef-page .oeef-checklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: var(--oeef-muted);
  font-size: 13px;
  margin: 10px 0;
}
.oeef-page .oeef-checklist li:before{
  content:"";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  margin-top: 1px;
  background: rgba(245,180,26,.18);
  border: 1px solid rgba(245,180,26,.35);
}

/* ---------- Focus Area Cards ---------- */
/* Add class on each focus card container: oeef-feature-card */
.oeef-page .oeef-feature-card{
  background:#fff;
  border:1px solid var(--oeef-border);
  border-radius: var(--oeef-radius-xl);
  box-shadow: var(--oeef-shadow-soft);
  padding: 18px;
  min-height: 140px;
}
.oeef-page .oeef-icon-badge{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: #f3f7ff;
  border: 1px solid var(--oeef-border);
  margin-bottom: 12px;
}
.oeef-page .oeef-feature-title{
  font-weight: 800;
  color: var(--oeef-ink);
  margin: 2px 0 6px;
}
.oeef-page .oeef-feature-text{
  color: var(--oeef-muted);
  font-size: 13px;
  line-height: 1.75;
}

/* ---------- Stories / Testimonials ---------- */
/* Add class to each story card container: oeef-story-card */
.oeef-page .oeef-story-card{
  background:#fff;
  border:1px solid var(--oeef-border);
  border-radius: var(--oeef-radius-xl);
  box-shadow: var(--oeef-shadow-soft);
  overflow:hidden;
}
.oeef-page .oeef-story-body{
  padding: 16px 18px 18px;
  position:relative;
}
.oeef-page .oeef-quote-mark{
  position:absolute;
  right: 14px;
  top: 12px;
  opacity:.25;
  font-size: 34px;
  color: var(--oeef-gold-2);
}
.oeef-page .oeef-story-text{
  color: var(--oeef-muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0 0 10px;
}
.oeef-page .oeef-story-name{
  font-weight: 800;
  color: var(--oeef-ink);
  font-size: 13px;
}
.oeef-page .oeef-story-loc{
  color: var(--oeef-muted);
  font-size: 12px;
}

/* ---------- CTA Band ("Get involved today") ---------- */
/* Add class to the whole blue CTA section: oeef-cta-band */
.oeef-page .oeef-cta-band{
  background: linear-gradient(135deg, var(--oeef-navy-800), var(--oeef-navy-650));
  border-radius: 26px 26px 0 0;
  padding: clamp(46px, 6vw, 80px) 0;
  color:#fff;
}
.oeef-page .oeef-cta-band .oeef-title{ color:#fff; }
.oeef-page .oeef-cta-band .oeef-subtitle{ color: rgba(255,255,255,.72); }

.oeef-page .oeef-cta-card{
  background:#fff;
  border-radius: var(--oeef-radius-xl);
  border:1px solid rgba(255,255,255,.45);
  box-shadow: var(--oeef-shadow);
  padding: 18px;
  text-align:center;
}
.oeef-page .oeef-cta-card h4{
  font-weight: 800;
  margin: 10px 0 6px;
  color: var(--oeef-ink);
}
.oeef-page .oeef-cta-card p{
  color: var(--oeef-muted);
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0 0 12px;
}

/* ---------- Footer ---------- */
/* Add class to footer section: oeef-footer */
.oeef-page .oeef-footer{
  background: var(--oeef-navy-650);
  color: rgba(255,255,255,.78);
}
.oeef-page .oeef-footer a{ color: rgba(255,255,255,.78); }
.oeef-page .oeef-footer a:hover{ color: #fff; }

/* ---------- Reveal Animation (used by oeef.js) ---------- */
.oeef-page .oeef-reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.oeef-page .oeef-reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce){
  .oeef-page .oeef-reveal{ opacity:1; transform:none; transition:none; }
  .oeef-page .oeef-btn{ transition:none; }
}

/* ---------- Responsive Tweaks ---------- */
@media (max-width: 767px){
  .oeef-page .oeef-stats{ gap:16px; }
  .oeef-page .oeef-float-card{ width: 100%; }
}