/*
Theme Name: Jai Johar Party — 3D
Theme URI: https://example.com
Author: Jai Johar Party
Author URI: https://example.com
Description: जय जोहार पार्टी — आदिवासी अनामत बचाओ आंदोलन की 3D वेबसाइट थीम। 3D टिल्ट कार्ड्स, हीरो पैरालैक्स, और एक घूमता हुआ 3D निशाना-तीर सीन के साथ। पूरा कॉन्टेंट Appearance → Customize से एडिट होता है।
Version: 1.0
Requires at least: 5.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jai-johar-party
*/

:root{
  --forest:#1F3A28;
  --forest-deep:#132318;
  --cream:#F3ECDA;
  --ochre:#D9A441;
  --rust:#B5502D;
  --vermilion:#8F2A1E;
  --charcoal:#241A12;
  --line:rgba(243,236,218,0.18);
  --line-dark:rgba(36,26,18,0.14);
  --font-display:'Martel', serif;
  --font-body:'Hind', sans-serif;
  --font-label:'Baloo 2', sans-serif;
  --radius:14px;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  background:var(--cream);
  color:var(--charcoal);
  line-height:1.6;
  overflow-x:hidden;
}
img,svg{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
section{position:relative;}
.wrap{
  max-width:1140px;
  margin:0 auto;
  padding:0 24px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-label);
  font-weight:700;
  font-size:0.8rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:currentColor;
  display:inline-block;
}
h1,h2,h3{
  font-family:var(--font-display);
  line-height:1.2;
  font-weight:900;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-family:var(--font-label);
  font-weight:700;
  font-size:0.98rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{
  background:var(--rust);
  color:var(--cream);
  box-shadow:0 8px 20px rgba(181,80,45,0.35);
}
.btn-primary:hover{ background:var(--vermilion); }
.btn-outline{
  background:transparent;
  border-color:var(--cream);
  color:var(--cream);
}
.btn-outline:hover{ background:var(--cream); color:var(--forest); }
.btn-outline-dark{
  background:transparent;
  border-color:var(--forest);
  color:var(--forest);
}
.btn-outline-dark:hover{ background:var(--forest); color:var(--cream); }

/* ===== NAV ===== */
header.site-header{
  position:sticky; top:0; z-index:100;
  background:var(--forest);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px;
  max-width:1140px; margin:0 auto;
}
.brand{ display:flex; align-items:center; gap:12px; color:var(--cream); }
.brand .emblem{ width:42px; height:42px; flex-shrink:0; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{ font-family:var(--font-display); font-size:1.15rem; font-weight:900; color:var(--ochre); }
.brand-text span{ font-family:var(--font-label); font-size:0.68rem; letter-spacing:0.04em; color:var(--cream); opacity:0.85; }

nav.links{ display:flex; gap:28px; align-items:center; }
nav.links a{
  font-family:var(--font-label); font-weight:600; font-size:0.93rem;
  color:var(--cream); opacity:0.9; position:relative; padding:4px 0;
}
nav.links a::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px;
  background:var(--ochre); transition:width .2s ease;
}
nav.links a:hover::after{ width:100%; }
nav.links a:hover{ opacity:1; }
.nav-cta{ display:flex; align-items:center; gap:16px; }
.hamburger{
  display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px;
}
.hamburger span{ width:24px; height:2px; background:var(--cream); display:block; }

.mobile-panel{
  display:none;
  flex-direction:column;
  background:var(--forest);
  border-top:1px solid var(--line);
  padding:12px 24px 20px;
}
.mobile-panel a{
  color:var(--cream); font-family:var(--font-label); font-weight:600;
  padding:12px 0; border-bottom:1px solid var(--line);
}
.mobile-panel.open{ display:flex; }

@media (max-width:860px){
  nav.links, .nav-cta .btn-outline{ display:none; }
  .hamburger{ display:flex; }
}

/* ===== HERO ===== */
.hero{
  background:radial-gradient(120% 140% at 15% -10%, #2b5138 0%, var(--forest) 45%, var(--forest-deep) 100%);
  color:var(--cream);
  padding:100px 0 90px;
  position:relative;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute; right:-120px; top:-120px;
  width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(217,164,65,0.16) 0%, rgba(217,164,65,0) 70%);
}
.hero-grid{
  display:grid; grid-template-columns:1.2fr 0.8fr; gap:48px; align-items:center;
  position:relative; z-index:2;
}
.hero .eyebrow{ color:var(--ochre); }
.hero h1{
  font-size:clamp(2.6rem, 6vw, 4.4rem);
  color:var(--ochre);
  margin:18px 0 8px;
}
.hero .subline{
  font-family:var(--font-display); font-weight:700; font-size:1.25rem;
  color:var(--cream); margin-bottom:18px; max-width:520px;
}
.hero p.lead{
  font-size:1.05rem; color:rgba(243,236,218,0.88); max-width:540px; margin-bottom:34px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-art{ position:relative; }
.hero-badge{
  position:absolute; bottom:-18px; left:-10px;
  background:var(--cream); color:var(--forest);
  border-radius:999px; padding:10px 18px;
  font-family:var(--font-label); font-weight:700; font-size:0.82rem;
  box-shadow:0 10px 24px rgba(0,0,0,0.25);
  display:flex; align-items:center; gap:8px;
}
.hero-badge .dot{ width:8px; height:8px; border-radius:50%; background:var(--rust); }

@media (max-width:860px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-art{ order:-1; max-width:280px; margin:0 auto 20px; }
}

/* ===== MARQUEE ===== */
.marquee-band{
  background:var(--ochre); color:var(--forest-deep);
  overflow:hidden; white-space:nowrap; border-top:1px solid rgba(0,0,0,0.08); border-bottom:1px solid rgba(0,0,0,0.08);
}
.marquee-track{
  display:inline-flex; gap:0; animation:scrollLeft 26s linear infinite;
}
.marquee-track span{
  font-family:var(--font-label); font-weight:700; font-size:0.98rem;
  padding:14px 28px; display:inline-flex; align-items:center; gap:10px;
}
@keyframes scrollLeft{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation:none; } }

/* ===== BUNTING DIVIDER ===== */
.bunting{ width:100%; height:34px; display:block; }
.bunting-light{ background:var(--cream); }
.bunting-dark{ background:var(--forest); }

/* ===== SECTION HEADERS ===== */
.section{ padding:88px 0; }
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.9rem,3.6vw,2.6rem); margin-top:14px; }
.on-dark .eyebrow{ color:var(--ochre); }
.on-dark h2{ color:var(--cream); }
.on-light .eyebrow{ color:var(--rust); }
.on-light h2{ color:var(--forest); }

