/*====================================================================
   Custom CSS File for most of Desktop and Mobile look for Kipya Template
   Developed by Amazing LWEGATECH LTD team.
===================================================================**/

:root {
  /* ── Typography ──────────────────────────────────────────────── */
  --kpy-font:           "Quicksand", sans-serif;
  --kpy-font-2:         "Quicksand", sans-serif;
  --kpy-font-3:         "Quicksand", sans-serif;
  --kpy-font-size:      16px;

  /* ── Brand Primary ─────────────────────────────────────────── */
  --kpy-primary:        #C8791A;
  --kpy-primary-rgb:    200, 121, 26;
  --kpy-primary-light:  #E8A24A;
  --kpy-primary-dark:   #8F520D;

  /* ── Brand Secondary ────────────────────────────────────────── */
  --kpy-secondary:      #008000;
  --kpy-secondary-rgb:  37, 162, 68;
  --kpy-secondary-2:    #1A7A33;
  --kpy-secondary-light:#4DC872;

  /* ── Brand Accent: Magenta ──────────────────────────────────── */
  --kpy-pink:           #E5007D;
  --kpy-pink-rgb:       229, 0, 125;
  --kpy-pink-light:     #FF4DAC;
  --kpy-pink-dark:      #A8005C;

  /* ── Neutrals ────────────────────────────────────────────────── */
  --kpy-light:          #F5EFE6;
  --kpy-light-green:    #EAF7EE;
  --kpy-grey:           #6B6B6B;
  --kpy-grey-light:     #D4D4D4;
  --kpy-base:           #1C1C1C;
  --kpy-base-rgb:       28, 28, 28;
  --kpy-white:          #FFFFFF;
  --kpy-white-rgb:      255, 255, 255;
  --kpy-black:          #111111;

  /* ── Accent / Utility ────────────────────────────────────────── */
  --kpy-gold:           #E8A020;
  --kpy-success:        #25A244;
  --kpy-warning:        #D4820F;
  --kpy-error:          #B03A2E;

  /* ── Shadows & Borders ───────────────────────────────────────── */
  --kpy-shadow-sm:      0 2px 8px rgba(200, 121, 26, 0.12);
  --kpy-shadow-md:      0 4px 20px rgba(200, 121, 26, 0.18);
  --kpy-shadow-lg:      0 8px 40px rgba(37, 162, 68, 0.20);
  --kpy-shadow-pink:    0 4px 20px rgba(229, 0, 125, 0.25);
  --kpy-border-radius:  10px;
  --kpy-border-color:   rgba(200, 121, 26, 0.20);

  /* ── Transitions ─────────────────────────────────────────────── */
  --kpy-transition:     all 0.3s ease;
}

/* ── Base Reset & Typography ──────────────────────────────────────── */
html, body { font-family: var(--kpy-font) !important; color: var(--kpy-base); font-size: var(--kpy-font-size); font-weight: 400; line-height: 1.7; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; margin: 0; font-optical-sizing: auto; background-color: var(--kpy-white); }

/* ── Headings — BLACK base, magenta spans ─────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--kpy-font) !important; font-weight: 700; color: var(--kpy-black); line-height: 1.25; margin-bottom: 0.5em; }
h1 { font-size: clamp(2rem,   5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* ── Heading accent spans → MAGENTA ──────────────────────────────── */
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span { color: var(--kpy-pink); }

/* Gutenberg heading block spans */
.wp-block-heading span { color: var(--kpy-pink) !important; }

/* ── Links ────────────────────────────────────────────────────────── */
a { color: var(--kpy-primary); text-decoration: none; font-weight: 600; transition: var(--kpy-transition); }
a:hover { color: var(--kpy-pink); text-decoration: underline; text-decoration-color: var(--kpy-pink); text-underline-offset: 3px; }

/* ── Buttons (baseline) ───────────────────────────────────────────── */
.btn-primary, .kpy-btn-primary { background-color: var(--kpy-primary); color: var(--kpy-white); border: none; font-family: var(--kpy-font) !important; font-weight: 700; border-radius: var(--kpy-border-radius); padding: 0.65em 1.6em; transition: var(--kpy-transition); box-shadow: var(--kpy-shadow-sm); }
.btn-primary:hover, .kpy-btn-primary:hover { background-color: var(--kpy-pink); box-shadow: var(--kpy-shadow-pink); transform: translateY(-2px); }
.btn-secondary, .kpy-btn-secondary { background-color: var(--kpy-secondary); color: var(--kpy-white); border: none; font-family: var(--kpy-font) !important; font-weight: 700; border-radius: var(--kpy-border-radius); padding: 0.65em 1.6em; transition: var(--kpy-transition); }
.btn-secondary:hover, .kpy-btn-secondary:hover { background-color: var(--kpy-pink); transform: translateY(-2px); }

/* ── Utility: brand text colors ───────────────────────────────────── */
.text-primary   { color: var(--kpy-primary)   !important; }
.text-secondary { color: var(--kpy-secondary) !important; }
.text-pink      { color: var(--kpy-pink)       !important; }
.text-gold      { color: var(--kpy-gold)       !important; }
.text-muted     { color: var(--kpy-grey)       !important; }

/* ── Utility: brand backgrounds ───────────────────────────────────── */
.bg-primary     { background-color: var(--kpy-primary)     !important; }
.bg-secondary   { background-color: var(--kpy-secondary)   !important; }
.bg-pink        { background-color: var(--kpy-pink)        !important; }
.bg-light       { background-color: var(--kpy-light)       !important; }
.bg-light-green { background-color: var(--kpy-light-green) !important; }




/* ── Morph Shape Keyframes ──────────────────────────────── */
@keyframes morphShape {
  0%   { border-radius: 56.2165% 43.7835% 34.1856% 65.8144% / 65.4433% 65.4433% 34.5567% 34.5567%; }
  25%  { border-radius: 43.7835% 56.2165% 65.8144% 34.1856% / 34.5567% 65.4433% 65.4433% 34.5567%; }
  50%  { border-radius: 34.1856% 65.8144% 56.2165% 43.7835% / 34.5567% 34.5567% 65.4433% 65.4433%; }
  75%  { border-radius: 65.8144% 34.1856% 43.7835% 56.2165% / 65.4433% 34.5567% 34.5567% 65.4433%; }
  100% { border-radius: 56.2165% 43.7835% 34.1856% 65.8144% / 65.4433% 65.4433% 34.5567% 34.5567%; }
}
@keyframes morphOverlay {
  0%   { border-bottom-left-radius: 65.8144% 34.5567%; border-bottom-right-radius: 34.1856% 34.5567%; border-top-left-radius: 56.2165% 65.4433%; border-top-right-radius: 43.7835% 65.4433%; }
  33%  { border-bottom-left-radius: 40% 55%; border-bottom-right-radius: 60% 45%; border-top-left-radius: 45% 60%; border-top-right-radius: 55% 40%; }
  66%  { border-bottom-left-radius: 70% 30%; border-bottom-right-radius: 30% 70%; border-top-left-radius: 60% 50%; border-top-right-radius: 40% 50%; }
  100% { border-bottom-left-radius: 65.8144% 34.5567%; border-bottom-right-radius: 34.1856% 34.5567%; border-top-left-radius: 56.2165% 65.4433%; border-top-right-radius: 43.7835% 65.4433%; }
}
@keyframes floatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.6; } }


