/* ═══════════════════════════════════════════════
   Khatu Shyam Ji — style.css
   Theme: Light Red · Dark Orange · Light Orange · Light Yellow
   ═══════════════════════════════════════════════ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --red-light:#F46B6B;
  --red-mid:#E84040;
  --orange-dark:#CC5500;
  --orange-light:#FF9A3C;
  --yellow-light:#FFE07A;
  --yellow-pale:#FFF8DC;
  --pale-bg:#FFF5F0;
  --pale-red:#FFF0F0;
  --white:#FFFDF8;
  --td:#4A1500;
  --tm:#8B3A1A;
  --border:rgba(228,100,80,0.2);
  --col-w:80px;
}

body{font-family:'Poppins',sans-serif;background:var(--pale-bg);color:var(--td);font-size:14px;line-height:1.6}

/* ── NAV ── */
nav{
  background:linear-gradient(90deg,var(--orange-dark) 0%,#E05A10 50%,var(--red-mid) 100%);
  padding:0 28px;display:flex;align-items:center;justify-content:space-between;
  height:54px;position:sticky;top:0;z-index:100;
  box-shadow:0 2px 14px rgba(180,60,0,0.3);
  border-bottom:3px solid var(--yellow-light);
}
.nav-logo-link{display:flex;align-items:center;height:100%;flex-shrink:0}
.nav-logo-img{height:38px;width:auto;display:block;background:#fff;padding:4px 12px;border-radius:8px;box-shadow:0 1px 4px rgba(0,0,0,0.2)}
.nav-links{display:flex;gap:18px;list-style:none;flex-wrap:wrap}
.nav-links a{color:#FFE4B0;text-decoration:none;font-size:12px;font-weight:500;transition:color 0.2s}
.nav-links a:hover{color:var(--yellow-light)}
.nav-cart{background:var(--yellow-light);color:var(--orange-dark);border:none;border-radius:20px;padding:6px 16px;font-size:12px;font-weight:700;cursor:pointer;white-space:nowrap}
.ham{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.ham span{width:22px;height:2px;background:var(--yellow-light);border-radius:2px;display:block}

/* ── TICKER ── */
.ticker{background:var(--yellow-light);color:var(--orange-dark);font-size:12px;font-weight:600;padding:7px 0;overflow:hidden;white-space:nowrap}
.ticker-inner{display:inline-block;animation:tick 30s linear infinite}
@keyframes tick{from{transform:translateX(100vw)}to{transform:translateX(-100%)}}

/* ── BANNER ── */
.banner{
  position:relative;height:480px;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  background-image:url('../images/banner/temple_main.jpg');
  background-size:cover;background-position:center top;
}
/* ── TO CHANGE BANNER IMAGE:
   Open css/style.css, find .banner above,
   update the background-image path to your new image in images/banner/
   e.g. background-image:url('../images/banner/your_new_banner.jpg');
── */
.banner::before{content:'';position:absolute;inset:0;background:linear-gradient(160deg,rgba(204,85,0,0.55) 0%,rgba(232,64,64,0.35) 55%,rgba(255,154,60,0.25) 100%);filter:brightness(0.58)}
.banner-overlay{position:absolute;inset:0}
.banner-inner{position:relative;text-align:center;padding:32px 24px;z-index:2;width:100%;max-width:700px}
.banner-tag{background:var(--yellow-light);color:var(--orange-dark);font-size:11px;letter-spacing:2px;text-transform:uppercase;border-radius:20px;padding:5px 18px;display:inline-block;margin-bottom:12px;font-weight:700}
.banner-title{font-family:'Tiro Devanagari Hindi',serif;font-size:52px;color:#FFF8EE;line-height:1.1;text-shadow:0 3px 24px rgba(100,30,0,0.55);margin-bottom:8px}
.banner-sub{color:#FFE8C0;font-size:14px;margin-bottom:24px;letter-spacing:0.5px}
.banner-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn-p{background:var(--yellow-light);color:var(--orange-dark);border:none;border-radius:24px;padding:10px 24px;font-weight:700;font-size:13px;cursor:pointer;transition:transform 0.15s}
.btn-p:hover{transform:scale(1.04)}
.btn-o{background:transparent;color:#fff;border:1.5px solid rgba(255,224,122,0.65);border-radius:24px;padding:10px 24px;font-weight:500;font-size:13px;cursor:pointer;transition:background 0.2s}
.btn-o:hover{background:rgba(255,224,122,0.15)}

/* ── QUICK LINKS ── */
.quick-links{
  background:linear-gradient(90deg,var(--orange-dark),var(--orange-light));
  display:grid;grid-template-columns:repeat(4,1fr);
  border-bottom:3px solid var(--yellow-light);
}
.ql-card{padding:18px 10px;text-align:center;cursor:pointer;transition:background 0.2s;border-right:1px solid rgba(255,224,122,0.25)}
.ql-card:last-child{border-right:none}
.ql-card:hover{background:rgba(255,255,255,0.12)}
.ql-icon{font-size:26px;margin-bottom:6px;display:block}
.ql-label{font-size:11px;font-weight:600;color:var(--yellow-light)}

/* ── 3-COLUMN LAYOUT ── */
.col-wrap{display:grid;grid-template-columns:var(--col-w) 1fr var(--col-w);background:var(--pale-bg)}
.col-left,.col-right{min-height:100%}
.col-main{min-width:0}

/* ── DIVIDER ── */
.divider{height:3px;background:linear-gradient(90deg,var(--red-light),var(--orange-dark),var(--orange-light),var(--yellow-light),var(--orange-light),var(--orange-dark),var(--red-light));opacity:0.45}

/* ── SECTION ── */
.section{padding:28px 32px}
.section-title{font-size:17px;font-weight:600;color:var(--orange-dark);border-left:4px solid var(--red-light);padding-left:12px;margin-bottom:16px}

/* ── DEITY ── */
.deity-section{background:linear-gradient(135deg,var(--pale-red),var(--yellow-pale));padding:28px 32px;display:flex;gap:28px;align-items:center;justify-content:center;border-top:3px solid var(--orange-light);border-bottom:3px solid var(--orange-light)}
.deity-img-wrap{flex-shrink:0;width:200px;height:245px;border-radius:14px;overflow:hidden;border:3px solid var(--yellow-light);box-shadow:0 0 0 5px var(--red-light),0 8px 28px rgba(200,80,0,0.18)}
.deity-img-wrap img{width:100%;height:100%;object-fit:cover}
.deity-text{flex:1;max-width:480px;text-align:center}
.deity-text h2{font-family:'Tiro Devanagari Hindi',serif;font-size:26px;color:var(--orange-dark);margin-bottom:8px}
.deity-text p{font-size:13px;color:var(--tm);line-height:1.8;margin-bottom:12px}
.deity-quote{font-style:italic;color:var(--orange-dark);font-size:12px;font-weight:500}
.timings-wrap{margin-top:4px;display:flex;justify-content:center;flex-wrap:wrap}
.dt{background:var(--red-light);color:#fff;border-radius:8px;padding:5px 11px;font-size:11px;font-weight:600;display:inline-block;margin:3px}

/* ── GALLERY GRID ── */
/*
  The gallery auto-wraps — just add more .gallery-item blocks in the HTML.
  Desktop: 3 columns. Tablet: 2. Mobile: 1.
*/
.gallery-wrap{position:relative;display:flex;align-items:center;gap:8px}
.gallery-grid{display:flex;gap:12px;overflow-x:auto;scroll-behavior:smooth;scrollbar-width:none;-ms-overflow-style:none;padding:2px}
.gallery-grid::-webkit-scrollbar{display:none}
.gallery-item{flex:0 0 calc((100% - 4*12px)/5);border-radius:12px;overflow:hidden;position:relative;height:150px;border:2px solid var(--orange-light)}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform 0.4s;display:block}
.gallery-item:hover img{transform:scale(1.06)}
.gallery-cap{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(180,60,0,0.82));color:var(--yellow-light);padding:8px 10px;font-size:10px;font-weight:600}
.gallery-arrow{flex:0 0 auto;width:38px;height:38px;border-radius:50%;border:2px solid var(--orange-light);background:#fff;color:var(--orange-dark);font-size:20px;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(200,80,0,0.15);transition:background 0.2s}
.gallery-arrow:hover{background:var(--pale-red)}
.gallery-arrow:disabled{opacity:0.35;cursor:default}

/* ── STORIES ── */
.story-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.story-card{border:1px solid var(--border);border-radius:12px;overflow:hidden;background:#fff;transition:box-shadow 0.2s,transform 0.2s}
.story-card:hover{box-shadow:0 4px 18px rgba(228,100,80,0.18);transform:translateY(-2px)}
.story-img{height:90px;overflow:hidden}
.story-img img{width:100%;height:100%;object-fit:cover}
.story-img-icon{display:flex;align-items:center;justify-content:center;font-size:32px;background:linear-gradient(120deg,var(--red-light),var(--orange-light))}
.story-body{padding:10px 12px}
.story-title{font-size:12px;font-weight:600;color:var(--td);margin-bottom:3px}
.story-excerpt{font-size:11px;color:var(--tm)}
.story-read{display:inline-block;margin-top:7px;font-size:11px;color:var(--orange-dark);font-weight:700;cursor:pointer}

/* ── AARTI ── */
.aarti-list{display:flex;flex-direction:column;gap:10px}
.aarti-item{display:flex;align-items:center;gap:14px;background:#fff;border:1px solid var(--border);border-radius:10px;padding:11px 16px;cursor:pointer;transition:background 0.2s}
.aarti-item:hover{background:var(--pale-red);border-color:var(--red-light)}
.aarti-play{width:36px;height:36px;background:linear-gradient(135deg,var(--red-light),var(--orange-light));border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:13px;flex-shrink:0}
.aarti-info{flex:1}
.aarti-name{font-size:13px;font-weight:600;color:var(--td)}
.aarti-meta{font-size:11px;color:var(--tm)}
.aarti-dur{font-size:12px;color:var(--orange-dark);font-weight:600}

/* ── AARTI & BHAJAN + LIVE DARSHAN (merged) ── */
.abld-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px}
.abld-col{display:flex;flex-direction:column}
.small-title{font-size:18px;margin-bottom:12px}
.video-frame{position:relative;width:100%;padding-top:56.25%;border-radius:14px;overflow:hidden;border:3px solid var(--orange-light);box-shadow:0 8px 24px rgba(200,80,0,0.15);margin-bottom:14px;background:#000}
.video-frame iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}
.abld-desc{font-size:12px;color:var(--tm);line-height:1.7;margin:8px 0 12px}
.live-badge{display:flex;align-items:center;gap:6px;font-size:11px;font-weight:700;letter-spacing:1px;margin-bottom:4px;color:var(--orange-dark)}
.live-dot{width:10px;height:10px;background:#ff4444;border-radius:50%;animation:blink 1.2s infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.3}}
.dtimes{display:flex;gap:7px;flex-wrap:wrap;margin-top:6px}
.dtime{background:var(--yellow-light);color:var(--orange-dark);border-radius:7px;padding:4px 10px;font-size:11px;font-weight:700}

/* ── SHOP ── */
.shop-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.prod-card{border:1px solid var(--border);border-radius:12px;overflow:hidden;background:#fff;transition:box-shadow 0.2s,transform 0.15s}
.prod-card:hover{box-shadow:0 4px 18px rgba(228,100,80,0.18);transform:translateY(-2px)}
.prod-img{height:90px;overflow:hidden}
.prod-img img{width:100%;height:100%;object-fit:cover}
.prod-img-icon{display:flex;align-items:center;justify-content:center;font-size:36px;background:linear-gradient(120deg,var(--pale-red),var(--yellow-pale))}
.prod-body{padding:10px 12px}
.prod-name{font-size:12px;font-weight:600;color:var(--td);margin-bottom:2px}
.prod-price{font-size:13px;color:var(--orange-dark);font-weight:700;margin-bottom:7px}
.prod-btn{width:100%;background:linear-gradient(90deg,var(--red-light),var(--orange-light));color:#fff;border:none;border-radius:8px;padding:7px;font-size:11px;font-weight:700;cursor:pointer;transition:opacity 0.2s}
.prod-btn:hover{opacity:0.88}

/* ── EXPERIENCES ── */
.exp-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.exp-card{background:linear-gradient(135deg,var(--pale-red),var(--yellow-pale));border-radius:12px;padding:14px 16px;border-left:4px solid var(--red-light)}
.exp-text{font-size:12px;color:var(--tm);font-style:italic;margin-bottom:7px}
.exp-author{font-size:11px;font-weight:700;color:var(--orange-dark)}

/* ── REACH ── */
.reach-box{background:#fff;border:2px solid var(--orange-light);border-radius:12px;padding:18px 22px;display:grid;grid-template-columns:1fr 1fr;gap:14px}
.reach-item{display:flex;gap:10px;align-items:flex-start}
.reach-icon{width:34px;height:34px;background:linear-gradient(135deg,var(--red-light),var(--orange-light));border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0}
.reach-label{font-size:11px;color:var(--tm)}
.reach-val{font-size:12px;font-weight:600;color:var(--td)}

/* ── DONATE ── */
.donate-bar{background:linear-gradient(90deg,var(--orange-dark),var(--red-light),var(--orange-light));border-radius:12px;padding:20px 24px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;color:#fff;border:3px solid var(--yellow-light)}
.donate-bar h3{font-size:16px;font-weight:600;color:var(--yellow-light)}
.donate-bar p{font-size:12px;opacity:0.92;margin-top:2px}
.donate-btn{background:var(--yellow-light);color:var(--orange-dark);border:none;border-radius:24px;padding:10px 24px;font-weight:700;font-size:12px;cursor:pointer;white-space:nowrap}

/* ── FOOTER ── */
footer{background:linear-gradient(180deg,var(--orange-dark) 0%,#7A2800 100%);color:#FFD09A;text-align:center;padding:22px 28px 16px;border-top:4px solid var(--yellow-light)}
.f-logo{font-family:'Tiro Devanagari Hindi',serif;font-size:24px;color:var(--yellow-light);margin-bottom:10px}
.f-logo-img{height:46px;width:auto;display:block;margin:0 auto 14px;background:#fff;padding:8px 16px;border-radius:10px}
.f-links{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:10px}
.f-links a{color:#FFCF90;text-decoration:none;font-size:11px;transition:color 0.2s}
.f-links a:hover{color:var(--yellow-light)}
.f-copy{color:#C47A40;font-size:10px}

/* ════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════ */

/* Tablet */
@media(max-width:1024px){
  :root{--col-w:48px}
  .gallery-item{flex:0 0 calc((100% - 2*12px)/3)}
  .story-cards{grid-template-columns:repeat(2,1fr)}
  .shop-grid{grid-template-columns:repeat(2,1fr)}
  .banner-title{font-size:40px}
  .nav-links{gap:12px}
  .nav-links a{font-size:11px}
}

/* Mobile */
@media(max-width:768px){
  .nav-links{display:none;flex-direction:column;position:absolute;top:54px;left:0;right:0;background:var(--orange-dark);padding:14px 20px;gap:12px;z-index:99;border-bottom:3px solid var(--yellow-light)}
  .nav-links.open{display:flex}
  .ham{display:flex}
  .nav-cart{display:none}
  .col-wrap{grid-template-columns:1fr}
  .col-left,.col-right{display:none}
  .banner{height:320px}
  .banner-title{font-size:30px}
  .banner-sub{font-size:12px}
  .btn-p,.btn-o{padding:8px 16px;font-size:12px}
  .quick-links{grid-template-columns:repeat(2,1fr)}
  .deity-section{flex-direction:column;padding:20px 16px}
  .deity-img-wrap{width:100%;height:220px;max-width:340px}
  .deity-text{order:0}
  .section{padding:20px 16px}
  .gallery-item{flex:0 0 calc((100% - 12px)/2);height:130px}
  .gallery-arrow{width:32px;height:32px;font-size:16px}
  .story-cards{grid-template-columns:1fr}
  .shop-grid{grid-template-columns:repeat(2,1fr)}
  .exp-cards{grid-template-columns:1fr}
  .reach-box{grid-template-columns:1fr}
  .abld-grid{grid-template-columns:1fr;gap:24px}
}

/* Small phones */
@media(max-width:400px){
  .banner-title{font-size:24px}
  .shop-grid{grid-template-columns:1fr}
  .gallery-item{flex:0 0 calc(100% - 0px);height:160px}
  .nav-logo-img{height:30px;padding:3px 9px}
}