/* ===== ABOUT ===== */
.about{ background:var(--cream); }
.about-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center; }
.about-grid p{ color:rgba(36,26,18,0.85); margin-bottom:18px; font-size:1.02rem; }
.pillars{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:28px; }
.pillar{
  background:#fff; border:1px solid var(--line-dark); border-radius:var(--radius);
  padding:18px 14px; text-align:center;
}
.pillar svg{ width:32px; height:32px; margin:0 auto 10px; }
.pillar strong{ display:block; font-family:var(--font-display); font-weight:900; color:var(--forest); font-size:1.05rem; }
.pillar span{ font-size:0.82rem; color:rgba(36,26,18,0.65); }
.about-art{ position:relative; }
.about-art .card{
  background:var(--forest); border-radius:20px; padding:32px; color:var(--cream);
  box-shadow:0 20px 44px rgba(31,58,40,0.25);
}
.about-art .card h3{ color:var(--ochre); font-size:1.3rem; margin-bottom:10px; }
.about-art .card p{ color:rgba(243,236,218,0.85); font-size:0.95rem; }

@media (max-width:860px){
  .about-grid{ grid-template-columns:1fr; }
  .pillars{ grid-template-columns:1fr 1fr 1fr; }
}
@media (max-width:520px){ .pillars{ grid-template-columns:1fr; } }