/* Hero */
.vol-hero { position:relative; min-height:520px; background-size:cover; background-position:center; display:flex; align-items:center; }
.vol-hero__overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(42,96,48,.82) 0%, rgba(28,28,28,.65) 100%); display:flex; align-items:center; justify-content:center; }
.vol-hero__leaves { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.vol-leaf { position:absolute; font-size:2.5rem; opacity:.35; animation:leafFloat 4s ease-in-out infinite; }
@keyframes leafFloat { 0%,100%{transform:translateY(0) rotate(-5deg);} 50%{transform:translateY(-18px) rotate(5deg);} }
.vol-hero__content { position:relative; text-align:center; padding:2rem; color:#fff; }
.vol-hero__eyebrow { display:inline-block; background:rgba(200,121,26,.9); color:#fff; font-size:.8rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; padding:.35em 1.1em; border-radius:50px; margin-bottom:1rem; }
.vol-hero__title { font-size:clamp(2.2rem,5vw,3.5rem); font-weight:700; color:#fff; margin:0 0 .75rem; line-height:1.15; text-shadow:0 2px 20px rgba(0,0,0,.3); }
.vol-hero__sub { font-size:1.15rem; color:rgba(255,255,255,.88); margin-bottom:1.2rem; font-weight:500; }
.vol-hero__breadcrumb { font-size:.85rem; color:rgba(255,255,255,.7); }
.vol-hero__breadcrumb a { color:var(--kpy-primary-light); font-weight:600; }


/* ============================================================
   Menu
   ============================================================ */

/* ══ 1. TOP BAR ══════════════════════════════════════════════ */
.hau-topbar { background:var(--kpy-secondary); color:rgba(255,255,255,0.9); font-family:var(--kpy-font); font-size:0.8rem; font-weight:500; padding:0.48rem 0; line-height:1; }
.hau-topbar__inner { display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.hau-topbar__left { display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap; }
.hau-topbar__item { display:flex; align-items:center; gap:0.38rem; white-space:nowrap; }
.hau-topbar__item i { color:var(--kpy-primary-light); font-size:0.7rem; }
.hau-topbar__item a { color:rgba(255,255,255,0.9); text-decoration:none; font-weight:500; transition:color 0.2s; }
.hau-topbar__item a:hover { color:var(--kpy-pink); }
.hau-topbar__right { display:flex; align-items:center; gap:0.42rem; }
.hau-topbar__label { font-size:0.76rem; font-weight:600; color:rgba(255,255,255,0.5); margin-right:0.1rem; }
.hau-topbar__social { display:inline-flex; align-items:center; justify-content:center; width:24px; height:24px; border:1px solid rgba(255,255,255,0.2); border-radius:50%; color:rgba(255,255,255,0.82); font-size:0.68rem; text-decoration:none; transition:all 0.22s; }
.hau-topbar__social:hover { background:var(--kpy-pink); border-color:var(--kpy-pink); color:#fff; transform:translateY(-1px); }
.hau-topbar__search-btn { display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.18); border-radius:50%; color:#fff; font-size:0.74rem; cursor:pointer; margin-left:0.2rem; transition:all 0.22s; }
.hau-topbar__search-btn:hover { background:var(--kpy-pink); border-color:var(--kpy-pink); }

/* ══ 2. SEARCH BAR ═══════════════════════════════════════════ */
.hau-search-bar { background:var(--kpy-secondary-2); max-height:0; overflow:hidden; transition:max-height 0.3s ease, padding 0.3s ease; position:relative; z-index:998; }
.hau-search-bar.is-open { max-height:68px; padding:0.6rem 0; }
.hau-search-bar .container { display:flex; align-items:center; gap:0.75rem; }
.hau-search-bar form, .hau-search-bar .search-form { flex:1; display:flex; }
.hau-search-bar input[type="search"] { flex:1; border:none; padding:0.5rem 0.9rem; font-family:var(--kpy-font); font-size:0.88rem; outline:none; border-radius:4px 0 0 4px; }
.hau-search-bar input[type="submit"], .hau-search-bar button[type="submit"] { background:var(--kpy-primary); color:#fff; border:none; padding:0.5rem 1.1rem; font-family:var(--kpy-font); font-weight:700; cursor:pointer; border-radius:0 4px 4px 0; transition:background 0.2s; }
.hau-search-bar input[type="submit"]:hover, .hau-search-bar button[type="submit"]:hover { background:var(--kpy-pink); }
.hau-search-bar__close { background:transparent; border:none; color:rgba(255,255,255,0.6); font-size:1rem; cursor:pointer; padding:0; transition:color 0.2s; }
.hau-search-bar__close:hover { color:var(--kpy-pink); }

/* ══ 3. HEADER SHELL ═════════════════════════════════════════ */
.hau-header { position:sticky; top:0; left:0; right:0; z-index:1000; background:#fff; box-shadow:0 2px 12px rgba(42,96,48,0.09); transition:box-shadow 0.3s; font-family:var(--kpy-font); }
.hau-header--scrolled { box-shadow:0 4px 20px rgba(42,96,48,0.15); }
.hau-header__inner { display:grid; grid-template-columns:auto 1fr auto; align-items:stretch; min-height:100px; transition:min-height 0.3s; }
.hau-header--scrolled .hau-header__inner { min-height:72px; }
.hau-header__nav--main { display:flex; align-items:stretch; justify-content:flex-start; padding-left:0.25rem; }
.hau-header__logo { position:relative; z-index:20; display:flex; align-items:center; justify-content:center; align-self:center; }
.hau-header__actions { display:flex; align-items:center; gap:0.5rem; padding-left:1.25rem; align-self:center; }

/* ══ 4. OVAL LOGO ════════════════════════════════════════════ */
.hau-logo-oval { display:flex; align-items:center; justify-content:center; width:150px; height:170px; background:#fff; border-radius:50%; box-shadow:0 8px 28px rgba(42,96,48,0.15), 0 2px 6px rgba(200,121,26,0.09); border:3px solid rgba(200,121,26,0.13); margin-bottom:-54px; transition:transform 0.3s, box-shadow 0.3s, width 0.3s, height 0.3s, margin-bottom 0.3s; z-index:20; overflow:hidden; }
.hau-logo-oval:hover { transform:translateY(-4px); box-shadow:0 14px 36px rgba(229,0,125,0.18), 0 4px 10px rgba(229,0,125,0.12); }
.hau-logo-oval__img { width:124px; height:124px; object-fit:contain; padding:4px; transition:width 0.3s, height 0.3s; }
.hau-logo-oval__text { font-family:var(--kpy-font); font-size:0.95rem; font-weight:700; color:var(--kpy-primary); text-decoration:none; text-align:center; padding:1rem; }
.hau-header--scrolled .hau-logo-oval { width:96px; height:112px; margin-bottom:-24px; }
.hau-header--scrolled .hau-logo-oval__img { width:76px; height:76px; }

/* ══ 5. PRIMARY DESKTOP NAV ══════════════════════════════════ */
.hau-nav { display:flex; align-items:stretch; list-style:none; margin:0; padding:0; height:100%; }
.hau-nav > li { position:relative; display:flex; align-items:stretch; }
.hau-nav > li > a.hau-nav-link { display:flex; align-items:center; gap:0.25rem; font-family:var(--kpy-font); font-size:0.82rem; font-weight:700; color:var(--kpy-base) !important; text-transform:uppercase; letter-spacing:0.04em; padding:0 1rem !important; white-space:nowrap; text-decoration:none !important; background:none !important; transition:color 0.2s; height:100%; }
.hau-nav > li > a.hau-nav-link:hover, .hau-nav > li:hover > a.hau-nav-link, .hau-nav > li.current-menu-item > a.hau-nav-link, .hau-nav > li.current-menu-ancestor > a.hau-nav-link { color:var(--kpy-pink) !important; }
.hau-caret { display:inline-flex; align-items:center; font-size:0; line-height:1; transition:transform 0.22s; }
.hau-caret i { font-size:0.55rem; opacity:0.5; }
.hau-nav > li:hover .hau-caret { transform:rotate(-180deg); }
.hau-nav > li:hover .hau-caret i { opacity:0.85; color:var(--kpy-pink); }
.hau-nav .hau-sub, .hau-nav ul.sub-menu, .hau-nav .dropdown-menu, .hau-nav .dropdown-menu.show { display:none !important; opacity:0; visibility:hidden; pointer-events:none; }
.hau-nav > li:hover > .hau-sub, .hau-nav > li:hover > ul.sub-menu, .hau-nav > li:focus-within > .hau-sub, .hau-nav > li:focus-within > ul.sub-menu { display:block !important; opacity:1; visibility:visible; pointer-events:all; }
.hau-nav > li > .hau-sub, .hau-nav > li > ul.sub-menu { position:absolute; top:100%; left:50%; transform:translateX(-50%); min-width:210px; max-width:280px; background:#fff; border-top:3px solid var(--kpy-pink); border-radius:0 0 8px 8px; box-shadow:0 12px 32px rgba(229,0,125,0.12), 0 4px 10px rgba(0,0,0,0.07); padding:0.35rem 0; list-style:none; margin:0; z-index:1050; animation:hauDrop 0.17s ease both; }
.hau-nav > li > .hau-sub::before, .hau-nav > li > ul.sub-menu::before { content:''; position:absolute; top:-4px; left:0; right:0; height:4px; }

@keyframes hauDrop { from { opacity:0; transform:translateX(-50%) translateY(6px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }

.hau-nav .hau-sub > li > a, .hau-nav ul.sub-menu > li > a { display:block; font-family:var(--kpy-font); font-size:0.855rem; font-weight:500; color:var(--kpy-base) !important; padding:0.52rem 1.15rem !important; text-decoration:none; border-left:3px solid transparent; white-space:nowrap; transition:all 0.15s; }
.hau-nav .hau-sub > li > a:hover, .hau-nav ul.sub-menu > li > a:hover, .hau-nav .hau-sub > li.current-menu-item > a, .hau-nav ul.sub-menu > li.current-menu-item > a { color:var(--kpy-pink) !important; background:rgba(229,0,125,0.06); border-left-color:var(--kpy-pink); padding-left:1.4rem !important; }

/* ══ 6. DONATE BUTTON ════════════════════════════════════════ */
.hau-btn-donate { display:inline-flex; align-items:center; gap:0.35rem; font-family:var(--kpy-font); font-size:0.86rem; font-weight:700; color:#fff !important; background:var(--kpy-primary); border:none; border-radius:30px; padding:0.52rem 1.3rem; text-decoration:none; white-space:nowrap; cursor:pointer; transition:all 0.24s; box-shadow:0 3px 10px rgba(200,121,26,0.26); }
.hau-btn-donate:hover { background:var(--kpy-pink); transform:translateY(-2px); box-shadow:0 6px 16px rgba(229,0,125,0.36); color:#fff !important; }
.hau-btn-donate .bi-heart-fill { font-size:0.74rem; }
.hau-mobile-toggle { display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; background:transparent; border:2px solid var(--kpy-primary); border-radius:8px; color:var(--kpy-primary); font-size:1.2rem; cursor:pointer; transition:all 0.22s; }
.hau-mobile-toggle:hover { background:var(--kpy-pink); border-color:var(--kpy-pink); color:#fff; }

/* ══ 7. MOBILE NAV ═══════════════════════════════════════════ */
.hau-mobile-nav { background:#fff; border-top:2px solid var(--kpy-pink); max-height:0; overflow:hidden; transition:max-height 0.38s cubic-bezier(0.4,0,0.2,1); }
.hau-mobile-nav.is-open { max-height:85vh; overflow-y:auto; }
.hau-mobile-menu { list-style:none; margin:0; padding:0.5rem 0; }
.hau-mobile-menu > li > a { display:block; font-family:var(--kpy-font); font-size:0.93rem; font-weight:700; color:var(--kpy-base) !important; text-transform:uppercase; letter-spacing:0.03em; padding:0.72rem 1.25rem; border-bottom:1px solid rgba(0,0,0,0.055); text-decoration:none; transition:color 0.18s, background 0.18s; }
.hau-mobile-menu > li > a:hover, .hau-mobile-menu > li.current-menu-item > a { color:var(--kpy-pink) !important; background:rgba(229,0,125,0.05); }
.hau-mobile-menu .sub-menu { list-style:none; padding:0; margin:0; background:rgba(229,0,125,0.04); }
.hau-mobile-menu .sub-menu a { display:flex; align-items:center; gap:0.4rem; font-family:var(--kpy-font); font-size:0.855rem; font-weight:500; color:var(--kpy-grey) !important; padding:0.58rem 1.25rem 0.58rem 2.1rem; border-bottom:1px solid rgba(0,0,0,0.04); text-decoration:none; transition:color 0.18s; }
.hau-mobile-menu .sub-menu a::before { content:'\F231'; font-family:'bootstrap-icons'; font-size:0.52rem; color:var(--kpy-pink); opacity:0.6; flex-shrink:0; }
.hau-mobile-menu .sub-menu a:hover { color:var(--kpy-pink) !important; }
.hau-mobile-donate { display:flex; align-items:center; justify-content:center; gap:0.45rem; margin:1rem 1.25rem 1.25rem; padding:0.72rem 1rem; background:var(--kpy-primary); color:#fff !important; font-family:var(--kpy-font); font-size:0.9rem; font-weight:700; text-decoration:none; border-radius:8px; transition:background 0.22s; }
.hau-mobile-donate:hover { background:var(--kpy-pink); color:#fff !important; }

/* ══ 8. RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width:1399px) { .hau-nav > li > a.hau-nav-link { padding:0 0.7rem !important; font-size:0.77rem; } }

@media (max-width:1199px) {
  /* logo LEFT | donate CENTRE | hamburger RIGHT */
  .hau-header__inner { display:flex; align-items:center; min-height:70px; padding:0; position:relative; }
  .hau-header__nav--main { display:none !important; }
  .hau-header__logo { flex-shrink:0; align-self:center; }
  .hau-logo-oval { margin-bottom:-18px; }
  .hau-header__actions { display:flex; align-items:center; gap:0.75rem; margin-left:auto; }
  .hau-btn-donate { position:absolute; left:50%; transform:translateX(-50%); padding:0.48rem 1.3rem; }
  .hau-mobile-toggle { order:2; }
}

@media (max-width:991px) { .hau-topbar__item:nth-child(n+2) { display:none; } }
@media (max-width:767px) { .hau-topbar { display:none; } .hau-logo-oval { width:84px; height:96px; margin-bottom:-18px; } .hau-logo-oval__img { width:66px; height:66px; } }

/** ==========================================================
 Footer — Hopeline Action Uganda
===========================================================**/

@keyframes footerLeafFloat { 0%,100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-18px) rotate(4deg); } }
@keyframes footerPulse { 0%,100% { opacity: 0.08; } 50% { opacity: 0.16; } }

/* ── Shell ───────────────────────────────────────────────────── */
.kpy-footer { font-family: var(--kpy-font); background: var(--kpy-secondary); color: rgba(255,255,255,0.92); position: relative; overflow: hidden; padding-top: 0; }
.kpy-footer::before { content: ""; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: var(--kpy-primary); opacity: 0.09; pointer-events: none; animation: footerPulse 6s ease-in-out infinite; }
.kpy-footer::after  { content: ""; position: absolute; bottom: 40px; left: -80px; width: 300px; height: 300px; border-radius: 50%; background: #4DC872; opacity: 0.07; pointer-events: none; animation: footerPulse 8s ease-in-out infinite reverse; }

/* ── Angle top ───────────────────────────────────────────────── */
.footer-angle-top { position: relative; width: 100%; overflow: hidden; line-height: 0; display: block; }
.footer-angle-top svg { display: block; width: 100%; height: 70px; }

/* ── Inner body ──────────────────────────────────────────────── */
.footer-body { position: relative; z-index: 2; padding: 56px 0 40px; }

/* ── Column headings — PRIMARY ORANGE ────────────────────────── */
.footer-col-title { font-family: var(--kpy-font); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; color: var(--kpy-white); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; transition: var(--kpy-transition); }
.footer-col-title::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(200,121,26,0.55), transparent); }
.footer-col-title:hover { color: var(--kpy-pink); }

/* ── Brand column ────────────────────────────────────────────── */
.footer-brand-logo { max-width: 115px; height: auto; margin-bottom: 16px; }
.footer-brand-name { font-family: var(--kpy-font-2); font-size: 1.08rem; font-weight: 900; color: #ffffff; line-height: 1.3; margin-bottom: 14px; text-shadow: 0 1px 8px rgba(0,0,0,0.40); }

/* ── Key Priority block — no borders, no box ─────────────────── */
.footer-priority-block { margin: 0 0 20px 0; padding: 0; }
.footer-priority-block .priority-heading { font-size: 0.78rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; color: var(--kpy-primary); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 6px; }
.footer-priority-block .priority-heading i { color: var(--kpy-pink); font-size: 1rem; }
.footer-priority-block .priority-sdg-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; background: rgba(229,0,125,0.15); border: 1px solid rgba(229,0,125,0.30); color: var(--kpy-pink-light); margin-bottom: 0.75rem; }
.footer-priority-block p { font-size: 0.84rem; color: rgba(255,255,255,0.90); margin: 0; line-height: 1.72; font-weight: 600; }

/* ── Decorative leaf icon — magenta ──────────────────────────── */
.footer-leaf-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(229,0,125,0.15); border-radius: 50% 0 50% 0; color: var(--kpy-pink); font-size: 1.4rem; margin-bottom: 18px; animation: footerLeafFloat 5s ease-in-out infinite; transition: var(--kpy-transition); }
.footer-leaf-icon:hover { color: var(--kpy-primary); background: rgba(200,121,26,0.18); }

/* ── Nav link lists ──────────────────────────────────────────── */
.footer-nav-list { list-style: none; padding: 0; margin: 0; }
.footer-nav-list li { margin-bottom: 2px; }
.footer-nav-list a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.88); font-size: 0.875rem; font-weight: 600; text-decoration: none; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: var(--kpy-transition); }
.footer-nav-list a:hover { color: var(--kpy-primary-light); padding-left: 6px; border-bottom-color: rgba(200,121,26,0.30); }
.footer-nav-list a .fnav-dot { width: 5px; height: 5px; border-radius: 50%; background: #4DC872; flex-shrink: 0; transition: var(--kpy-transition); }
.footer-nav-list a:hover .fnav-dot { background: var(--kpy-pink); transform: scale(1.5); }

/* ── Programs sub-tag ────────────────────────────────────────── */
.fnav-tag { display: inline-block; font-size: 0.60rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 8px; border-radius: 999px; background: rgba(200,121,26,0.20); color: var(--kpy-primary-light); border: 1px solid rgba(200,121,26,0.30); margin-left: auto; flex-shrink: 0; }

/* ── Contact list — icons magenta ────────────────────────────── */
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.875rem; color: rgba(255,255,255,0.90); font-weight: 600; line-height: 1.6; }
.footer-contact-list .fci { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(229,0,125,0.12); border: 1px solid rgba(229,0,125,0.25); border-radius: var(--kpy-border-radius); color: var(--kpy-pink); font-size: 1.05rem; flex-shrink: 0; transition: var(--kpy-transition); }
.footer-contact-list li:hover .fci { background: var(--kpy-pink); border-color: var(--kpy-pink); color: #fff; box-shadow: 0 0 14px rgba(229,0,125,0.45); }
.footer-contact-list a { color: rgba(255,255,255,0.90); font-weight: 600; text-decoration: none; transition: var(--kpy-transition); }
.footer-contact-list a:hover { color: var(--kpy-primary-light); }

/* ── Resources grid — icons magenta ─────────────────────────── */
.footer-resources-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.footer-resource-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 14px 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(77,200,114,0.15); border-radius: var(--kpy-border-radius); text-decoration: none; color: rgba(255,255,255,0.88); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; transition: var(--kpy-transition); text-align: center; }
.footer-resource-card i { font-size: 1.35rem; color: var(--kpy-pink); transition: var(--kpy-transition); }
.footer-resource-card:hover { background: rgba(200,121,26,0.15); border-color: rgba(200,121,26,0.45); color: var(--kpy-primary-light); transform: translateY(-3px); box-shadow: var(--kpy-shadow-md); }
.footer-resource-card:hover i { color: var(--kpy-primary-light); }

/* ── Social row — hover magenta ──────────────────────────────── */
.footer-social-row { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.footer-social-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(77,200,114,0.25); color: rgba(255,255,255,0.90); font-size: 1.1rem; text-decoration: none; transition: var(--kpy-transition); }
.footer-social-btn:hover { background: var(--kpy-pink); border-color: var(--kpy-pink); color: #fff; transform: translateY(-3px) scale(1.12); box-shadow: var(--kpy-shadow-pink); }

/* ── Divider ─────────────────────────────────────────────────── */
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.09); margin: 0; }

/* ── Bottom bar ──────────────────────────────────────────────── */
.footer-bottom { position: relative; z-index: 2; background: rgba(0,0,0,0.45); padding: 14px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.62); margin: 0; font-weight: 600; }
.footer-copyright strong { color: rgba(255,255,255,0.90); font-weight: 800; }
.footer-bottom-links { display: flex; gap: 16px; align-items: center; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.58); font-weight: 600; text-decoration: none; transition: var(--kpy-transition); }
.footer-bottom-links a:hover { color: var(--kpy-primary-light); }
.footer-bottom-links span { color: rgba(255,255,255,0.18); }
.footer-credit { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 600; }
.footer-credit a { color: #4DC872; text-decoration: none; font-weight: 700; }
.footer-credit a:hover { color: var(--kpy-primary-light); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) { .footer-body { padding: 44px 0 32px; } }
@media (max-width: 767px) { .footer-bottom-inner { flex-direction: column; text-align: center; } .footer-resources-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 480px) { .footer-resources-grid { grid-template-columns: 1fr 1fr; } .footer-social-row { justify-content: center; } }

/** ==========================================================
Main Slides
===========================================================**/

@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
@keyframes morphBlob { 0% { border-radius: 56% 44% 60% 40% / 50% 55% 45% 50%; } 20% { border-radius: 65% 35% 45% 55% / 40% 60% 40% 60%; } 40% { border-radius: 42% 58% 65% 35% / 58% 42% 58% 42%; } 60% { border-radius: 60% 40% 38% 62% / 52% 48% 62% 38%; } 80% { border-radius: 35% 65% 55% 45% / 62% 38% 55% 45%; } 100% { border-radius: 56% 44% 60% 40% / 50% 55% 45% 50%; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.main-slider { position: relative; width: 100%; overflow: hidden; }
.main-slider .swiper-slide { position: relative; height: 100vh; min-height: 600px; }
.image-layer { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; transform: scale(1); }
.main-slider .swiper-slide-active .image-layer { animation: kenBurns 7000ms ease forwards; }
/*.slider-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.35); z-index: 2; }*/
.main-slider .container { position: relative; z-index: 3; height: 100vh; display: flex; align-items: center; justify-content: center; padding: 0 15px; }
.main-slider-content { display: flex; justify-content: center; align-items: center; width: 100%; }

/* ── Orange morphing blob ─────────────────────────────────── */
.slider-blob { position: relative; width: clamp(360px, 52vw, 680px); aspect-ratio: 1 / 1; background: var(--kpy-primary); border-radius: 56% 44% 60% 40% / 50% 55% 45% 50%; animation: morphBlob 9s ease-in-out infinite; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: clamp(30px, 5vw, 60px); box-shadow: 0 30px 80px rgba(200, 121, 26, 0.45), 0 0 0 1.5px rgba(255, 255, 255, 0.08) inset; overflow: hidden; }
.slider-blob.slider-blob {
  background: rgba(200, 121, 26, 0.55) !important;
  box-shadow: 0 30px 80px rgba(200, 121, 26, 0.30), 0 0 0 1.5px rgba(255, 255, 255, 0.08) inset !important;
}
/* Subtle inner highlight ring */
.slider-blob::before { content: ''; position: absolute; inset: 6px; border-radius: inherit; border: 1.5px solid rgba(255, 255, 255, 0.15); pointer-events: none; animation: morphBlob 9s ease-in-out infinite; }

/* ── Badge pill ───────────────────────────────────────────── */
.slider-badge { display: inline-block; background: rgba(255, 255, 255, 0.95); color: var(--kpy-base); font-family: var(--kpy-font); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; padding: 7px 20px; border-radius: 999px; margin-bottom: 18px; white-space: nowrap; animation: fadeInUp 0.8s ease 0.3s both; position: relative; z-index: 1; }

/* ── Heading ──────────────────────────────────────────────── */
.slider-blob .big-title { position: relative; z-index: 1; animation: fadeInUp 0.9s ease 0.5s both; }
.slider-blob .big-title h2 { color: var(--kpy-white); font-family: var(--kpy-font-2); font-size: clamp(1.6rem, 3.8vw, 2.9rem); font-weight: 800; line-height: 1.1; margin: 0 0 14px; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); }

/* ── Description text ─────────────────────────────────────── */
.slider-blob .text { position: relative; z-index: 1; animation: fadeInUp 1s ease 0.7s both; }
.slider-blob .text p { color: rgba(255, 255, 255, 0.92); font-family: var(--kpy-font); font-size: clamp(0.8rem, 1.4vw, 0.95rem); line-height: 1.65; margin: 0 0 24px; }

/* ── CTA Buttons ──────────────────────────────────────────── */
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; animation: fadeInUp 1.1s ease 0.9s both; }
.buttons { display: inline-block; padding: 13px 28px; border-radius: 999px; font-family: var(--kpy-font); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; white-space: nowrap; }
.buttons:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); }

/* Dark navy button — "Get Start A Fundraising" */
.buttons-join { background-color: #1E2A4A; color: var(--kpy-white); border: 2px solid transparent; }
.buttons-join:hover { background-color: #162038; }

/* Orange outline/solid button — "Donate Now" */
.buttons-volunteer { background-color: var(--kpy-primary); color: var(--kpy-white); border: 2px solid rgba(255, 255, 255, 0.6); }
.buttons-volunteer:hover { background-color: var(--kpy-primary-light); border-color: var(--kpy-white); }

/* ── Swiper pagination dots ───────────────────────────────── */
.main-slider .swiper-pagination-bullet { background: var(--kpy-white); opacity: 0.5; width: 10px; height: 10px; transition: opacity 0.3s, transform 0.3s; }
.main-slider .swiper-pagination-bullet-active { opacity: 1; background: var(--kpy-primary); transform: scale(1.3); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) { .main-slider .swiper-slide { min-height: 100svh; } .slider-blob { width: clamp(360px, 92vw, 520px); padding: 35px 28px; } .hero-buttons { flex-direction: column; align-items: center; gap: 10px; } .buttons { width: 100%; text-align: center; } }
@media (max-width: 400px) { .slider-blob { width: clamp(340px, 96vw, 480px); padding: 30px 20px; } .slider-badge { font-size: 0.7rem; padding: 8px 18px; } }
@media (max-width: 768px) {
  /* Alternative: make it smaller instead of hiding */
  .slider-badge {
    font-size: 0.6rem !important;
    padding: 4px 12px !important;
    margin-bottom: 10px !important;
    white-space: normal !important; /* Allow wrapping if needed */
    max-width: 90% !important;
  }
}


/*==========================================================
  Inner Page Hero Section
==========================================================*/

.hero-section { position:relative; background-size:cover; background-position:center; background-attachment:fixed; height:350px; min-height:500px; display:flex; align-items:center; justify-content:center; color:#fff; overflow:hidden; margin-bottom:2rem; }
.hero-overlay { background:linear-gradient(135deg, rgba(42,96,48,.82) 0%, rgba(28,28,28,.65) 100%); width:100%; height:100%; display:flex; align-items:center; justify-content:center; flex-direction:column; padding:0 2rem; text-align:center; z-index:2; }
.hero-content { max-width:800px; margin:0 auto; }
.hero-title { font-size:clamp(2rem,5vw,4.2rem); font-weight:700; margin-bottom:1rem; line-height:1.2; text-shadow:0 2px 20px rgba(0,0,0,.3); color:var(--kpy-pink); }
.hero-breadcrumb a { color:var(--kpy-primary-light); font-weight:600; transition:var(--kpy-transition); }
.hero-breadcrumb a:hover { color:#fff; }

@media (max-width:768px) { .hero-section { height:50vh; min-height:400px; background-attachment:scroll; } }


/* ============================================================
   HOMEPAGE BLOCK STYLES
   ============================================================ */
/* Paragraph accent span → MAGENTA */
p span.hl-accent { color: var(--kpy-pink); font-weight: 800; }
/* ── Outer section wrapper ─────────────────────────────────── */
.hl-section-wrapper { background-color: var(--kpy-white) !important; padding: 0 0 80px !important; position: relative !important; overflow: visible !important; }
.hl-section-wrapper > .wp-block-group__inner-container { overflow: visible !important; }

/* ════════════════════════════════════════════════════════════
   TOP 3 CARDS ROW
   ════════════════════════════════════════════════════════════ */
.hl-cards-row.wp-block-columns { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; align-items: stretch !important; gap: 28px !important; margin-top: -90px !important; margin-bottom: 0 !important; padding: 0 40px !important; position: relative !important; z-index: 20 !important; }
.hl-cards-row .wp-block-column { flex: 1 1 0 !important; min-width: 0 !important; padding: 0 !important; }

.hl-card-green, .hl-card-orange, .hl-card-dark { border-radius: 18px !important; padding: 36px 32px 44px !important; display: flex !important; flex-direction: column !important; gap: 16px !important; height: 100% !important; box-sizing: border-box !important; box-shadow: 0 12px 40px rgba(0,0,0,0.20) !important; transition: var(--kpy-transition) !important; }
.hl-card-green:hover, .hl-card-orange:hover, .hl-card-dark:hover { transform: translateY(-8px) !important; box-shadow: 0 20px 56px rgba(229,0,125,0.22) !important; }

.hl-card-green  { background-color: #2DB887 !important; }
.hl-card-orange { background-color: var(--kpy-primary-light) !important; }
.hl-card-dark   { background-color: #2E3A6E !important; }

.hl-card-icon { width: 56px !important; height: 56px !important; border-radius: 50% !important; background-color: rgba(255,255,255,0.22) !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important; }
.hl-card-icon i { font-size: 1.5rem !important; color: var(--kpy-white) !important; }

.hl-card-green h3, .hl-card-orange h3, .hl-card-dark h3 { color: var(--kpy-white) !important; font-size: 1.35rem !important; font-weight: 700 !important; margin: 4px 0 0 !important; line-height: 1.3 !important; }
.hl-card-green p, .hl-card-orange p, .hl-card-dark p { color: rgba(255,255,255,0.90) !important; font-size: 0.94rem !important; line-height: 1.65 !important; margin: 0 !important; flex: 1 !important; }

.hl-card-btn { display: inline-block !important; margin-top: 8px !important; padding: 0.5em 1.7em !important; border: 2px solid rgba(255,255,255,0.80) !important; border-radius: 40px !important; color: var(--kpy-white) !important; font-weight: 700 !important; font-size: 0.9rem !important; background: transparent !important; transition: var(--kpy-transition) !important; width: fit-content !important; text-decoration: none !important; letter-spacing: 0.02em !important; }
.hl-card-btn:hover { background-color: var(--kpy-white) !important; border-color: var(--kpy-white) !important; color: var(--kpy-pink) !important; text-decoration: underline !important; text-decoration-color: var(--kpy-pink) !important; text-underline-offset: 3px !important; }

/* ════════════════════════════════════════════════════════════
   ABOUT ROW
   ════════════════════════════════════════════════════════════ */
.hl-about-row.wp-block-columns { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; align-items: center !important; gap: 60px !important; margin-top: 80px !important; padding: 0 40px !important; }
.hl-about-content.wp-block-column { flex: 1 1 50% !important; max-width: 54% !important; padding: 0 !important; }

.hl-about-eyebrow { display: block !important; color: var(--kpy-primary) !important; font-weight: 700 !important; font-size: 0.82rem !important; text-transform: uppercase !important; letter-spacing: 0.12em !important; margin-bottom: 10px !important; transition: var(--kpy-transition) !important; }
.hl-about-eyebrow:hover { color: var(--kpy-pink) !important; }

.hl-about-content h2.wp-block-heading { color: var(--kpy-black) !important; font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important; line-height: 1.18 !important; margin-bottom: 20px !important; font-weight: 700 !important; }
.hl-about-content h2.wp-block-heading span { color: var(--kpy-pink) !important; }
.hl-about-content p { color: var(--kpy-grey) !important; font-size: 0.97rem !important; line-height: 1.8 !important; margin-bottom: 28px !important; }
.hl-about-content p strong { color: var(--kpy-base) !important; font-weight: 700 !important; }

.hl-btn-wrap.wp-block-buttons { display: flex !important; flex-direction: row !important; flex-wrap: wrap !important; gap: 14px !important; margin-top: 8px !important; }
.hl-btn-primary .wp-block-button__link { background-color: var(--kpy-base) !important; color: var(--kpy-white) !important; border: none !important; font-weight: 700 !important; font-size: 0.95rem !important; border-radius: 40px !important; padding: 0.72em 2em !important; transition: var(--kpy-transition) !important; box-shadow: none !important; text-decoration: none !important; }
.hl-btn-primary .wp-block-button__link:hover { background-color: var(--kpy-pink) !important; transform: translateY(-2px) !important; }
.hl-btn-secondary .wp-block-button__link { background-color: var(--kpy-primary) !important; color: var(--kpy-white) !important; border: none !important; font-weight: 700 !important; font-size: 0.95rem !important; border-radius: 40px !important; padding: 0.72em 2em !important; transition: var(--kpy-transition) !important; text-decoration: none !important; }
.hl-btn-secondary .wp-block-button__link:hover { background-color: var(--kpy-pink) !important; transform: translateY(-2px) !important; }

.hl-about-image-col.wp-block-column { flex: 1 1 46% !important; max-width: 46% !important; padding: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.hl-morph-wrap { position: relative !important; width: 100% !important; max-width: 500px !important; aspect-ratio: 1 / 1 !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.hl-morph-wrap::before { content: '' !important; position: absolute !important; inset: -20px !important; background-color: var(--kpy-light) !important; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50% !important; animation: morphShape 10s ease-in-out infinite !important; z-index: 0 !important; }
.hl-morph-wrap .wp-block-image, .hl-morph-wrap figure.wp-block-image { width: 100% !important; height: 100% !important; margin: 0 !important; position: relative !important; z-index: 1 !important; }
.hl-morph-wrap .wp-block-image img, .hl-morph-wrap img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center top !important; display: block !important; position: relative !important; z-index: 1 !important; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50% !important; animation: morphShape 8s ease-in-out infinite !important; filter: drop-shadow(0 24px 48px rgba(200, 121, 26, 0.30)) !important; }

/* ════════════════════════════════════════════════════════════
   GLOBAL HELPERS
   ════════════════════════════════════════════════════════════ */
span.hl-primary-label, .hl-primary-label { color: var(--kpy-primary) !important; font-weight: 700 !important; font-size: 0.82rem !important; text-transform: uppercase !important; letter-spacing: 0.12em !important; display: block !important; margin-bottom: 8px !important; }
span.hl-primary-label:hover, .hl-primary-label:hover { color: var(--kpy-pink) !important; }
h2.hl-heading-primary, h3.hl-heading-primary { color: var(--kpy-black) !important; }
h2.hl-heading-primary span, h3.hl-heading-primary span { color: var(--kpy-pink) !important; }

/* ════════════════════════════════════════════════════════════
   HOW WE WORK SECTION
   ════════════════════════════════════════════════════════════ */
.hl-hww-section { background-color: var(--kpy-light) !important; padding: 100px 40px !important; position: relative !important; overflow: visible !important; }
.hl-hww-section > .wp-block-group__inner-container { max-width: 1200px !important; margin: 0 auto !important; }
.hl-hww-row.wp-block-columns { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; align-items: center !important; gap: 64px !important; margin: 0 !important; padding: 0 !important; }
.hl-hww-content.wp-block-column { flex: 0 0 50% !important; max-width: 50% !important; padding: 0 !important; }

.hl-hww-content .hl-about-eyebrow { color: var(--kpy-primary) !important; font-weight: 700 !important; font-size: 0.82rem !important; text-transform: uppercase !important; letter-spacing: 0.12em !important; display: block !important; margin-bottom: 10px !important; }
.hl-hww-content h2.wp-block-heading { color: var(--kpy-black) !important; font-size: clamp(1.7rem, 3.2vw, 2.4rem) !important; line-height: 1.2 !important; margin-bottom: 36px !important; font-weight: 700 !important; max-width: 480px !important; }
.hl-hww-content h2.wp-block-heading span { color: var(--kpy-pink) !important; }

.hl-steps-list { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex !important; flex-direction: column !important; gap: 0 !important; }
.hl-step-item { display: flex !important; flex-direction: column !important; gap: 6px !important; padding: 20px 0 !important; border-bottom: 1px solid var(--kpy-border-color) !important; transition: var(--kpy-transition) !important; }
.hl-step-item:last-child { border-bottom: none !important; }
.hl-step-item:hover .hl-step-title { color: var(--kpy-pink) !important; }
.hl-step-item:hover .hl-step-num { background-color: var(--kpy-pink) !important; color: var(--kpy-white) !important; border-color: var(--kpy-pink) !important; }
.hl-step-header { display: flex !important; align-items: center !important; gap: 14px !important; }
.hl-step-num { min-width: 32px !important; height: 32px !important; border-radius: 50% !important; background-color: var(--kpy-light-green) !important; color: var(--kpy-secondary) !important; font-weight: 700 !important; font-size: 0.78rem !important; display: flex !important; align-items: center !important; justify-content: center !important; border: 1.5px solid var(--kpy-secondary-light) !important; flex-shrink: 0 !important; transition: var(--kpy-transition) !important; }
.hl-step-title { font-weight: 700 !important; font-size: 1rem !important; color: var(--kpy-base) !important; margin: 0 !important; line-height: 1.4 !important; transition: var(--kpy-transition) !important; }
.hl-step-desc { font-size: 0.9rem !important; color: var(--kpy-grey) !important; line-height: 1.7 !important; margin: 0 0 0 46px !important; }

.hl-hww-images.wp-block-column { flex: 0 0 50% !important; max-width: 50% !important; padding: 0 !important; position: relative !important; display: flex !important; align-items: flex-start !important; justify-content: flex-end !important; min-height: 460px !important; }
.hl-hww-img1 { position: absolute !important; top: 0 !important; right: 0 !important; width: 58% !important; aspect-ratio: 3 / 4 !important; z-index: 2 !important; }
.hl-hww-img1 .wp-block-image, .hl-hww-img1 figure.wp-block-image { width: 100% !important; height: 100% !important; margin: 0 !important; }
.hl-hww-img1 .wp-block-image img, .hl-hww-img1 img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center top !important; display: block !important; border-radius: 56.2165% 43.7835% 34.1856% 65.8144% / 65.4433% 65.4433% 34.5567% 34.5567% !important; animation: morphShape 8s ease-in-out infinite !important; filter: drop-shadow(0 16px 40px rgba(200,121,26,0.22)) !important; }
.hl-hww-img2 { position: absolute !important; bottom: 0 !important; left: 0 !important; width: 52% !important; aspect-ratio: 1 / 1 !important; z-index: 3 !important; }
.hl-hww-img2 .wp-block-image, .hl-hww-img2 figure.wp-block-image { width: 100% !important; height: 100% !important; margin: 0 !important; }
.hl-hww-img2 .wp-block-image img, .hl-hww-img2 img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; display: block !important; border-radius: 43.7835% 56.2165% 65.8144% 34.1856% / 34.5567% 65.4433% 65.4433% 34.5567% !important; animation: morphShape 10s ease-in-out infinite reverse !important; filter: drop-shadow(0 16px 40px rgba(42,96,48,0.20)) !important; }
.hl-hww-images::before { content: '' !important; position: absolute !important; width: 70% !important; aspect-ratio: 1/1 !important; top: 10% !important; right: 5% !important; background-color: rgba(200,121,26,0.08) !important; border-radius: 50% !important; animation: morphShape 12s ease-in-out infinite !important; z-index: 0 !important; }

/* ════════════════════════════════════════════════════════════
   OUR MAIN CAUSES
   ════════════════════════════════════════════════════════════ */
.hl-causes-section { background-color: var(--kpy-white) !important; padding: 100px 40px !important; }
.hl-causes-section > .wp-block-group__inner-container { max-width: 1200px !important; margin: 0 auto !important; }
.hl-causes-header { text-align: center !important; margin-bottom: 56px !important; }
.hl-causes-header .hl-about-eyebrow { text-align: center !important; display: block !important; color: var(--kpy-primary) !important; font-weight: 700 !important; font-size: 0.82rem !important; text-transform: uppercase !important; letter-spacing: 0.12em !important; margin-bottom: 10px !important; }
.hl-causes-header h2.wp-block-heading { color: var(--kpy-black) !important; font-size: clamp(1.7rem, 3.2vw, 2.4rem) !important; font-weight: 700 !important; margin: 0 auto !important; max-width: 540px !important; line-height: 1.2 !important; text-align: center !important; }
.hl-causes-header h2.wp-block-heading span { color: var(--kpy-pink) !important; }

.hl-causes-row.wp-block-columns { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; align-items: stretch !important; gap: 24px !important; margin: 0 !important; padding: 0 !important; }
.hl-causes-row .wp-block-column { flex: 1 1 0 !important; min-width: 0 !important; padding: 0 !important; }

.hl-cause-card { border: 1.5px dashed var(--kpy-grey-light) !important; border-radius: 18px !important; padding: 40px 28px 36px !important; display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 16px !important; background-color: var(--kpy-white) !important; transition: var(--kpy-transition) !important; height: 100% !important; box-sizing: border-box !important; }
.hl-cause-card:hover { border-color: var(--kpy-pink) !important; box-shadow: var(--kpy-shadow-pink) !important; transform: translateY(-6px) !important; }
.hl-cause-card:hover h3.wp-block-heading { color: var(--kpy-pink) !important; }

.hl-cause-icon { width: 72px !important; height: 72px !important; border-radius: 50% !important; background-color: var(--kpy-light-green) !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important; transition: var(--kpy-transition) !important; }
.hl-cause-card:hover .hl-cause-icon { background-color: var(--kpy-pink) !important; }
.hl-cause-icon i { font-size: 1.6rem !important; color: var(--kpy-secondary) !important; transition: var(--kpy-transition) !important; }
.hl-cause-card:hover .hl-cause-icon i { color: var(--kpy-white) !important; }

.hl-cause-card h3.wp-block-heading { color: var(--kpy-primary) !important; font-size: 1.15rem !important; font-weight: 700 !important; margin: 0 !important; line-height: 1.3 !important; transition: var(--kpy-transition) !important; }
.hl-cause-card p { color: var(--kpy-grey) !important; font-size: 0.9rem !important; line-height: 1.7 !important; margin: 0 !important; }

/* ════════════════════════════════════════════════════════════
   STRATEGIC PLAN — SECTION 1
   ════════════════════════════════════════════════════════════ */
.hl-sp1-section { background-color: var(--kpy-white) !important; padding: 100px 40px !important; position: relative !important; overflow: visible !important; }
.hl-sp1-section > .wp-block-group__inner-container { max-width: 1200px !important; margin: 0 auto !important; overflow: visible !important; }
.hl-sp1-row.wp-block-columns { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; align-items: stretch !important; gap: 72px !important; margin: 0 !important; padding: 0 !important; }

.hl-sp1-image-col.wp-block-column { flex: 0 0 48% !important; max-width: 48% !important; padding: 0 !important; display: flex !important; align-items: stretch !important; justify-content: center !important; align-self: stretch !important; }
.hl-sp1-morph-wrap { position: relative !important; width: 100% !important; min-height: 520px !important; height: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.hl-sp1-morph-wrap::before { content: '' !important; position: absolute !important; inset: -28px !important; background-color: var(--kpy-light) !important; border-top-left-radius: 56.2165% 65.4433% !important; border-top-right-radius: 43.7835% 65.4433% !important; border-bottom-left-radius: 65.8144% 34.5567% !important; border-bottom-right-radius: 34.1856% 34.5567% !important; animation: morphShape 10s ease-in-out infinite !important; z-index: 0 !important; }
.hl-sp1-morph-wrap .wp-block-image, .hl-sp1-morph-wrap figure.wp-block-image { width: 100% !important; height: 100% !important; min-height: 520px !important; margin: 0 !important; position: relative !important; z-index: 1 !important; }
.hl-sp1-morph-wrap .wp-block-image img, .hl-sp1-morph-wrap img { width: 100% !important; height: 100% !important; min-height: 520px !important; object-fit: cover !important; object-position: center top !important; display: block !important; position: relative !important; z-index: 1 !important; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50% !important; animation: morphShape 8s ease-in-out infinite !important; filter: drop-shadow(0 20px 50px rgba(212,165,116,0.30)) !important; }

.hl-sp1-play { position: absolute !important; top: 50% !important; left: 50% !important; transform: translate(-50%,-50%) !important; width: 68px !important; height: 68px !important; border-radius: 50% !important; background-color: var(--kpy-white) !important; display: flex !important; align-items: center !important; justify-content: center !important; z-index: 4 !important; cursor: pointer !important; box-shadow: 0 0 0 14px rgba(255,255,255,0.30) !important; transition: var(--kpy-transition) !important; }
.hl-sp1-play i { font-size: 1.6rem !important; color: var(--kpy-primary) !important; margin-left: 4px !important; }
.hl-sp1-play:hover { transform: translate(-50%,-50%) scale(1.10) !important; box-shadow: 0 0 0 18px rgba(229,0,125,0.20) !important; }
.hl-sp1-play:hover i { color: var(--kpy-pink) !important; }

.hl-sp1-content.wp-block-column { flex: 0 0 52% !important; max-width: 52% !important; padding: 0 !important; }
.hl-sp1-content .hl-about-eyebrow { color: var(--kpy-primary) !important; font-weight: 700 !important; font-size: 0.82rem !important; text-transform: uppercase !important; letter-spacing: 0.12em !important; display: block !important; margin-bottom: 10px !important; }
.hl-sp1-content h2.wp-block-heading { color: var(--kpy-black) !important; font-size: clamp(1.7rem, 3.2vw, 2.4rem) !important; line-height: 1.2 !important; margin-bottom: 14px !important; font-weight: 700 !important; }
.hl-sp1-content h2.wp-block-heading span { color: var(--kpy-pink) !important; }
.hl-sp1-content .hl-sp1-subtitle { color: var(--kpy-grey) !important; font-size: 0.97rem !important; line-height: 1.75 !important; margin-bottom: 36px !important; }

.hl-sp1-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 28px 32px !important; }
.hl-sp1-feature { display: flex !important; flex-direction: column !important; gap: 12px !important; }
.hl-sp1-icon { width: 60px !important; height: 60px !important; border-radius: 50% !important; background-color: var(--kpy-light-green) !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important; transition: var(--kpy-transition) !important; }
.hl-sp1-feature:hover .hl-sp1-icon { background-color: var(--kpy-pink) !important; }
.hl-sp1-icon i { font-size: 1.4rem !important; color: var(--kpy-secondary) !important; transition: var(--kpy-transition) !important; }
.hl-sp1-feature:hover .hl-sp1-icon i { color: var(--kpy-white) !important; }
.hl-sp1-feature h4 { color: var(--kpy-primary) !important; font-size: 1rem !important; font-weight: 700 !important; margin: 0 !important; line-height: 1.3 !important; transition: var(--kpy-transition) !important; }
.hl-sp1-feature:hover h4 { color: var(--kpy-pink) !important; }
.hl-sp1-feature p { color: var(--kpy-grey) !important; font-size: 0.88rem !important; line-height: 1.65 !important; margin: 0 !important; }

/* ════════════════════════════════════════════════════════════
   STRATEGIC PLAN — SECTION 2
   ════════════════════════════════════════════════════════════ */
.hl-sp2-section { background-color: var(--kpy-light) !important; padding: 100px 40px !important; }
.hl-sp2-section > .wp-block-group__inner-container { max-width: 1200px !important; margin: 0 auto !important; }
.hl-sp2-header { text-align: center !important; margin-bottom: 56px !important; }
.hl-sp2-header .hl-about-eyebrow { color: var(--kpy-primary) !important; font-weight: 700 !important; font-size: 0.82rem !important; text-transform: uppercase !important; letter-spacing: 0.12em !important; display: block !important; margin-bottom: 10px !important; }
.hl-sp2-header h2.wp-block-heading { color: var(--kpy-black) !important; font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important; font-weight: 700 !important; margin: 0 auto 16px !important; line-height: 1.2 !important; }
.hl-sp2-header h2.wp-block-heading span { color: var(--kpy-pink) !important; }
.hl-sp2-header p { color: var(--kpy-grey) !important; font-size: 0.97rem !important; line-height: 1.75 !important; max-width: 560px !important; margin: 0 auto !important; }

.hl-sp2-row1.wp-block-columns, .hl-sp2-row2.wp-block-columns { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; align-items: stretch !important; gap: 24px !important; margin: 0 !important; padding: 0 !important; }
.hl-sp2-row2.wp-block-columns { margin-top: 24px !important; }
.hl-sp2-row1 .wp-block-column, .hl-sp2-row2 .wp-block-column { flex: 1 1 0 !important; min-width: 0 !important; padding: 0 !important; }

.hl-sp2-card { background-color: var(--kpy-white) !important; border-radius: 16px !important; padding: 32px 28px 28px !important; display: flex !important; flex-direction: column !important; gap: 12px !important; height: 100% !important; box-sizing: border-box !important; transition: var(--kpy-transition) !important; position: relative !important; overflow: hidden !important; }
.hl-sp2-card:hover { box-shadow: var(--kpy-shadow-pink) !important; transform: translateY(-6px) !important; }
.hl-sp2-card:hover h3 { color: var(--kpy-pink) !important; }
.hl-sp2-card h3 { color: var(--kpy-base) !important; font-size: 1.05rem !important; font-weight: 700 !important; margin: 0 !important; line-height: 1.4 !important; transition: var(--kpy-transition) !important; }
.hl-sp2-card h3 span { color: var(--kpy-pink) !important; }
.hl-sp2-card p { color: var(--kpy-grey) !important; font-size: 0.88rem !important; line-height: 1.7 !important; margin: 0 !important; flex: 1 !important; }

.hl-sp2-card-footer { display: flex !important; align-items: center !important; justify-content: space-between !important; margin-top: auto !important; padding-top: 16px !important; border-top: 1px solid var(--kpy-border-color) !important; }
.hl-sp2-card-footer .hl-sp2-keyword { font-size: 0.85rem !important; color: var(--kpy-grey) !important; }
.hl-sp2-card-footer .hl-sp2-keyword span { color: var(--kpy-pink) !important; font-weight: 700 !important; }
.hl-sp2-card-footer .hl-sp2-badge { width: 34px !important; height: 34px !important; border-radius: 50% !important; background-color: var(--kpy-light-green) !important; color: var(--kpy-secondary) !important; font-size: 0.75rem !important; font-weight: 700 !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important; }

/* ════════════════════════════════════════════════════════════
   MORPH KEYFRAMES
   ════════════════════════════════════════════════════════════ */
@keyframes morphShape {
  0%   { border-radius: 56.2165% 43.7835% 34.1856% 65.8144% / 65.4433% 65.4433% 34.5567% 34.5567%; }
  25%  { border-radius: 43.7835% 56.2165% 65.8144% 34.1856% / 34.5567% 65.4433% 65.4433% 34.5567%; }
  50%  { border-radius: 34.1856% 65.8144% 56.2165% 43.7835% / 34.5567% 34.5567% 65.4433% 65.4433%; }
  75%  { border-radius: 65.8144% 34.1856% 43.7835% 56.2165% / 65.4433% 34.5567% 34.5567% 65.4433%; }
  100% { border-radius: 56.2165% 43.7835% 34.1856% 65.8144% / 65.4433% 65.4433% 34.5567% 34.5567%; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hl-hww-section, .hl-sp1-section, .hl-sp2-section { padding: 60px 20px !important; }
  .hl-hww-row.wp-block-columns, .hl-sp1-row.wp-block-columns { flex-direction: column !important; gap: 48px !important; }
  .hl-hww-content.wp-block-column, .hl-hww-images.wp-block-column, .hl-sp1-image-col.wp-block-column, .hl-sp1-content.wp-block-column { flex: unset !important; max-width: 100% !important; }
  .hl-hww-images { min-height: 360px !important; width: 100% !important; }
  .hl-causes-section { padding: 60px 20px !important; }
  .hl-causes-row.wp-block-columns { flex-wrap: wrap !important; }
  .hl-causes-row .wp-block-column { flex: 1 1 45% !important; }
  .hl-sp2-row1.wp-block-columns, .hl-sp2-row2.wp-block-columns { flex-wrap: wrap !important; }
  .hl-sp2-row1 .wp-block-column, .hl-sp2-row2 .wp-block-column { flex: 1 1 45% !important; }
  .hl-sp1-morph-wrap { max-width: 380px !important; }
}
@media (max-width: 781px) {
  .hl-cards-row.wp-block-columns { flex-direction: column !important; margin-top: -40px !important; padding: 0 16px !important; gap: 16px !important; }
  .hl-cards-row .wp-block-column { flex: unset !important; width: 100% !important; }
  .hl-about-row.wp-block-columns { flex-direction: column !important; padding: 0 16px !important; gap: 40px !important; }
  .hl-about-content.wp-block-column, .hl-about-image-col.wp-block-column { max-width: 100% !important; flex: unset !important; }
  .hl-morph-wrap { max-width: 340px !important; }
  .hl-hww-img1, .hl-hww-img2 { position: relative !important; width: 100% !important; max-width: 280px !important; margin: 0 auto !important; }
  .hl-hww-img2 { margin-top: -60px !important; margin-left: auto !important; margin-right: 0 !important; }
  .hl-sp1-morph-wrap, .hl-sp1-morph-wrap img { min-height: auto !important; height: auto !important; }
  .hl-morph-wrap img, .hl-hww-img1 img, .hl-hww-img2 img, .hl-sp1-morph-wrap img { opacity: 1 !important; visibility: visible !important; display: block !important; }
  .hl-hww-img1 { z-index: 2 !important; }
  .hl-hww-img2 { z-index: 3 !important; }
  .hl-hww-images::before { z-index: 1 !important; }
}
@media (max-width: 600px) {
  .hl-sp1-grid { grid-template-columns: 1fr !important; }
  .hl-sp2-row1.wp-block-columns, .hl-sp2-row2.wp-block-columns { flex-direction: column !important; }
  .hl-causes-row.wp-block-columns { flex-direction: column !important; }
}



/*==========================================================
Group Page/ Single Page and Related
==========================================================**/
.rohi-single-group-container { max-width: 1200px; margin: 2rem auto; padding: 0 20px; }
.rohi-hero-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; color: var(--kpy-white); z-index: 2; }
.rohi-hero-content h1 { font-family: var(--kpy-font-2); font-size: 48px; margin: 0 0 20px 0; text-shadow: 2px 2px 4px rgba(var(--kpy-base-rgb), 0.5); }
.rohi-group-meta { display: flex; flex-wrap: wrap; gap: 20px; }
.rohi-meta-item { display: flex; align-items: center; font-family: var(--kpy-font); font-size: 16px; text-shadow: 1px 1px 2px rgba(var(--kpy-base-rgb), 0.5); }
.rohi-meta-item i { margin-right: 8px; color: var(--kpy-gold); }
.rohi-single-group-content { display: grid; grid-template-columns: 1fr 350px; gap: 40px; margin-bottom: 60px; }
.rohi-group-description { font-family: var(--kpy-font); line-height: 1.7; font-size: 17px; }
.rohi-group-description h2, .rohi-group-description h3, .rohi-group-description h4 { font-family: var(--kpy-font-2); color: var(--kpy-primary); }
.rohi-join-section { padding: 30px 30px 30px 0; border-radius: 10px; margin-top: 40px; }
.rohi-join-section h2 { font-family: var(--kpy-font-2); color: var(--kpy-secondary-2); margin-top: 0; }
.rohi-form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.rohi-form-group { margin-bottom: 10px; }
.rohi-form-group label { display: block; margin-bottom: 2px; font-weight: bold; font-family: var(--kpy-font); color: var(--kpy-base); }
.rohi-form-group input, .rohi-form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-family: var(--kpy-font); font-size: 15px; }
.rohi-form-submit { margin-top: 25px; }
.rohi-submit-button { background: var(--kpy-secondary-2); color: var(--kpy-white); border: none; padding: 14px 35px; border-radius: 5px; font-weight: bold; cursor: pointer; transition: all 0.3s; font-family: var(--kpy-font); font-size: 16px; }
.rohi-submit-button:hover { background: var(--kpy-secondary); color: var(--kpy-base); }
#rohi-form-message { margin-top: 20px; padding: 15px; border-radius: 5px; display: none; }
#rohi-form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
#rohi-form-message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.rohi-group-info-card { background: var(--kpy-light); padding: 25px; border-radius: 10px; margin-bottom: 30px; }
.rohi-group-info-card h3 { font-family: var(--kpy-font-2); color: var(--kpy-secondary-2); margin-top: 0; margin-bottom: 20px; }
.rohi-info-list { display: flex; flex-direction: column; gap: 15px; }
.rohi-info-item { display: flex; align-items: flex-start; gap: 15px; }
.rohi-info-item i { color: var(--kpy-primary); font-size: 18px; margin-top: 3px; }
.rohi-info-item div { flex: 1; }
.rohi-info-item strong { display: block; font-family: var(--kpy-font); margin-bottom: 3px; }
.rohi-info-item span { font-family: var(--kpy-font); color: var(--kpy-base); }
.rohi-other-groups h3 { font-family: var(--kpy-font-2); color: var(--kpy-secondary-2); margin-bottom: 20px; }
.rohi-other-group-item { margin-bottom: 15px; border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: transform 0.3s; }
.rohi-other-group-item:hover { transform: translateY(-3px); }
.rohi-other-group-item a { display: flex; text-decoration: none; color: inherit; }
.rohi-other-group-thumb { width: 80px; flex-shrink: 0; }
.rohi-other-group-thumb img { width: 100%; height: 80px; object-fit: cover; }
.rohi-other-group-info { padding: 15px; flex: 1; }
.rohi-other-group-info h4 { margin: 0 0 8px 0; font-family: var(--kpy-font-2); font-size: 16px; }
.rohi-other-group-info span { font-family: var(--kpy-font); font-size: 14px; color: var(--kpy-grey); }
@media (max-width: 900px) { .rohi-single-group-content { grid-template-columns: 1fr; } .rohi-form-row { grid-template-columns: 1fr; } .rohi-single-group-hero { height: 400px; } .rohi-hero-content h1 { font-size: 36px; } }
@media (max-width: 600px) { .rohi-single-group-hero { height: 350px; } .rohi-hero-content { padding: 25px; } .rohi-hero-content h1 { font-size: 28px; } .rohi-group-meta { flex-direction: column; gap: 10px; } }


.rohi-requests-admin { margin-top: 20px; }
.rohi-status-badge { display: inline-block; padding: 4px 8px; border-radius: 3px; font-size: 12px; font-weight: 600; line-height: 1; text-transform: capitalize; }
.rohi-status-badge.status-pending { background-color: #f0f0f1; color: #1d2327; }
.rohi-status-badge.status-contacted { background-color: #d5e6ff; color: #135e96; }
.rohi-status-badge.status-approved { background-color: #d1f0d1; color: #1a5e1a; }
.rohi-actions { display: flex; gap: 5px; }
.button-danger { background: #dc3232; color: white; border-color: #dc3232; }
.button-danger:hover { background: #a00; border-color: #a00; color: white; }


.rohi-how-to-join { margin-top: 50px; padding: 40px; background: #f8f9fa; border-radius: 10px; }
.rohi-how-to-join h2 { text-align: center; margin-bottom: 30px; font-size: 2.5rem; }
.rohi-join-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.rohi-step { text-align: center; padding: 20px; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.rohi-step-number { width: 40px; height: 40px; background: var(--kpy-secondary-2); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-weight: bold; }
.rohi-step h3 { color: var(--kpy-primary); margin-bottom: 10px; }
.rohi-group-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; margin-bottom: 50px; }
.rohi-group-card { position: relative; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(var(--kpy-base-rgb), 0.15); transition: transform 0.3s, box-shadow 0.3s; height: 400px; }
.rohi-group-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(var(--kpy-base-rgb), 0.2); }
.rohi-group-card-link { display: block; height: 100%; text-decoration: none; color: inherit; }
.rohi-group-thumbnail { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.rohi-group-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.rohi-thumbnail-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(var(--kpy-base-rgb), 0.1) 0%, rgba(var(--kpy-base-rgb), 0.8) 100%); z-index: 2; }
.rohi-card-info { position: relative; z-index: 3; padding: 25px; color: var(--kpy-white); display: flex; flex-direction: column; height: 100%; justify-content: flex-end; }
.rohi-group-card h3 { margin: 0 0 15px 0; font-family: var(--kpy-font-2); font-size: 28px; font-weight: 700; text-shadow: 1px 1px 3px rgba(var(--kpy-base-rgb), 0.5); }
.rohi-group-meta { margin: 10px 0; }
.rohi-meta-item { display: block; margin-bottom: 8px; font-size: 15px; font-family: var(--kpy-font); text-shadow: 1px 1px 2px rgba(var(--kpy-base-rgb), 0.5); }
.rohi-meta-item i { margin-right: 8px; color: var(--kpy-gold); }
.rohi-group-excerpt { font-style: italic; margin-top: 15px; font-size: 15px; font-family: var(--kpy-font); text-shadow: 1px 1px 2px rgba(var(--kpy-base-rgb), 0.5); }
.rohi-view-details { margin-top: 20px; font-weight: bold; font-family: var(--kpy-font); opacity: 0.9; transition: opacity 0.3s; }
.rohi-group-card:hover .rohi-view-details { opacity: 1; }
@media (max-width: 768px) { .rohi-group-grid { grid-template-columns: 1fr; } .rohi-group-card { height: 350px; } }


/*==========================================================
News PAGE
==========================================================**/


.kpy-news-slider-container {max-width: 1280px; margin: 0 auto; padding: 60px 20px; position: relative; } 
.kpy-news-slider-header { text-align: center; margin-bottom: 50px; padding: 0 20px; } 
.kpy-news-slider-title { font-family: var(--kpy-font-3); font-size: 3.5rem; color: var(--kpy-secondary-2); margin-bottom: 15px; font-weight: 700; position: relative; display: inline-block; } 
.kpy-news-slider-title:after { content: ''; position: absolute; width: 80px; height: 4px; background: linear-gradient(90deg, var(--kpy-primary), var(--kpy-secondary)); bottom: -12px; left: 50%; transform: translateX(-50%); border-radius: 2px; } 
.kpy-news-slider-subtitle { font-family: var(--kpy-font-2); font-size: 1.1rem; color: rgba(var(--kpy-base-rgb), 0.7); max-width: 700px; margin: 0 auto; line-height: 1.6; } 
.kpy-news-slider-wrapper { position: relative; padding: 0 40px; } 
.kpy-news-slider { display: flex; overflow-x: auto; scroll-behavior: smooth; padding: 20px 10px; gap: 30px; scrollbar-width: none; -ms-overflow-style: none; } 
.kpy-news-slider::-webkit-scrollbar { display: none; } 
.kpy-news-slide { flex: 0 0 360px; min-width: 360px; scroll-snap-align: start; } 
.kpy-news-card {  border-radius: 12px; overflow: hidden;  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); height: 100%; display: flex; flex-direction: column; } 
.kpy-news-card-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; } 
.kpy-news-card-thumbnail { height: 300px; overflow: hidden; position: relative; } 
.kpy-news-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); border-radius:20px; } 
.kpy-news-card:hover .kpy-news-card-image { transform: scale(2.01); } 
.kpy-news-card-content { padding: 25px; flex: 1; display: flex; flex-direction: column; } 
.kpy-news-card-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 0.85rem; color: rgba(var(--kpy-base-rgb), 0.6); font-family: var(--kpy-font-2); } 
.kpy-news-card-title { font-family: var(--kpy-font); font-size: 1.4rem; line-height: 1.4; margin-bottom: 15px; color: var(--kpy-black); transition: color 0.3s ease; font-weight:500; } 
.kpy-news-card:hover .kpy-news-card-title { color: var(--kpy-primary); } 
.kpy-news-card-excerpt { font-family: var(--kpy-font-2); font-size: 0.95rem; color: rgba(var(--kpy-base-rgb), 0.7); margin-bottom: 10px; line-height: 1.6; flex: 1; } 
.kpy-news-card-button { display: inline-flex; align-items: center; gap: 8px; font-family: var(--kpy-font); font-weight: 600; color: var(--kpy-base); transition: all 0.3s ease; margin-top: auto; align-self: flex-start; } 
.kpy-news-card:hover .kpy-news-card-button { color: var(--kpy-primary); transform: translateX(5px); } 
.kpy-news-slider-prev, .kpy-news-slider-next { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: var(--kpy-white); border: none; box-shadow: 0 4px 15px rgba(var(--kpy-base-rgb), 0.1); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: all 0.3s ease; opacity: 0.9; } 
.kpy-news-slider-prev { left: -10px; } 
.kpy-news-slider-next { right: -10px; } 
.kpy-news-slider-prev:hover, .kpy-news-slider-next:hover { background: var(--kpy-primary); color: var(--kpy-white); opacity: 1; transform: translateY(-50%) scale(1.1); } 
.kpy-news-slider-empty { text-align: center; padding: 60px 20px; color: rgba(var(--kpy-base-rgb), 0.5); font-family: var(--kpy-font-2); width: 100%; } 
@media (max-width: 1024px) { .kpy-news-slide { flex: 0 0 320px; min-width: 320px; } .kpy-news-card-thumbnail { height: 200px; } } 
@media (max-width: 768px) { .kpy-news-slider-container { padding: 40px 15px; } .kpy-news-slider-header { margin-bottom: 30px; } .kpy-news-slider-title { font-size: 2rem; } .kpy-news-slider-subtitle { font-size: 1rem; } .kpy-news-slider-wrapper { padding: 0 20px; } .kpy-news-slide { flex: 0 0 280px; min-width: 280px; } .kpy-news-slider-prev { left: 0; } .kpy-news-slider-next { right: 0; } } 
@media (max-width: 480px) { .kpy-news-slider-title { font-size: 1.8rem; } .kpy-news-slide { flex: 0 0 260px; min-width: 260px; } .kpy-news-card-content { padding: 20px; } .kpy-news-card-title { font-size: 1.2rem; } }




/*==========================================================
Hopeline Action Uganda Contact Styles
==========================================================**/
.hopeline-contact-container {max-width:1400px;margin:-90px auto 100px;padding:0 20px;position:relative;z-index:2;}
.hopeline-contact-layout {display:flex;flex-direction:column;gap:40px;margin-top:50px;}

/* Top Row - Form and Map Side by Side */
.hopeline-top-row {display:grid;grid-template-columns:1.2fr 0.9fr;gap:30px;}

/* Form Column */
.hopeline-contact-form-card {background:var(--kpy-white);border:2px dotted rgba(var(--kpy-base-rgb),0.3);border-radius:10px;padding:30px;height:100%;}
.hopeline-form-title {font-family:var(--kpy-font-3);font-size:2.5rem;margin-bottom:10px;position:relative;padding-bottom:15px;}
.hopeline-form-title:after {content:'';position:absolute;bottom:0;left:0;width:60px;height:4px;background:var(--kpy-secondary);}
.hopeline-form-subtitle {color:var(--kpy-grey);margin-bottom:25px;font-size:1rem;}
.hopeline-form-group {margin-bottom:20px;}
.hopeline-form-group label {display:block;margin-bottom:8px;font-weight:500;color:var(--kpy-base);}
.hopeline-form-group label span {color:var(--kpy-primary);}
.hopeline-form-group input,.hopeline-form-group textarea {width:100%;padding:12px 15px;border:1px solid rgba(var(--kpy-base-rgb),0.1);border-radius:5px;font-family:inherit;font-size:1rem;transition:all 0.3s ease;}
.hopeline-form-group input:focus,.hopeline-form-group textarea:focus {outline:none;border-color:var(--kpy-primary);box-shadow:0 0 0 3px rgba(var(--kpy-primary-rgb),0.1);}
.hopeline-form-row {display:flex;gap:20px;}
.hopeline-form-half {flex:1;}
.hopeline-form-submit {margin-top:20px;}
.hopeline-submit-btn {display:inline-flex;align-items:center;justify-content:center;padding:12px 30px;background:var(--kpy-primary);color:var(--kpy-white);border:none;border-radius:50px;font-weight:600;font-size:1rem;cursor:pointer;transition:all 0.3s ease;box-shadow:0 4px 10px rgba(98, 196, 218, 0.3);}
.hopeline-submit-btn svg {margin-left:8px;transition:transform 0.3s ease;}
.hopeline-submit-btn:hover {background:#5ab4c6;transform:translateY(-2px);}
.hopeline-submit-btn:hover svg {transform:translateX(5px);}

/* Map Column */
.hopeline-contact-map-card {background:var(--kpy-white);border:2px dotted rgba(var(--kpy-base-rgb),0.3);border-radius:10px;padding:30px;height:100%;display:flex;flex-direction:column;}
.hopeline-map-title {font-family:var(--kpy-font-3);font-size:2rem;margin-bottom:20px;position:relative;padding-bottom:15px;}
.hopeline-map-title:after {content:'';position:absolute;bottom:0;left:0;width:50px;height:3px;background:var(--kpy-secondary);}
.hopeline-map-container {height:300px;border-radius:8px;overflow:hidden;margin-bottom:20px;flex-grow:1;}
.hopeline-map-container iframe {width:100%;height:100%;border:none;}
.hopeline-map-directions {text-align:right;margin-top:auto;}
.hopeline-directions-btn {display:inline-flex;align-items:center;padding:8px 20px;background:rgba(var(--kpy-primary-rgb),0.1);color:var(--kpy-primary);border-radius:30px;font-weight:500;transition:all 0.3s ease;}
.hopeline-directions-btn svg {margin-left:5px;}
.hopeline-directions-btn:hover {background:var(--kpy-primary);color:var(--kpy-white);}

/* Info Cards Row - 3 Cards */
.hopeline-info-cards-row {display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-top:10px;}
.hopeline-info-card {background:var(--kpy-white);border:2px dotted rgba(var(--kpy-base-rgb),0.3);border-radius:10px;padding:30px;text-align:center;transition:transform 0.3s ease;}
.hopeline-info-card:hover {transform:translateY(-5px);}
.hopeline-card-icon {width:70px;height:70px;background:rgba(var(--kpy-primary-rgb),0.1);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;}
.hopeline-card-icon svg {width:30px;height:30px;}
.hopeline-info-card h4 {font-size:1.3rem;margin-bottom:15px;color:var(--kpy-base);font-family:var(--kpy-font-3);}
.hopeline-info-card p {margin:0;color:var(--kpy-grey);line-height:1.6;}

/* Quote Horizontal */
.hopeline-quote-horizontal {display:flex;align-items:center;gap:25px;background:rgba(var(--kpy-secondary-rgb),0.03);border:2px dotted rgba(var(--kpy-base-rgb),0.2);border-radius:10px;padding:30px 40px;margin:20px 0;}
.hopeline-quote-icon {flex-shrink:0;width:50px;height:50px;opacity:0.3;}
.hopeline-quote-content {flex:1;}
.hopeline-quote-text {font-size:1.3rem;font-style:italic;color:var(--kpy-base);line-height:1.7;margin-bottom:10px;font-family:var(--kpy-font-3);}
.hopeline-quote-author {font-weight:600;color:var(--kpy-primary);text-align:right;margin:0;font-size:1rem;}

/* Hours Section */
.hopeline-hours-section {background:var(--kpy-white);border:2px dotted rgba(var(--kpy-base-rgb),0.3);border-radius:10px;padding:20px 30px;text-align:center;}
.hopeline-hours-section h4 {font-size:1.2rem;margin-bottom:10px;color:var(--kpy-base);font-family:var(--kpy-font-3);}
.hopeline-hours-section p {margin:0;color:var(--kpy-grey);line-height:1.6;}

/* Success Popup */
.hopeline-contact-success-popup {position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(var(--kpy-base-rgb),0.8);display:flex;align-items:center;justify-content:center;z-index:9999;opacity:0;visibility:hidden;transition:all 0.3s ease;}
.hopeline-contact-success-popup.active {opacity:1;visibility:visible;}
.hopeline-success-content {background:var(--kpy-white);padding:40px;border-radius:10px;text-align:center;max-width:400px;position:relative;transform:translateY(20px);transition:all 0.3s ease;}
.hopeline-contact-success-popup.active .hopeline-success-content {transform:translateY(0);}
.hopeline-checkmark {width:80px;height:80px;margin:0 auto 20px;}
.hopeline-checkmark svg {width:100%;height:100%;}
.hopeline-success-content h3 {font-size:1.5rem;margin-bottom:10px;color:var(--kpy-primary);}
.hopeline-success-content p {margin-bottom:20px;color:var(--kpy-grey);}
.hopeline-close-popup {background:var(--kpy-primary);color:var(--kpy-white);border:none;padding:8px 20px;border-radius:5px;cursor:pointer;transition:all 0.3s ease;}
.hopeline-close-popup:hover {background:#5ab4c6;}

/* Responsive Design */
@media (max-width:992px){.hopeline-top-row{grid-template-columns:1fr;}.hopeline-info-cards-row{grid-template-columns:repeat(2,1fr);}}
@media (max-width:768px){.hopeline-info-cards-row{grid-template-columns:1fr;}.hopeline-form-title{font-size:2rem;}.hopeline-form-row{flex-direction:column;gap:0;}.hopeline-quote-horizontal{flex-direction:column;text-align:center;gap:15px;}.hopeline-contact-container{margin-top:-70px;}}
@media (max-width:480px){.hopeline-contact-form-card,.hopeline-contact-map-card{padding:20px;}.hopeline-quote-text{font-size:1.1rem;}}

/*==========================================================
Give page
==========================================================**/
/* Payment Options Section */ 

.modern-section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem;  font-family: var(--kpy-font-2); } 
.modern-payment-cards { display: flex; justify-content: center; gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 0 1rem; flex-wrap: wrap; } 
.modern-payment-card { background: var(--kpy-white); border-radius: 12px; padding: 2.5rem; width: calc(50% - 1rem); box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; border-top: 5px solid var(--kpy-primary); } 
.modern-payment-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); } 
.modern-card-title { font-size: 2.8rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem; color:var(--kpy-secondary-2); } 
.modern-card-icon { font-size: 2rem; color: var(--kpy-secondary); } 
.modern-card-details { margin-top: 1.5rem; } 
.modern-detail-item { display: flex; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px dashed rgba(var(--kpy-primary-rgb), 0.2); } 
.modern-detail-label { min-width: 120px; color: var(--kpy-primary); } 
.modern-detail-value { color: var(--kpy-base); } 

/* Donation Form Section */ 
.modern-donation-form-section { padding: 2rem 0;  } 
.modern-form-container { max-width: 900px; margin: 0 auto; padding: 0 1rem; background: var(--kpy-white);} 
.modern-form-card { border-radius: 12px; padding: 3rem; box-shadow: 0 5px 25px rgba(0,0,0,0.05);border-top: 5px solid var(--kpy-primary); } 
.modern-form-title { font-size: 2.8rem; margin-bottom: 1.5rem; text-align: center; font-family: var(--kpy-font-3);color:var(--kpy-secondary-2); } 
.modern-form-description { text-align: center; margin-bottom: 2.5rem; color: var(--kpy-base); max-width: 600px; margin-left: auto; margin-right: auto; } 
.modern-form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } 
.modern-form-group { margin-bottom: 1.5rem; } 
.modern-form-label { display: block; margin-bottom: 0.5rem; color: var(--kpy-base); } 
.modern-form-input { width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(var(--kpy-primary-rgb), 0.5); border-radius: 6px; font-size: 1rem; transition: all 0.3s; background: white; } 
.modern-form-input:focus { border-color: var(--kpy-primary); outline: none; box-shadow: 0 0 0 3px rgba(var(--kpy-primary-rgb), 0.1); } 
.modern-form-select { width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(var(--kpy-primary-rgb), 0.2); border-radius: 6px; font-size: 1rem; background: white; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em; } 
.modern-form-textarea { width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(var(--kpy-primary-rgb), 0.2); border-radius: 6px; font-size: 1rem; min-height: 120px; resize: vertical; } 
.modern-form-file { width: 100%; padding: 0.5rem 0; } 
.modern-form-help { display: block; margin-top: 0.5rem; color: var(--kpy-grey); font-size: 0.85rem; } 
.modern-submit-btn { background:var(--kpy-secondary-2); color: var(--kpy-white); border: none; padding: 1rem 2rem; font-size: 1rem; font-weight: 600; border-radius: 6px; cursor: pointer; width: 100%; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; margin-top: 1rem; grid-column: 1 / -1; } 
.modern-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(var(--kpy-primary-rgb), 0.2); } 

/* Success Message */ 
.modern-success-message { text-align: center; padding: 3rem; background: rgba(var(--kpy-primary-rgb), 0.05); border-radius: 12px; border-left: 5px solid var(--kpy-secondary); } 
.modern-success-icon { font-size: 4rem; color: var(--kpy-secondary); margin-bottom: 1.5rem; } 
.modern-success-title { font-size: 2rem; color: var(--kpy-primary); margin-bottom: 1rem; font-family: var(--kpy-font-3); } 
.modern-success-text { color: var(--kpy-base); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; } 
.modern-back-btn { display: inline-block; padding: 0.8rem 2rem; background: var(--kpy-primary); color: white; text-decoration: none; border-radius: 6px; transition: all 0.3s; font-weight: 600; } 
.modern-back-btn:hover { background: var(--kpy-secondary); color: var(--kpy-base); } 

/* Responsive Design */ 
@media (max-width: 992px) { .modern-payment-card { width: 100%; } .modern-form-grid { grid-template-columns: 1fr; } } 
@media (max-width: 768px) { .modern-hero-title { font-size: 2.5rem; } .modern-hero-subtitle { font-size: 1.2rem; } .modern-section-title { font-size: 2rem; } .modern-card-title { font-size: 1.5rem; } .modern-form-card { padding: 2rem; } }

/*==========================================================
Editor Sec page
==========================================================**/

.yaf-container {max-width:1200px;margin:0 auto;padding:0 20px;font-family:var(--kpy-font);color:var(--kpy-base);}
.yaf-invite {display:flex;flex-wrap:wrap;gap:80px;align-items:center;}
.yaf-invite-content {flex:1;min-width:300px;}
.yaf-invite-image {flex:1;min-width:300px;position:relative;margin-top:50px;}
.yaf-invite-image::before {content:'';position:absolute;width:100%;height:100%;top:20px;left:20px;background:linear-gradient(45deg, var(--kpy-secondary), #bfa500);z-index:-1;border-radius:12px;opacity:0.2;transition:all 0.3s ease;}
.yaf-invite-image:hover::before {top:15px;left:15px;}
.yaf-invite-image img {width:100%;height:auto;border-radius:12px;box-shadow:0 15px 40px rgba(var(--kpy-base-rgb),0.1);border:1px solid rgba(var(--kpy-primary-rgb),0.1);transition:transform 0.3s ease;}
.yaf-invite-image:hover img {transform:translate(-5px,-5px);}
.yaf-title {font-family:var(--kpy-font-3);font-size:3.5rem;margin-bottom:1.5rem;position:relative;line-height:1.2;padding-bottom:20px; color:var(--kpy-secondary-2);}
.yaf-title:after {content:'';position:absolute;bottom:0;left:0;width:80px;height:5px;background:linear-gradient(90deg,var(--kpy-secondary),var(--kpy-primary));border-radius:3px;}
.yaf-description {font-size:1.15rem;line-height:1.8;color:var(--kpy-base);margin-bottom:2rem;max-width:90%;}
.yaf-features {display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:40px;margin-top:20px;}
.yaf-feature-card {background:var(--kpy-white);padding:40px 30px;border-radius:12px;box-shadow:0 10px 30px rgba(var(--kpy-base-rgb),0.08);transition:all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);border-left:4px solid var(--kpy-primary);position:relative;overflow:hidden;}
.yaf-feature-card::after {content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(135deg,rgba(var(--kpy-primary-rgb),0.03),rgba(var(--kpy-secondary-rgb),0.03));z-index:0;}
.yaf-feature-card:hover {transform:translateY(-10px) scale(1.02);box-shadow:0 15px 40px rgba(var(--kpy-base-rgb),0.15);}
.yaf-feature-card:before {content:'';position:absolute;top:0;left:0;width:100%;height:4px;background:var(--kpy-gold);transform:scaleX(0);transform-origin:left;transition:transform 0.4s ease;}
.yaf-feature-card:hover {transform:translateY(-10px);box-shadow:0 15px 30px rgba(var(--kpy-base-rgb),0.1);}
.yaf-feature-title {font-family:var(--kpy-font-3);font-size:2.5rem;margin-bottom:1.2rem;position:relative;z-index:1;}
.yaf-feature-text {font-size:1.05rem;line-height:1.7;color:var(--kpy-grey);position:relative;z-index:1;}
.yaf-cta {display:inline-block;background:var(--kpy-primary);color:#fff;padding:15px 35px;border-radius:50px;text-decoration:none;font-weight:600;margin-top:20px;transition:all 0.3s ease;box-shadow:0 5px 15px rgba(var(--kpy-primary-rgb),0.2);}
.yaf-cta:hover {background:var(--kpy-secondary);transform:translateY(-3px);box-shadow:0 8px 25px rgba(var(--kpy-secondary-rgb),0.3);}
@media (max-width:768px) {.yaf-invite {flex-direction:column-reverse;gap:50px;margin-bottom:60px;} .yaf-invite-content {padding:0;} .yaf-description {max-width:100%;} .yaf-features {grid-template-columns:1fr;gap:30px;}}
@media (max-width:480px) {.yaf-container {padding:40px 15px;} .yaf-feature-card {padding:30px 20px;}}


/* ================================================================
   SHORTCODE CARDS
   ================================================================ */
.kpy-eyebrow { display: inline-block; color: var(--kpy-primary); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .6rem; }
.kpy-section-title { font-family: var(--kpy-font); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; color: var(--kpy-primary-dark); margin-bottom: .8rem; }
.kpy-section-sub { max-width: 600px; color: var(--kpy-grey); font-size: 1rem; line-height: 1.8; }
.kpy-filter-btn { font-family: var(--kpy-font); font-size: .82rem; font-weight: 700; border-radius: 50px; border: 2px solid var(--kpy-border); background: transparent; color: var(--kpy-grey); transition: var(--kpy-transition); padding: .45em 1.3em; }
.kpy-filter-btn:hover, .kpy-filter-btn.active { border-color: var(--kpy-primary); background: var(--kpy-primary); color: var(--kpy-white); }
.kpy-prog-card { border: 1px solid var(--kpy-border); border-radius: 16px; overflow: hidden; box-shadow: var(--kpy-shadow-sm); transition: var(--kpy-transition); background: var(--kpy-white); }
.kpy-prog-card:hover { transform: translateY(-8px); box-shadow: var(--kpy-shadow-lg); border-color: var(--kpy-primary-light); }
.kpy-card-thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--kpy-light); }
.kpy-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.kpy-prog-card:hover .kpy-thumb-img { transform: scale(1.06); }
.kpy-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: var(--kpy-light); }
.kpy-card-badge { position: absolute; top: .85rem; left: .85rem; background: var(--kpy-primary); color: var(--kpy-white); font-family: var(--kpy-font); font-size: .68rem; font-weight: 700; padding: .25em .85em; border-radius: 50px; letter-spacing: .06em; text-transform: uppercase; }
.kpy-card-body { padding: 1.4rem; }
.kpy-card-icon { width: 46px; height: 46px; background: var(--kpy-light); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.kpy-card-title { font-family: var(--kpy-font); font-size: 1.1rem; font-weight: 700; margin: 0 0 .5rem; line-height: 1.35; }
.stretched-link-title { color: var(--kpy-primary-dark); text-decoration: none; transition: var(--kpy-transition); }
.stretched-link-title:hover { color: var(--kpy-primary); }
.kpy-card-excerpt { font-size: .87rem; color: var(--kpy-grey); line-height: 1.72; margin: 0; }
.kpy-card-link { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--kpy-font); font-size: .83rem; font-weight: 700; color: var(--kpy-secondary); text-decoration: none; transition: var(--kpy-transition); padding-top: 1rem; border-top: 1px solid var(--kpy-border); width: 100%; margin-top: 1rem; }
.kpy-card-link:hover { color: var(--kpy-primary); gap: .7rem; }
.kpy-card-link .bi { transition: var(--kpy-transition); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .prog-sidebar-sticky { position: static; }
}
@media (max-width: 767.98px) {
  .prog-header-icon { width: 56px; height: 56px; min-width: 56px; font-size: 1.7rem; }
  .prog-page-title { font-size: 1.5rem; }
  .prog-morph-img { height: 280px; }
  .prog-gallery-item:first-child { aspect-ratio: 4/3; }
  .prog-cta { padding: 1.8rem 1.2rem; }
}
@media (max-width: 575.98px) {
  .prog-page-header { padding: 1.5rem 0; }
}


/** ==========================================================
Container CSS
===========================================================**/
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px!important;
  }
}

/*==========================================================
  Inner Page Hero Section
==========================================================*/
.hero-section{position:relative;background-size:cover;background-position:center;background-attachment:fixed;height:400px;min-height:500px;display:flex;align-items:center;justify-content:center;color:#fff;overflow:hidden;margin-bottom:2rem;}
.hero-overlay{background:linear-gradient(135deg,rgba(42,96,48,.82) 0%,rgba(28,28,28,.65) 100%);width:100%;height:100%;display:flex;align-items:center;justify-content:center;flex-direction:column;padding:0 2rem;text-align:center;z-index:2;}
.hero-content{max-width:800px;margin:0 auto;}
.hero-title{font-size:clamp(2rem,5vw,4.2rem);font-weight:700;margin-bottom:1rem;line-height:1.2;text-shadow:0 2px 20px rgba(0,0,0,.3);color:#fff;}
.hero-breadcrumb{font-size:1rem;color:rgba(255,255,255,.9);background:rgba(255,255,255,.1);padding:.5rem 1rem;border-radius:50px;backdrop-filter:blur(5px);display:inline-block;}
.hero-breadcrumb a{color:var(--kpy-primary-light);font-weight:600;transition:var(--kpy-transition);}
.hero-breadcrumb a:hover{color:#fff;}
@media(max-width:768px){.hero-section{height:50vh;min-height:400px;background-attachment:scroll;}}

/** ==========================================================
Upcoming Events Page
===========================================================**/
.kpy-events-section{max-width:1200px;margin:0 auto;padding:40px 20px;overflow:hidden;} 
.kpy-section-title{font-family:var(--kpy-font-3);font-size:3.5rem;color:var(--kpy-black);text-align:center;margin-bottom:60px;position:relative;opacity:0;transform:translateY(20px);transition:all 0.6s ease;} 
.kpy-section-title span{color:var(--kpy-pink);}
.kpy-events-section.in-view .kpy-section-title{opacity:1;transform:translateY(0);} 
.kpy-section-title:after{content:'';position:absolute;bottom:-15px;left:50%;transform:translateX(-50%);width:80px;height:4px;background:linear-gradient(90deg,var(--kpy-primary),var(--kpy-pink));} 
.kpy-events-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px;} 
.kpy-event-card-main{grid-column:1;} 
.kpy-event-card-side{grid-column:2;display:flex;flex-direction:column;gap:30px;} 
.kpy-event-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 5px 15px rgba(0,0,0,0.08);transition:all 0.3s ease;} 
.kpy-event-card.main-card{height:100%;} 
.kpy-event-card.side-card{height:calc((100% - 60px)/3);} 
.kpy-event-card-main .kpy-event-card{transform:translateX(-100px);opacity:0;transition:all 1.6s cubic-bezier(0.16,1,0.3,1) 0.2s;} 
.kpy-event-card-side .kpy-event-card{transform:translateX(100px);opacity:0;transition:all 1.6s cubic-bezier(0.16,1,0.3,1);} 
.kpy-event-card-side .kpy-event-card:nth-child(1){transition-delay:0.9s;} 
.kpy-event-card-side .kpy-event-card:nth-child(2){transition-delay:0.9s;} 
.kpy-event-card-side .kpy-event-card:nth-child(3){transition-delay:0.9s;} 
.kpy-events-section.in-view .kpy-event-card{transform:translateX(0);opacity:1;} 
.kpy-event-card:hover{transform:translateY(-5px)!important;box-shadow:0 15px 30px rgba(var(--kpy-pink-rgb),0.18);} 
.event-card-inner{display:flex;height:100%;} 
.event-thumbnail{flex:0 0 40%;overflow:hidden;} 
.main-card .event-thumbnail{flex:0 0 45%;} 
.event-image{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease;} 
.kpy-event-card:hover .event-image{transform:scale(1.05);} 
.event-content{flex:1;padding:25px;display:flex;flex-direction:column;} 
.main-card .event-content{padding:35px;} 
.event-date{font-family:var(--kpy-font);font-size:0.9rem;color:var(--kpy-secondary-2);margin-bottom:10px;} 
.main-card .event-date{font-size:1rem;} 
.event-title{font-family:var(--kpy-font);font-size:1.3rem;margin:0 0 15px;color:var(--kpy-black);line-height:1.4;} 
.event-title span{color:var(--kpy-pink);}
.main-card .event-title{font-size:1.8rem;margin-bottom:20px;} 
.event-meta{margin-top:auto;display:flex;flex-wrap:wrap;gap:15px;font-family:var(--kpy-font-2);font-size:0.9rem;} 
.main-card .event-meta{font-size:1rem;gap:20px;} 
.event-location,.event-time{display:flex;align-items:center;gap:5px;color:rgba(var(--kpy-base-rgb),0.8);} 
.kpy-no-events{text-align:center;padding:40px;font-family:var(--kpy-font-2);color:rgba(var(--kpy-base-rgb),0.6);} 
@media (max-width:992px){.event-card-inner{flex-direction:column;} .event-thumbnail{flex:0 0 200px;} .main-card .event-thumbnail{flex:0 0 250px;}} 
@media (max-width:768px){.kpy-events-grid{grid-template-columns:1fr;gap:20px;} .kpy-event-card-main,.kpy-event-card-side{grid-column:1;} .kpy-event-card-side{gap:20px;} .kpy-event-card.side-card{height:auto;} .kpy-section-title{font-size:1.8rem;} .kpy-event-card{transform:translateY(30px)!important;opacity:0;} .kpy-events-section.in-view .kpy-event-card{transform:translateY(0)!important;opacity:1;}} 
.kpy-event-card.main-card .event-card-inner{flex-direction:column;} 
.kpy-event-card.main-card .event-thumbnail{flex:0 0 auto;width:100%;} 
.kpy-event-card.main-card .event-image{width:100%;height:350px;object-fit:cover;}
.event {min-height:360px; margin-bottom:4rem; margin-top:3rem;}


/*==========================================================
  Events Archive Page
==========================================================*/
.kpy-events-archive-page{background:linear-gradient(180deg,rgba(42,96,48,.06) 0%,rgba(42,96,48,.03) 60%,rgba(42,96,48,.08) 100%);min-height:100vh;}
.kpy-events-archive-page{background:linear-gradient(180deg,rgba(42,96,48,.06) 0%,rgba(42,96,48,.03) 60%,rgba(42,96,48,.08) 100%);min-height:100vh;margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);width:100vw;}

/*==========================================================
 Events Page Hero
==========================================================*/
.kpy-events-hero,
.kpy-archive-hero{position:relative;background-size:cover;background-position:center;background-attachment:fixed;height:400px;display:flex;align-items:stretch;}

.kpy-events-hero-overlay,
.kpy-archive-hero-overlay{background:linear-gradient(160deg,rgba(42,96,48,.88) 0%,rgba(18,18,18,.72) 100%);width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:0 2rem;text-align:center;position:relative;}

.kpy-events-hero-content,
.kpy-archive-hero-content{max-width:780px;margin:0 auto;}

/* Eyebrow tag */
.kpy-events-hero-eyebrow,
.kpy-archive-hero-eyebrow{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.12);color:rgba(255,255,255,.9);font-size:.875rem;letter-spacing:.12em;text-transform:uppercase;font-weight:600;padding:.45rem 1.1rem;border-radius:50px;backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,.2);margin-bottom:1.4rem;}

/* Hero title */
.kpy-events-hero-title,
.kpy-archive-hero-title{font-size:clamp(2.6rem,6vw,5rem);font-weight:800;color:#fff;line-height:1.1;margin-bottom:1.2rem;text-shadow:0 3px 24px rgba(0,0,0,.35);}
.kpy-events-hero-title span,
.kpy-archive-hero-title span{color:var(--kpy-pink);}

/* Hero subtitle */
.kpy-events-hero-subtitle,
.kpy-archive-hero-subtitle{font-size:clamp(1rem,2vw,1.2rem);color:rgba(255,255,255,.85);line-height:1.7;margin-bottom:2rem;font-weight:400;}

/* Breadcrumb */
.kpy-events-hero-breadcrumb,
.kpy-archive-hero-breadcrumb{display:inline-flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.1);color:rgba(255,255,255,.9);padding:.5rem 1.2rem;border-radius:50px;backdrop-filter:blur(5px);font-size:.9rem;}
.kpy-events-hero-breadcrumb a,
.kpy-archive-hero-breadcrumb a{color:var(--kpy-primary-light,#7ecb8f);font-weight:600;transition:.2s;}
.kpy-events-hero-breadcrumb a:hover,
.kpy-archive-hero-breadcrumb a:hover{color:var(--kpy-pink);}
.kpy-events-hero-breadcrumb .sep,
.kpy-archive-hero-breadcrumb .sep{opacity:.5;font-size:.75rem;}

/* Scroll cue */
.kpy-hero-scroll-cue{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:6px;color:rgba(255,255,255,.7);font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;animation:scrollBounce 2s infinite;}
.kpy-hero-scroll-cue i{font-size:1.1rem;}
@keyframes scrollBounce{0%,100%{transform:translateX(-50%) translateY(0);}50%{transform:translateX(-50%) translateY(6px);}}

@media(max-width:768px){.kpy-events-hero,.kpy-archive-hero{height:100svh;background-attachment:scroll;}}


/*==========================================================
  Section header
==========================================================*/
.kpy-archive-section-head{text-align:center;margin-bottom:3rem;padding-top:3rem;}
.kpy-archive-section-title{font-family:var(--kpy-font-3);font-size:clamp(1.8rem,3vw,2.6rem);color:var(--kpy-black);margin-bottom:.5rem;position:relative;display:inline-block;}
.kpy-archive-section-title span{color:var(--kpy-pink);}
.kpy-archive-section-title:after{content:'';position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);width:60px;height:3px;background:linear-gradient(90deg,var(--kpy-primary),var(--kpy-pink));}
.kpy-archive-section-sub{color:rgba(0,0,0,.55);font-size:1rem;margin-top:1.2rem;}

/*==========================================================
  Events Archive 
==========================================================*/
.kpy-archive-events{background:transparent;}
.kpy-archive-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.kpy-archive-card{background:#fff;border-radius:12px;overflow:hidden;border:2px dotted var(--kpy-primary,#2a6030);box-shadow:none;transition:transform .3s ease,border-color .3s ease;display:flex;flex-direction:column;height:420px;}
.kpy-archive-card:hover{transform:translateY(-6px);border-color:var(--kpy-pink);}
.kpy-archive-card-link{display:flex;flex-direction:column;height:100%;text-decoration:none;color:inherit;}
.kpy-archive-thumb{position:relative;flex:0 0 220px;overflow:hidden;}
.kpy-archive-img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;display:block;}
.kpy-archive-card:hover .kpy-archive-img{transform:scale(1.06);}
.kpy-archive-date-badge{position:absolute;top:14px;left:14px;background:var(--kpy-primary,#2a6030);color:#fff;border-radius:8px;padding:6px 12px;text-align:center;line-height:1;min-width:48px;box-shadow:0 2px 10px rgba(0,0,0,.2);}
.badge-day{display:block;font-size:1.4rem;font-weight:700;}
.badge-month{display:block;font-size:.75rem;text-transform:uppercase;letter-spacing:.05em;margin-top:2px;}
.kpy-archive-body{flex:1;padding:20px 22px;display:flex;flex-direction:column;justify-content:space-between;}
.kpy-archive-title{font-family:var(--kpy-font);font-size:1.1rem;font-weight:700;color:var(--kpy-black,#111);line-height:1.4;margin:0 0 12px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.kpy-archive-title span{color:var(--kpy-pink);}
.kpy-archive-meta{display:flex;flex-direction:column;gap:6px;font-size:.875rem;color:rgba(0,0,0,.55);margin-top:auto;}
.kpy-archive-meta span{display:flex;align-items:center;gap:6px;}
.kpy-archive-meta i{color:var(--kpy-pink);}
.kpy-no-events{text-align:center;padding:60px 20px;color:rgba(0,0,0,.45);}
.kpy-no-events i{font-size:3rem;display:block;margin-bottom:1rem;color:var(--kpy-primary,#2a6030);opacity:.4;}

/* No events state */
.kpy-no-events{text-align:center;padding:60px 20px;color:rgba(0,0,0,.45);}
.kpy-no-events i{font-size:3rem;display:block;margin-bottom:1rem;color:var(--kpy-primary,#2a6030);opacity:.4;}

/*==========================================================
  Events archive pagination
==========================================================*/
.kpy-archive-pagination{display:flex;justify-content:center;gap:8px;margin-top:48px;flex-wrap:wrap;}
.kpy-archive-pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:8px;border:1.5px solid var(--kpy-primary,#2a6030);color:var(--kpy-primary,#2a6030);font-weight:600;font-size:.95rem;transition:all .2s ease;text-decoration:none;}
.kpy-archive-pagination .page-numbers:hover,.kpy-archive-pagination .page-numbers.current{background:var(--kpy-pink);border-color:var(--kpy-pink);color:#fff;}

/*==========================================================
  Single Event — thumbnail ~1/4 height
==========================================================*/
.single-post-page .post-thumbnail img{max-height:220px;width:100%;object-fit:cover;object-position:center;border-radius:8px;}

/*==========================================================
  Responsive 
==========================================================*/
@media(max-width:1100px){.kpy-archive-grid,.kpy-news-grid,.gallery-grid{grid-template-columns:repeat(2,1fr);} .kpy-archive-card{height:400px;}}
@media(max-width:640px){.kpy-archive-grid,.kpy-news-grid,.gallery-grid{grid-template-columns:1fr;} .kpy-archive-card{height:380px;} .kpy-archive-thumb{flex:0 0 200px;} .gallery-title{font-size:1rem;} .kpy-news-container,.gallery-cards-container{padding:0 1rem 3rem;}}
@media(max-width:768px){.kpy-card-image-wrapper img{height:160px;}}


/** =========================================================
NEWS section
===============================================================**/
.kpy-news-container{font-family:var(--kpy-font);color:var(--kpy-base);padding:3rem 1rem;max-width:1400px;margin:0 auto;}
.kpy-news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;}
.kpy-horizontal-card{display:flex;flex-direction:column;background:var(--kpy-white);border-radius:12px;overflow:hidden;transition:transform .4s cubic-bezier(.175,.885,.32,1.1),border-color .3s ease;border:2px dotted var(--kpy-primary,#2a6030);box-shadow:none;height:auto;position:relative;}
.kpy-horizontal-card:hover{transform:translateY(-5px);border-color:var(--kpy-pink);box-shadow:none;}
.kpy-card-image-wrapper{flex:0 0 200px;min-width:0;overflow:hidden;position:relative;}
.kpy-card-image-wrapper::after{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background:linear-gradient(135deg,rgba(var(--kpy-pink-rgb),.1) 0%,transparent 100%);}
.kpy-card-image-wrapper img{width:100%;height:200px;object-fit:cover;transition:transform .8s ease;}
.kpy-horizontal-card:hover .kpy-card-image-wrapper img{transform:scale(1.05);}
.kpy-card-badge{position:absolute;top:15px;left:15px;background:var(--kpy-secondary);color:var(--kpy-base);padding:5px 15px;border-radius:20px;font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px;z-index:2;box-shadow:0 2px 5px rgba(0,0,0,.1);}
.kpy-card-content-wrapper{flex:1;padding:1.4rem;display:flex;flex-direction:column;}
.kpy-card-meta{display:flex;align-items:center;gap:1rem;margin-bottom:.8rem;font-size:.9rem;}
.kpy-card-date{display:flex;align-items:center;gap:8px;color:var(--kpy-secondary-2);font-weight:500;}
.kpy-card-title{font-family:var(--kpy-font-2);font-size:1.15rem;line-height:1.4;margin-bottom:.8rem;color:var(--kpy-base);}
.kpy-card-title span{color:var(--kpy-pink);}
.kpy-card-title a{color:inherit;text-decoration:none;background-image:linear-gradient(var(--kpy-pink),var(--kpy-pink));background-size:0% 2px;background-repeat:no-repeat;background-position:left 85%;transition:background-size .3s ease;}
.kpy-card-title a:hover{background-size:100% 2px;color:var(--kpy-pink);}
.kpy-card-excerpt{color:rgba(var(--kpy-base-rgb),.8);margin-bottom:1rem;line-height:1.6;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;font-size:.9rem;}
.kpy-card-footer{margin-top:auto;display:flex;justify-content:space-between;align-items:center;}
.kpy-card-button{display:inline-flex;align-items:center;gap:8px;color:var(--kpy-primary);font-weight:600;text-decoration:none;padding:8px 16px;border-radius:6px;transition:all .3s ease;background:rgba(var(--kpy-primary-rgb),.1);}
.kpy-card-button:hover{background:rgba(var(--kpy-pink-rgb),.12);gap:10px;color:var(--kpy-pink);}
.kpy-card-button i{transition:transform .3s ease;}
.kpy-card-button:hover i{transform:translateX(3px);color:var(--kpy-pink);}


/** =========================================================
 * TEAM SECTION
 * =========================================================**/

/* ── Section Wrapper ────────────────────────────────────── */
.team-section { padding: 80px 0; }
.team-section .section-header { text-align: center; margin-bottom: 50px; }
.team-section .section-header h2 { color: var(--kpy-black); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; margin-bottom: 10px; }
.team-section .section-header h2 span { color: var(--kpy-pink); }
.team-section .section-header p.section-subtitle { color: var(--kpy-grey); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.team-section .section-header .subtitle-divider { display: block; width: 60px; height: 3px; background-color: var(--kpy-pink); border-radius: 4px; margin: 14px auto 0; }

/* ── Cards ──────────────────────────────────────────────── */
.team { padding-right: 15px; }
.team .card { min-height: 320px; margin-bottom: 2rem !important; border: 2px dotted var(--kpy-primary) !important; border-radius: var(--kpy-border-radius); overflow: hidden; transition: var(--kpy-transition); box-shadow: var(--kpy-shadow-sm); }
.team .card:hover { box-shadow: var(--kpy-shadow-pink); border-color: var(--kpy-pink) !important; transform: translateY(-4px); }

/* ── Thumbnail ──────────────────────────────────────────── */
.team .post-thumbnail { position: relative; overflow: hidden; }
.team .post-thumbnail img { height: 360px; width: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.4s ease; }
.team .card:hover .post-thumbnail img { transform: scale(1.04); }

/* ── Team Details Overlay ── */
.team .team-details { padding: 10px 14px 20px; margin: 0 auto; text-align: center; position: absolute; bottom: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 100%); width: 100%; color: #fff; z-index: 2; }
.team-details h4 { font-size: clamp(1rem, 2.5vw, 1.2rem); font-weight: 600; color: #fff; margin-bottom: 4px; }
.team-details h4 span { color: var(--kpy-pink); }
.team-details p { font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,0.85); }

/* ── "Full Profile" Button ──────────────────────────────── */
.team .team-details .btn-outline-primary { color: #fff; font-size: 13px; padding: 5px 20px; border: solid 1px #fff; border-radius: 50px; background: transparent; transition: var(--kpy-transition); }
.team .team-details .btn-outline-primary:hover { border: 1px solid var(--kpy-pink); color: #fff; background-color: var(--kpy-pink); }

/* ── Modal ──────────────────────────────────────────────── */
.member-details img { height: 400px; width: 100%; object-fit: cover; object-position: top; }
.member-details .btx { margin-left: 90%; margin-top: 10px; }
.member-details h4, .partner-details h4 { font-weight: 600; font-size: 1.3rem !important; line-height: 1.5; color: var(--kpy-black); }
.member-details h4 span, .partner-details h4 span { color: var(--kpy-pink); }
.member-details .modal-body span::after, .partner-details .modal-body span::after { border-bottom: 2px solid #eee; padding-bottom: 10px; margin-bottom: 10px; }
.member-details .modal-body p.title, .partner-details .modal-body p.title { border-bottom: dotted 2px var(--kpy-pink); color: var(--kpy-pink); font-weight: 600; }
.modal.show .modal-dialog { padding: 20px; background: #fff; }
.modal-content { max-height: 400px; overflow-y: auto; }

/** =========================================================
Gallery page
===============================================================**/
.gallery-cards-container{padding:0 2rem 4rem;max-width:1400px;margin:0 auto;}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:30px;}
.gallery-card{position:relative;border-radius:12px;overflow:hidden;border:2px dotted var(--kpy-primary,#2a6030);box-shadow:none;transition:transform .3s ease,border-color .3s ease;aspect-ratio:1/1;}
.gallery-card:hover{transform:translateY(-5px);border-color:var(--kpy-pink);}
.gallery-thumbnail-wrapper{position:relative;width:100%;height:100%;}
.gallery-thumbnail{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease;}
.gallery-card:hover .gallery-thumbnail{transform:scale(1.05);}
.gallery-title-overlay{position:absolute;bottom:0;left:0;right:0;padding:20px;background:linear-gradient(to top,rgba(0,0,0,.8) 0%,rgba(0,0,0,0) 100%);color:#fff;}
.gallery-title{margin:0;font-size:1.2rem;line-height:1.2;text-shadow:1px 1px 3px rgba(0,0,0,.5);transform:translateY(10px);transition:transform .3s ease;opacity:.9;}
.gallery-title span{color:var(--kpy-pink);}
.gallery-card:hover .gallery-title{transform:translateY(0);opacity:1;}
.gallery-card-link{display:block;height:100%;text-decoration:none;color:inherit;}
.gallery-pagination{display:flex;justify-content:center;margin-top:40px;}
.gallery-pagination .page-numbers{display:flex;list-style:none;padding:0;margin:0;gap:8px;}
.gallery-pagination .page-numbers li a,.gallery-pagination .page-numbers li span{display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;padding:0 10px;border-radius:6px;background:#f8f9fa;color:#495057;text-decoration:none;font-weight:500;transition:all .3s ease;}
.gallery-pagination .page-numbers li a:hover{background:var(--kpy-pink);color:#fff;}
.gallery-pagination .page-numbers li span.current{background:var(--kpy-pink);color:#fff;}
.gallery-pagination .page-numbers li .pagination-arrow{margin:0 5px;}


/** =========================================================
PARTNERS section
===============================================================**/
.partners{padding: 15px 10px;}
.partner{display: flex;overflow: hidden;position: relative;}
  .partner .card{min-height: 100px; white-space: nowrap;animation: marquee-animation 10s linear infinite;}
.partner img{height: 100px; object-fit: contain;object-position: center; display: grid; gap: 10px; padding: 10px;width: 200px;}

  @keyframes marquee-animation { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); }}
    .marquee a {animation: marquee-animation 5s linear infinite;}
.partnerlist img{width:100%;height:100px;object-fit: contain;object-position: center;}
.urreno_assoc img {width:100%;height: auto;}
.urreno_assoc h3{font-size:1rem;font-family: 'Roboto', sans-serif;letter-spacing: -.5px;}
.urreno_assoc .card {height:200px; padding:15px; margin-bottom:20px;}
 
/** ============================================================
Publication Page CSS
=============================================================**/
.downloads-category-menu { background: #fff; padding: 20px;  }
.category-menu-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 15px; }
.category-menu-list { list-style: none; padding: 0; margin: 0; }
.category-menu-item { margin-bottom: 8px; }
.category-menu-link { text-decoration: none; color: #333; display: flex; justify-content: space-between; padding: 10px; border-radius: 5px; transition: background 0.3s, color 0.3s; }
.category-menu-link:hover { background: #f0f0f0; color: #007bff; }
.category-count { background: #eee; padding: 2px 8px; border-radius: 10px; font-size: 0.85em; }
@media (max-width: 768px) { #downloads-table_wrapper { margin-left: 15px; margin-right: 15px;  } 
.dataTables_length, .dataTables_filter { flex-direction: column; align-items: flex-start; gap: 5px; }
.dataTables_length label, .dataTables_filter label { font-size: 14px; flex-direction: column; align-items: flex-start; } 
.dataTables_length select, .dataTables_filter input { width: 100%; font-size: 14px; } #downloads-table th, #downloads-table td { padding: 10px; font-size: 14px; } .pub-title { font-size: 18px; }
.pub-link p { font-size: 14px; }
.dataTables_paginate { flex-wrap: wrap; justify-content: center; } 
.paginate_button { font-size: 13px; padding: 5px 8px; } 
.downloads-category-menu { padding: 15px; } 
.category-menu-title { font-size: 1rem; } 
.category-menu-link { flex-direction: column; align-items: flex-start; gap: 4px; } 
.category-count { font-size: 0.8em; align-self: flex-start; } }
@media (max-width: 480px) { .pub-title { font-size: 16px; } .dataTables_length, .dataTables_filter { font-size: 13px; } .category-menu-title { font-size: 0.95rem; } .category-menu-link { font-size: 14px; } #downloads-table_wrapper { margin-left: 10px; margin-right: 10px; } .dataTables_info { font-size: 12px; text-align: center; } .category-menu-list { padding: 0; } }
#downloads-table_wrapper { margin: 20px 0; margin-left: 10px; }
.dataTables_length, .dataTables_filter { margin-bottom: 15px; }
.dataTables_length label, .dataTables_filter label { display: flex; align-items: center; gap: 10px; }
.dataTables_length select, .dataTables_filter input { padding: 5px; border: 1px solid #ddd; border-radius: 4px; }
#downloads-table { width: 100%; border-collapse: collapse; }
#downloads-table th, #downloads-table td { padding: 12px 15px; border-bottom: 1px solid #e0e0e0; }
.pub-title { margin: 0; font-size: 20px; color: #1716a3; font-weight: 700; }
.dataTables_paginate { margin-top: 15px; display: flex; gap: 5px; }
.paginate_button { padding: 5px 10px; border: 1px solid #ddd; border-radius: 4px; cursor: pointer; }
.paginate_button.current { background: #f7a81b; color: white; border-color: #f7a81b; }
.paginate_button.disabled { opacity: 0.5; cursor: not-allowed; }
.pub-download a { color: #f7a81b; text-decoration: none; }
.pub-download a:hover { text-decoration: underline; }



/** ============================================================
Single Page Hero
=============================================================**/

.header-wrap1 {min-height: 300px;padding-top: 150px;position: relative;}
.header-wrap1 h1 {font-weight: 700;text-shadow: 0 0 20px #000;width: 100%; color:var(--kpy-white);}
.header-wrap1 .breadcrumb {color: var(--kpy-white);position: relative;z-index: 10;display: block;top: -5px;font-size:12px;font-weight:400;}
.header-wrap1 .breadcrumb a{text-decoration: none;color: var(--kpy-white);}
.about-side { padding-left: 8%; border-left: 1px solid #ccc; position: sticky;top: 5%;}

/** ============================================================
Directory
=============================================================**/
.publications {margin-bottom: 40px;}
#downloads-table {border-collapse: separate; border-spacing: 0 15px; margin-top: 20px;  width: 100%;}
#downloads-table thead {display: none;}
#downloads-table tbody tr {box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);transition: transform 0.3s ease, box-shadow 0.3s ease;background-color: #fff;border-radius: 8px;}
#downloads-table tbody tr:hover {transform: translateY(-3px);box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);}
#downloads-table td {padding: 20px;vertical-align: top;border: none;}
.member-thumbnail {  text-align: center;}
.member-thumbnail img {max-width: 100%;height: auto;border-radius: 5px;box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);}
.member-title {font-size: 1.4rem;font-weight: 600;color: #333;margin-bottom: 10px;transition: color 0.3s ease;}
.member-title:hover {color: #0056b3;}
.pub-summ {font-size: 1rem;font-weight: 500;color: #555;margin-bottom: 5px;text-transform: uppercase;letter-spacing: 0.5px;}
.pub-desc {margin-bottom: 15px;color: #666;line-height: 1.6;}
.member-summ {background-color: #f9f9f9;padding: 12px !important;border-radius: 5px;margin-top: 10px;color: #555;line-height: 1.8;}
.member-summ small {display: block;margin-bottom: 3px;}
.member-summ strong {color: #444;}
.member-link {  margin-top: 15px;}
.member-link a {display: inline-block;background-color: #0056b3;color: white;padding: 8px 20px;border-radius: 4px;text-decoration: none;font-weight: 500;transition: background-color 0.3s ease;}
.member-link a:hover {background-color: #003d82;text-decoration: none;}
.page-content2 {max-width: 1200px;margin: 0 auto;padding: 0 15px;}

.post-content {background-color: #fff;border-radius: 8px;box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);padding: 2rem;}

.pub-single {margin-bottom: 2rem;}

.post-thumbnail {overflow: hidden;border-radius: 6px;box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);}
.post-thumbnail img {width: 100%;height: auto;transition: transform 0.3s ease;}
.post-thumbnail img:hover {transform: scale(1.02);}
/* Content styles */
.about-side-pub { padding-left: 1.5rem;}
h1.entry-title {font-size: 2.2rem;margin-bottom: 1rem;font-weight: 700;  line-height: 1.2;}
h4.pub-summ {font-size: 1.25rem;margin-bottom: 0.75rem;color: #555;font-weight: 600;}
.pub-desc {margin-bottom: 1.5rem; color: #666;  line-height: 1.6;}
hr { margin: 1.5rem 0;border-color: #eee;}
.btn-sm {padding: 0.25rem 0.5rem; font-size: 0.875rem;border-radius: 4px; transition: all 0.2s ease;}
.btn-facebook {background-color: #3b5998;color: white;}
.btn-facebook:hover {background-color: #2d4373;color: white;}
.btn-twitter { background-color: #1da1f2; color: white;}
.btn-twitter:hover { background-color: #0c85d0;color: white;}
.btn-whatsapp {background-color: #25D366; color: white;}
.btn-whatsapp:hover {background-color: #128C7E;color: white;}
.text-muted {color: #6c757d;}



    
/** ============================================================
Error 404 Page Not Found CSS
=============================================================**/
.Error_404 {overflow: hidden; padding:80px 0 120px;}
.Error_404 .error_pic {width: 35%; float: left; text-align: center;}
.Error_404 .error_pic i {color: #F72331; font-size: 250px; line-height: 250px; margin-right: .2em; text-align: center; font-variant: normal; text-transform: none; margin-left: .2em;}
.Error_404 .error_desk {width: 65%; float: left; padding-top: 40px;}
.Error_404 .error_desk h2 {font-size: 55px; line-height: 60px;color: #F72331;font-weight: 500;}
.Error_404 .error_desk h4 {font-size: 28px; line-height: 30px;}
.Error_404 .error_desk p .check {line-height: 45px; font-size: 16px;}
.Error_404 .error_desk p .button {padding: 13px 20px; margin: 0; border-radius: 5px; display: inline; margin-left: 10px; box-shadow: inset 0 0 0 0;}
.Error_404 .error_desk p .button:hover{color:#f9f9f9; text-decoration: none; background: #F72331;}
a.button, a.tp-button {transition:.2s all; background: transparent; color: #F72331; border:solid 2px;}
.wp-block-ub-tabbed-content-tab-title strong {font-weight:500!important;}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

/* Mobile styles (up to 767px)@media only screen and (max-width: 768px */
@media only screen and (max-width: 600px)  {
    .menu-section .logo {object-fit: contain !important;height: 70px;}
    .menu-section .navbar-nav {height: 100%;display: flex;align-items: flex-start;gap: 5px;}
    .menu-section .navbar-nav .nav-link {color: var(--kpy-black) !important;font-family: var(--kpy-font);font-weight: 400;text-transform: uppercase;letter-spacing: 1px;font-size: 16px;height: 40px;display: flex;align-items: center;position: relative;transition: all 0.3s ease;padding: 0 0.5rem !important;}
    .menu-section {height: 80px;position: relative;top: 0;z-index: 1000;background: #f7f7f7;height: 80px;display: flex;align-items: center;transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);box-shadow: 0 2px 10px rgba(0, 0, 0, 0);}
    


    .intro-image-col {display: flex;flex-direction: column;align-items: center; padding-bottom:20px;padding-top:0;}
    .message-heading{font-size:25px; font-weight:400; color:var(--kpy-primary);}
    .president-img img{margin-bottom: 0;height: 250px;width: 100%;max-width: 100%;object-position: top;}
    .president-message-text p{margin-top: 0;margin-bottom: 16px;font-size: 1rem; font-weight: 400;line-height: 1.5;color: #212529;}
    .president-message-text  {display: -webkit-box;-webkit-line-clamp: 10;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;max-height: calc(1.6em * 10);}
    .message-button {display: block; padding-top:10px;}
    .rotary-content {padding: 15px;}
    .rotary-header h1,
    .president-header h1 {font-size: 25px;}
    .president-profile {flex-direction: column;justify-content: center;}
    .president-photo {width: 200px;height: 200px;}
    #downloads-table {border-spacing: 0;}
    #downloads-table tr {display: flex;flex-direction: column;margin-bottom: 20px;}
    #downloads-table td {width: 100% !important;display: block;padding: 15px;}
    .member-thumbnail {margin-bottom: 15px;}
    .project-image {height: 180px;}
    .contact-page {margin: 20px 0;padding: 40px 0;}
    .contact-form,
    .contact-info {padding: 25px;}
    .contact-form { margin-bottom: 30px;}
    .contact-info ul li strong {width: 70px;}
    .map-container iframe {height: 250px;}
    .footer-menus {gap: 5px;font-size: 12px;}
    .footer-menus a {font-size: 12px;}
    .footer-menus .social-links a {font-size: 18px;}
    .donation-form-area{padding-left:5%; padding-right:5%;}
}
/* Tablet styles (768px to 1024px) */
@media only screen and (max-width: 1024px) and (min-width: 768px) {


}

/* Large desktop styles (1140px and up) */
@media only screen and (min-width: 1140px) {
  
}

/* Extra large desktop styles (1440px and up) */
@media only screen and (min-width: 1440px) {

}

/* High DPI screens */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min-resolution: 144dpi) {

}

/* Admin Styles */
.post-type-newsletter_sub .wp-list-table th.column-subscribed_date,
.post-type-newsletter_sub .wp-list-table th.column-subscribed_ip {
    width: 15%;
}

.post-type-newsletter_sub .wp-list-table .column-title {
    width: 40%;
}

/*------------------------------------*\
    TYPOGRAPHY
\*------------------------------------*/
