/* ============================================
   Navuday Muskaan — Shared Stylesheet
   Mobile-first · NUMK brand (forest green + gold)
   ============================================ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --saffron:#E8761A;--saffron-light:#FAE8D5;--saffron-dark:#B85A0E;--saffron-deep:#9A4A08;
  --green:#3B6D11;--green-light:#EAF3DE;--green-mid:#639922;
  --warm-bg:#FDF6EE;--cream:#FBF3E7;--white:#fff;
  --text-dark:#2C2A22;--text-mid:#5F5E5A;--text-light:#8B8A82;
  --radius:16px;
  --font-head:'Playfair Display',Georgia,serif;
  --font-body:'Nunito',system-ui,sans-serif;
  --shadow-soft:0 4px 24px rgba(184,90,14,0.08);
  --shadow-hover:0 8px 32px rgba(232,118,26,0.16);
}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);background:var(--warm-bg);color:var(--text-dark);line-height:1.7;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:inherit}

/* ===== HEADER / DESKTOP NAV ===== */
.site-header{position:sticky;top:0;z-index:500;background:rgba(253,246,238,0.97);backdrop-filter:blur(10px);border-bottom:1px solid #F0DCBC}
.header-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:0 1.25rem;height:66px}
.brand{display:flex;align-items:center;gap:11px;text-decoration:none}
.brand-logo{width:46px;height:46px;border-radius:50%;overflow:hidden;background:#fff;flex-shrink:0;box-shadow:0 2px 8px rgba(0,0,0,0.08)}
.brand-logo img{width:100%;height:100%;object-fit:cover}
.brand-text{line-height:1.15}
.brand-name{font-family:var(--font-head);font-size:18px;font-weight:700;color:var(--saffron-dark)}
.brand-sub{font-size:10px;font-weight:600;color:var(--text-light);letter-spacing:0.06em;text-transform:uppercase}
.desktop-nav{display:flex;gap:1.4rem;list-style:none;align-items:center}
.desktop-nav a{text-decoration:none;color:var(--text-mid);font-size:14px;font-weight:600;transition:color .2s;padding:4px 0;border-bottom:2px solid transparent}
.desktop-nav a:hover{color:var(--saffron-deep)}
.desktop-nav a.active{color:var(--saffron-deep);border-bottom-color:var(--saffron)}
.nav-donate{background:rgba(232,118,26,0.16);color:var(--saffron-dark);padding:7px 15px;border-radius:22px;font-size:12px;font-weight:700;border:1px dashed var(--saffron);white-space:nowrap}

/* Hamburger (mobile only) */
.mobile-tabs{display:none}
.menu-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px;z-index:600}
.menu-toggle span{width:26px;height:3px;background:var(--saffron-dark);border-radius:3px;transition:transform .3s,opacity .3s}
.menu-toggle.open span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.menu-toggle.open span:nth-child(2){opacity:0}
.menu-toggle.open span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
.menu-toggle.open span{background:#fff}
.menu-toggle{position:relative;z-index:600}

/* Mobile full-screen overlay menu */
.mobile-menu{position:fixed;inset:0;z-index:550;background:linear-gradient(165deg,#2C2A22 0%,#33301F 60%,#3E3418 100%);display:flex;flex-direction:column;align-items:center;justify-content:flex-start;gap:0.15rem;opacity:0;pointer-events:none;transition:opacity .25s ease;padding:5.5rem 1.5rem 2rem;overflow-y:auto}
.mobile-menu.open{opacity:1;pointer-events:auto}
.mobile-menu-head{position:absolute;top:0;left:0;right:0;height:64px;display:flex;align-items:center;gap:11px;padding:0 1.25rem;background:rgba(20,19,14,0.55);border-bottom:1px solid rgba(255,255,255,0.08)}
.mobile-menu-head .brand-logo{width:40px;height:40px;border-radius:50%;overflow:hidden;background:#fff;flex-shrink:0}
.mobile-menu-head .brand-logo img{width:100%;height:100%;object-fit:cover}
.mobile-menu-head .mm-title{font-family:var(--font-head);font-size:16px;font-weight:700;color:#fff}
.mobile-menu a{text-decoration:none;font-family:var(--font-head);font-size:1.15rem;font-weight:600;color:#fff;padding:0.5rem 1.25rem;border-radius:10px;transition:color .2s,background .2s;width:100%;max-width:280px;text-align:center}
.mobile-menu a:hover,.mobile-menu a.active{color:#FBE0A6;background:rgba(255,255,255,0.08)}
.mobile-menu .mm-donate{margin-top:0.9rem;font-size:0.95rem;font-family:var(--font-body);font-weight:700;color:#FBE0A6;border:1px dashed rgba(251,224,166,0.6);background:rgba(255,255,255,0.05);padding:10px 24px}
.mobile-menu-foot{margin-top:1.5rem;display:flex;gap:1rem;justify-content:center}
.mobile-menu-foot a{font-family:var(--font-body);font-size:13px;font-weight:700;color:rgba(255,255,255,0.85);padding:9px 20px;border:1px solid rgba(255,255,255,0.25);border-radius:22px;width:auto}
.mobile-menu-foot a:hover{background:var(--saffron);border-color:var(--saffron);color:#fff}

/* ===== BUTTONS ===== */
.btn-primary{display:inline-block;background:var(--saffron-dark);color:#fff;padding:14px 30px;border-radius:30px;font-weight:700;font-size:1rem;text-decoration:none;transition:background .2s,transform .2s;border:none;cursor:pointer;font-family:var(--font-body)}
.btn-primary:hover{background:var(--saffron-dark);transform:translateY(-1px)}
.btn-outline{display:inline-block;border:2px solid var(--saffron);color:var(--saffron-dark);padding:12px 26px;border-radius:30px;font-weight:700;font-size:1rem;text-decoration:none;transition:all .2s;background:transparent;cursor:pointer;font-family:var(--font-body)}
.btn-outline:hover{background:var(--saffron-light)}
.btn-ghost{display:inline-block;border:2px solid rgba(255,255,255,0.8);color:#fff;padding:12px 26px;border-radius:30px;font-weight:700;font-size:1rem;text-decoration:none;transition:all .2s}
.btn-ghost:hover{background:rgba(255,255,255,0.15)}

/* ===== SECTIONS ===== */
.section{padding:4rem 1.25rem}
.section-inner{max-width:1000px;margin:0 auto}
.section-tag{font-size:12px;font-weight:800;letter-spacing:0.1em;text-transform:uppercase;color:var(--green);margin-bottom:0.5rem}
.section-title{font-family:var(--font-head);font-size:clamp(1.7rem,5vw,2.5rem);color:var(--text-dark);margin-bottom:1rem;line-height:1.22}
.section-sub{color:var(--text-mid);max-width:640px;margin-bottom:2.5rem;font-size:1.02rem;line-height:1.8}
.divider{width:48px;height:4px;background:var(--saffron);border-radius:4px;margin-bottom:1.4rem}
.page-hero{background:linear-gradient(160deg,#FDF0DC,#FDF6EE 55%,#EAF3DE);padding:3.5rem 1.25rem 2.5rem;text-align:center}
.page-hero h1{font-family:var(--font-head);font-size:clamp(2rem,6vw,3rem);color:var(--text-dark);margin-bottom:0.75rem;line-height:1.18}
.page-hero p{color:var(--text-mid);max-width:600px;margin:0 auto;font-size:1.05rem}
.page-hero .section-tag{margin-bottom:0.75rem}

/* ===== CARDS GRID HELPERS ===== */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.grid-auto{display:grid;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));gap:1.5rem}

/* ===== FOOTER ===== */
footer{background:var(--text-dark);color:rgba(255,255,255,0.7);padding:3rem 1.25rem;text-align:center}
.footer-top{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:0.6rem}
.footer-logo-img{width:44px;height:44px;border-radius:50%;overflow:hidden;background:#fff}
.footer-logo-img img{width:100%;height:100%;object-fit:cover}
.footer-logo{font-family:var(--font-head);font-size:1.4rem;color:var(--saffron)}
.footer-reg{font-size:13px;margin-bottom:1.25rem;color:rgba(255,255,255,0.55)}
.footer-links{display:flex;gap:1.25rem;justify-content:center;flex-wrap:wrap;margin-bottom:1rem}
.footer-links a{color:rgba(255,255,255,0.6);text-decoration:none;font-size:13px;transition:color .2s}
.footer-links a:hover{color:var(--saffron)}
.footer-social{display:flex;gap:1rem;justify-content:center;margin-bottom:1.25rem}
.footer-social a{display:flex;align-items:center;gap:6px;color:rgba(255,255,255,0.65);text-decoration:none;font-size:13px;font-weight:700;transition:all .2s;padding:7px 16px;border:1px solid rgba(255,255,255,0.18);border-radius:22px}
.footer-social a:hover{color:#fff;border-color:var(--saffron);background:var(--saffron)}
.footer-copy{font-size:12px;color:rgba(255,255,255,0.3)}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .desktop-nav,.header-inner>.nav-donate{display:none}
  .menu-toggle{display:none}
  .mobile-menu{display:none}
  .grid-2{grid-template-columns:1fr}
  .section{padding:3rem 1.15rem}
  .mobile-tabs{
    display:flex;flex-wrap:wrap;justify-content:center;gap:6px;
    padding:10px 12px 12px;background:var(--cream);
    border-bottom:1px solid #F0DCBC;
  }
  .mobile-tabs a{
    font-family:var(--font-body);font-size:12.5px;font-weight:700;
    color:var(--saffron-deep);text-decoration:none;
    padding:6px 12px;border-radius:20px;line-height:1;white-space:nowrap;
    background:#fff;border:1px solid rgba(184,90,14,0.28);
  }
  .mobile-tabs a.active{
    background:var(--saffron-dark);color:#fff;border-color:var(--saffron-dark);
  }
}