/* ===== MISSION ===== */
.mission{ background:var(--forest-deep); color:var(--cream); }
.mission-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
}
.mission-card{
  background:rgba(243,236,218,0.05);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  transition:border-color .2s ease, transform .2s ease, background .2s ease;
}
.mission-card:hover{
  border-color:var(--ochre); transform:translateY(-4px);
  background:rgba(243,236,218,0.08);
}
.mission-card svg{ width:36px; height:36px; color:var(--ochre); margin-bottom:14px; }
.mission-card h3{ font-size:1.1rem; color:var(--cream); margin-bottom:8px; }
.mission-card p{ font-size:0.92rem; color:rgba(243,236,218,0.72); }
@media (max-width:860px){ .mission-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .mission-grid{ grid-template-columns:1fr; } }

/* ===== DEMANDS (MANIFESTO) ===== */
.demands{ background:var(--cream); }
.manifesto{
  background:#fff;
  border:1.5px solid var(--forest);
  border-radius:20px;
  padding:12px;
  box-shadow:0 24px 50px rgba(31,58,40,0.12);
}
.manifesto-inner{
  border:1px dashed rgba(31,58,40,0.35);
  border-radius:14px;
  padding:44px clamp(20px,5vw,56px);
}
.manifesto-title{
  text-align:center; margin-bottom:36px;
}
.manifesto-title h2{ color:var(--forest); }
.manifesto-title p{ color:rgba(36,26,18,0.65); margin-top:8px; }
.demand-list{ display:grid; gap:22px; }
.demand-item{
  display:grid; grid-template-columns:64px 1fr; gap:20px; align-items:start;
  padding-bottom:22px; border-bottom:1px solid var(--line-dark);
}
.demand-item:last-child{ border-bottom:none; padding-bottom:0; }
.demand-num{
  font-family:var(--font-display); font-weight:900; font-size:1.5rem;
  color:var(--rust);
}
.demand-item h3{ font-family:var(--font-body); font-weight:700; font-size:1.05rem; color:var(--forest); margin-bottom:4px; }
.demand-item p{ font-size:0.94rem; color:rgba(36,26,18,0.72); }

/* ===== LEADERSHIP ===== */
.leadership{ background:var(--forest); color:var(--cream); }
.leader-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(210px, 1fr)); gap:20px; }
.leader-card{
  background:rgba(243,236,218,0.06);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 20px;
  text-align:center;
}
.leader-avatar{
  width:76px; height:76px; margin:0 auto 16px;
  border-radius:50%;
  background:rgba(217,164,65,0.14);
  display:flex; align-items:center; justify-content:center;
  border:1.5px solid var(--ochre);
}
.leader-avatar svg{ width:36px; height:36px; color:var(--ochre); }
.leader-role{ font-family:var(--font-label); font-weight:700; color:var(--ochre); font-size:0.9rem; margin-bottom:6px; }
.leader-name{ font-family:var(--font-display); font-weight:700; font-size:1.05rem; color:var(--cream); margin-bottom:4px; }
.leader-note{ font-size:0.8rem; color:rgba(243,236,218,0.55); }
@media (max-width:520px){ .leader-grid{ grid-template-columns:1fr; } }

/* ===== JOIN FORM ===== */
.join{ background:var(--cream); }
.join-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:48px; align-items:start; }
.join-copy h2{ color:var(--forest); }
.join-copy p{ color:rgba(36,26,18,0.75); margin:16px 0 24px; max-width:420px; }
.join-points{ display:grid; gap:14px; }
.join-points li{ display:flex; gap:12px; align-items:flex-start; font-size:0.95rem; color:rgba(36,26,18,0.8); }
.join-points svg{ width:20px; height:20px; flex-shrink:0; color:var(--rust); margin-top:2px; }

.join-form{
  background:#fff; border-radius:20px; padding:36px;
  box-shadow:0 24px 50px rgba(31,58,40,0.12);
  border:1px solid var(--line-dark);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-field{ display:flex; flex-direction:column; gap:6px; }
.form-field.full{ grid-column:1 / -1; }
.form-field label{ font-family:var(--font-label); font-weight:600; font-size:0.82rem; color:var(--forest); }
.form-field input, .form-field select{
  padding:12px 14px; border-radius:10px; border:1.5px solid rgba(31,58,40,0.2);
  font-family:var(--font-body); font-size:0.95rem; background:#FBF8F1; color:var(--charcoal);
  width:100%;
}
.form-field input:focus, .form-field select:focus{ outline:2px solid var(--ochre); outline-offset:1px; border-color:var(--ochre); }
.join-form .btn{ width:100%; margin-top:6px; }
.form-success{
  display:none; margin-top:16px; padding:14px 16px; border-radius:10px;
  background:rgba(31,58,40,0.08); color:var(--forest); font-size:0.9rem; font-weight:600;
  border:1px solid rgba(31,58,40,0.18);
}
.form-success.show{ display:block; }
.form-error{
  display:none; margin-top:16px; padding:14px 16px; border-radius:10px;
  background:rgba(143,42,30,0.08); color:var(--vermilion); font-size:0.9rem; font-weight:600;
  border:1px solid rgba(143,42,30,0.25);
}
.form-error.show{ display:block; }
.join-form button[type="submit"]:disabled{ opacity:0.7; cursor:not-allowed; }
@media (max-width:860px){ .join-grid{ grid-template-columns:1fr; } }
@media (max-width:520px){ .form-row{ grid-template-columns:1fr; } }

/* ===== CONTACT ===== */
.contact{ background:var(--forest-deep); color:var(--cream); }
.contact-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.contact-card{
  background:rgba(243,236,218,0.05); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px;
}
.contact-card svg{ width:26px; height:26px; color:var(--ochre); margin-bottom:12px; }
.contact-card h3{ font-size:1rem; margin-bottom:6px; color:var(--cream); font-family:var(--font-body); font-weight:700; }
.contact-card p{ font-size:0.9rem; color:rgba(243,236,218,0.7); }
.social-row{ display:flex; gap:12px; margin-top:36px; flex-wrap:wrap; }
.social-pill{
  display:flex; align-items:center; gap:8px; padding:10px 18px; border-radius:999px;
  border:1.5px solid var(--line); font-family:var(--font-label); font-weight:600; font-size:0.85rem;
  color:var(--cream);
}
.social-pill:hover{ border-color:var(--ochre); color:var(--ochre); }
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .contact-grid{ grid-template-columns:1fr; } }

/* ===== FOOTER ===== */
footer.site-footer{ background:var(--forest); color:var(--cream); padding:48px 0 28px; border-top:1px solid var(--line); }
.footer-top{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:32px; margin-bottom:32px; }
.footer-links{ display:flex; gap:40px; flex-wrap:wrap; }
.footer-links h4{ font-family:var(--font-label); font-size:0.82rem; color:var(--ochre); margin-bottom:12px; letter-spacing:0.04em; }
.footer-links a{ display:block; font-size:0.88rem; color:rgba(243,236,218,0.75); margin-bottom:8px; }
.footer-links a:hover{ color:var(--ochre); }
.footer-bottom{
  border-top:1px solid var(--line); padding-top:20px; display:flex; justify-content:space-between;
  flex-wrap:wrap; gap:10px; font-size:0.8rem; color:rgba(243,236,218,0.55);
}

/* ===== reveal on scroll ===== */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* =====================================================================
   ANIMATED EDITION — बो-एरो कर्सर, तीर एनिमेशन, स्टैगर्ड रिवील, होवर इफ़ेक्ट्स
   ===================================================================== */

/* ---- staggered scroll-reveal delays ---- */
.mission-grid .reveal:nth-child(1){ transition-delay:.03s; }
.mission-grid .reveal:nth-child(2){ transition-delay:.10s; }
.mission-grid .reveal:nth-child(3){ transition-delay:.17s; }
.mission-grid .reveal:nth-child(4){ transition-delay:.24s; }
.mission-grid .reveal:nth-child(5){ transition-delay:.31s; }
.mission-grid .reveal:nth-child(6){ transition-delay:.38s; }
.leader-grid .reveal:nth-child(1){ transition-delay:.03s; }
.leader-grid .reveal:nth-child(2){ transition-delay:.11s; }
.leader-grid .reveal:nth-child(3){ transition-delay:.19s; }
.leader-grid .reveal:nth-child(4){ transition-delay:.27s; }
.leader-grid .reveal:nth-child(5){ transition-delay:.35s; }
.leader-grid .reveal:nth-child(6){ transition-delay:.43s; }
.leader-grid .reveal:nth-child(7){ transition-delay:.51s; }
.leader-grid .reveal:nth-child(8){ transition-delay:.59s; }
.contact-grid .reveal:nth-child(1){ transition-delay:.03s; }
.contact-grid .reveal:nth-child(2){ transition-delay:.12s; }
.contact-grid .reveal:nth-child(3){ transition-delay:.21s; }

/* ---- button arrow micro-interaction ---- */
.btn{ position:relative; }
.btn::after{
  content:"→"; display:inline-block; margin-left:2px;
  transition:transform .3s cubic-bezier(0.34,1.56,0.64,1);
}
.btn:hover::after{ transform:translateX(6px); }

/* ---- icon bounce on card hover ---- */
@keyframes jjpIconBounce{
  0%{ transform:translateY(0) scale(1); }
  30%{ transform:translateY(-6px) scale(1.18); }
  60%{ transform:translateY(2px) scale(0.94); }
  100%{ transform:translateY(0) scale(1); }
}
.mission-card:hover svg,
.contact-card:hover svg,
.pillar:hover svg{ animation:jjpIconBounce .55s ease; }

.leader-avatar{ transition:transform .3s ease, box-shadow .3s ease; }
.leader-card:hover .leader-avatar{
  transform:scale(1.08);
  box-shadow:0 0 0 7px rgba(217,164,65,0.18);
}

/* ---- hero: bow, flying arrow, target, floating feathers ---- */
.jjp-hero-scene{ overflow:visible; }
.jjp-arrow-fly{
  transform-box: fill-box;
  transform-origin: 0px 0px;
  animation: jjpDrawRelease 3.2s cubic-bezier(0.35,0,0.15,1) infinite;
}
@keyframes jjpDrawRelease{
  0%   { transform:translateX(0);     opacity:1; }
  50%  { transform:translateX(-10px); opacity:1; }
  62%  { transform:translateX(210px); opacity:1; }
  66%  { transform:translateX(224px); opacity:0; }
  100% { transform:translateX(0);     opacity:0; }
}
.jjp-target-pulse{
  transform-box: fill-box;
  transform-origin: center;
  animation: jjpTargetPulse 3.2s ease-out infinite;
}
@keyframes jjpTargetPulse{
  0%, 58% { transform:scale(1); }
  63%     { transform:scale(1.28); }
  70%, 100% { transform:scale(1); }
}
.hero-art{ position:relative; }
.jjp-feather{
  position:absolute; width:26px; height:26px; pointer-events:none;
}
.jjp-feather-1{ top:6%;  left:4%;  animation:jjpFeatherFloat 6s ease-in-out infinite; }
.jjp-feather-2{ top:58%; left:-4%; animation:jjpFeatherFloat 7.5s ease-in-out infinite 1.2s; }
.jjp-feather-3{ top:26%; right:0%; animation:jjpFeatherFloat 5.5s ease-in-out infinite .6s; }
@keyframes jjpFeatherFloat{
  0%, 100%{ transform:translateY(0) rotate(-6deg); }
  50%     { transform:translateY(-18px) rotate(8deg); }
}

/* ---- custom bow & arrow cursor (CSS fallback, works even without JS) ---- */
html, body{
  cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj4KPGxpbmUgeDE9IjI3IiB5MT0iMjciIHgyPSI5IiB5Mj0iOSIgc3Ryb2tlPSIjQjU1MDJEIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8cGF0aCBkPSJNMjcsMjcgTDIwLDI0IE0yNywyNyBMMjQsMjAiIHN0cm9rZT0iIzhGMkExRSIgc3Ryb2tlLXdpZHRoPSIyLjQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgZmlsbD0ibm9uZSIvPgo8cG9seWdvbiBwb2ludHM9IjIsMiAxMyw2IDYsMTMiIGZpbGw9IiNEOUE0NDEiIHN0cm9rZT0iIzI0MUExMiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==") 2 2, auto;
}
a, button, .btn, input, select, textarea, label,
.mission-card, .leader-card, .contact-card, .pillar, .social-pill{
  cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOCIgaGVpZ2h0PSIyOCIgdmlld0JveD0iMCAwIDI4IDI4Ij4KPGNpcmNsZSBjeD0iMTQiIGN5PSIxNCIgcj0iMTEiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI0Q5QTQ0MSIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxjaXJjbGUgY3g9IjE0IiBjeT0iMTQiIHI9IjYuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjQjU1MDJEIiBzdHJva2Utd2lkdGg9IjIiLz4KPGNpcmNsZSBjeD0iMTQiIGN5PSIxNCIgcj0iMi4yIiBmaWxsPSIjOEYyQTFFIi8+Cjwvc3ZnPg==") 14 14, pointer;
}

/* ---- JS-enhanced trailing cursor (progressive enhancement; only active once cursor.js confirms a fine pointer) ---- */
html.jjp-custom-cursor-active,
html.jjp-custom-cursor-active *{ cursor:none !important; }
#jjp-cursor{
  position:fixed; top:0; left:0; width:34px; height:34px;
  pointer-events:none; z-index:99999;
  transform:translate(-100px,-100px);
  will-change:transform;
}
#jjp-cursor svg{ width:100%; height:100%; display:block; overflow:visible; }
#jjp-cursor .jjp-cursor-ring{
  opacity:0; transform:scale(0.6);
  transition:opacity .18s ease, transform .18s ease;
}
#jjp-cursor.is-hover .jjp-cursor-ring{ opacity:1; transform:scale(1); }
#jjp-cursor.is-hover .jjp-cursor-arrow{ opacity:0; }

/* ---- accessibility: reduce/disable motion ---- */
@media (prefers-reduced-motion: reduce){
  .jjp-arrow-fly, .jjp-target-pulse, .jjp-feather,
  .mission-card:hover svg, .contact-card:hover svg, .pillar:hover svg{
    animation:none !important;
  }
}
@media (pointer: coarse){
  html, body, a, button, .btn, input, select, textarea, label,
  .mission-card, .leader-card, .contact-card, .pillar, .social-pill{
    cursor:auto !important;
  }
  #jjp-cursor{ display:none !important; }
}

/* ---- disabled via Customizer: "तीर-कमान कर्सर चालू रखें" unchecked ---- */
html.jjp-no-cursor, html.jjp-no-cursor *{ cursor:auto !important; }
html.jjp-no-cursor #jjp-cursor{ display:none !important; }

/* =====================================================================
   3D EDITION — टिल्ट कार्ड्स, हीरो पैरालैक्स, 3D बटन, घूमता निशाना-सीन
   ===================================================================== */

/* ---- 3D tilt cards (mission / leader / contact / about-card / join-form) ---- */
.jjp-tilt{
  position:relative;
  transform-style:preserve-3d;
  transform:perspective(900px) rotateX(0deg) rotateY(0deg);
  transition:transform .35s cubic-bezier(0.22,1,0.36,1), box-shadow .35s ease;
  will-change:transform;
}
.jjp-tilt:hover{ box-shadow:0 26px 44px rgba(0,0,0,0.22); }
.jjp-tilt-glare{
  position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  background:radial-gradient(circle at var(--gx,50%) var(--gy,50%), rgba(255,255,255,0.25), rgba(255,255,255,0) 55%);
  opacity:0; transition:opacity .3s ease; z-index:2;
}
.jjp-tilt:hover .jjp-tilt-glare{ opacity:1; }
.jjp-tilt > *{ transform:translateZ(0); }
.jjp-tilt .jjp-tilt-pop{ transform:translateZ(28px); }

@media (pointer: coarse){
  .jjp-tilt{ transform:none !important; transition:none; }
  .jjp-tilt-glare{ display:none; }
}
@media (prefers-reduced-motion: reduce){
  .jjp-tilt{ transition:none; }
}

/* ---- hero 3D parallax stage ---- */
.hero-grid{ perspective:1200px; }
.jjp-hero-scene{ transform-style:preserve-3d; transition:transform .2s ease-out; }
.jjp-hero-scene .jjp-depth-1{ transition:transform .15s ease-out; }
.jjp-hero-scene .jjp-depth-2{ transition:transform .2s ease-out; }
.jjp-hero-scene .jjp-depth-3{ transition:transform .25s ease-out; }
.hero h1{
  text-shadow:
    1px 1px 0 rgba(143,42,30,0.55),
    2px 2px 0 rgba(143,42,30,0.4),
    3px 3px 0 rgba(143,42,30,0.28),
    4px 4px 10px rgba(0,0,0,0.35);
  transition:transform .2s ease-out;
}
@media (prefers-reduced-motion: reduce){
  .jjp-hero-scene, .jjp-hero-scene *, .hero h1{ transition:none !important; transform:none !important; }
}

/* ---- spinning 3D emblem ---- */
.brand .emblem{ perspective:200px; }
.brand .emblem svg, .brand .emblem img{
  animation:jjpEmblemSpin 9s linear infinite;
  transform-style:preserve-3d;
}
@keyframes jjpEmblemSpin{
  0%   { transform:rotateY(0deg); }
  100% { transform:rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce){
  .brand .emblem svg, .brand .emblem img{ animation:none; }
}

/* ---- 3D button press ---- */
.btn{
  transform-style:preserve-3d;
  transform:perspective(400px) translateZ(0);
  box-shadow:0 6px 0 rgba(0,0,0,0.18), 0 10px 18px rgba(0,0,0,0.18);
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn:hover{ transform:perspective(400px) translateZ(4px) translateY(-2px); }
.btn:active{
  transform:perspective(400px) translateZ(-3px) translateY(2px) rotateX(8deg);
  box-shadow:0 2px 0 rgba(0,0,0,0.18), 0 4px 8px rgba(0,0,0,0.18);
}

/* ---- 3D scene canvas (Three.js target + arrow) ---- */
.jjp-3d-scene-wrap{
  position:absolute; right:-6%; bottom:-6%; width:230px; height:230px;
  pointer-events:none; opacity:0.95;
}
.jjp-3d-scene-wrap canvas{ width:100%; height:100%; display:block; }
@media (max-width:860px){
  .jjp-3d-scene-wrap{ width:150px; height:150px; right:0; bottom:-4%; }
}

/* ---- बिरसा मुंडा श्रद्धांजलि सेक्शन ---- */
.birsa{ background:var(--forest); }
.birsa-grid{
  display:grid; grid-template-columns:0.65fr 1.35fr; gap:56px; align-items:center;
}
.birsa-photo-wrap{
  position:relative; aspect-ratio:4/5; border-radius:18px; overflow:hidden;
  background:linear-gradient(160deg, rgba(217,164,65,0.18), rgba(181,80,45,0.1));
  border:2px solid rgba(217,164,65,0.4);
  display:flex; align-items:center; justify-content:center;
}
.birsa-photo{ width:100%; height:100%; object-fit:cover; display:block; }
.birsa-photo-placeholder{
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color:rgba(243,236,218,0.55);
}
.birsa-photo-placeholder svg{ width:64px; height:64px; }
.birsa-photo-placeholder span{ font-family:var(--font-label); font-size:0.85rem; }
.birsa-frame-ring{
  position:absolute; inset:10px; border:1.5px dashed rgba(217,164,65,0.5);
  border-radius:12px; pointer-events:none;
}
.birsa-copy .eyebrow{ margin-bottom:4px; }
.birsa-copy h2{ font-size:clamp(1.8rem,3.4vw,2.4rem); margin-bottom:10px; }
.birsa-sub{
  font-family:var(--font-display); font-weight:700; font-size:1.1rem;
  color:var(--ochre); margin-bottom:16px;
}
.birsa-bio{
  color:rgba(243,236,218,0.85); font-size:1rem; line-height:1.75; margin-bottom:22px; max-width:640px;
}
.birsa-badge{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(217,164,65,0.15); border:1px solid rgba(217,164,65,0.45);
  color:var(--ochre); font-family:var(--font-label); font-weight:700; font-size:0.85rem;
  padding:10px 18px; border-radius:999px;
}
@media (max-width:860px){
  .birsa-grid{ grid-template-columns:1fr; }
  .birsa-photo-wrap{ max-width:320px; margin:0 auto; }
}
