/* THEME */
:root{--primary:#7b1e1e;--secondary:#d4a017;--light:#fafafa;--dark:#333}

body{margin:0;font-family:Arial,Helvetica,sans-serif;background:var(--light);color:var(--dark)}

/* HEADER */
header{
  background:linear-gradient(rgba(123,30,30,.85),rgba(123,30,30,.85)),
  url('images/new1.jpg') center/cover no-repeat;
  color:#fff;text-align:center;padding:32px 20px;
  position:relative;transition:.3s;
}

header.shrink{padding:18px 20px}
.deity-icon{width:60px;margin-bottom:6px}
header.shrink .deity-icon{width:45px}

header h1{margin:0;font-size:25px;text-transform:uppercase}
header h2{font-size:17px;margin:4px 0;color:#f3d88c}
header p{font-size:13px;color:#f5e6b3}

.festival-badge{
  margin-top:8px;background:#d4a017;color:#000;
  padding:6px 12px;border-radius:20px;
  display:inline-block;font-size:13px;font-weight:bold;
}

/* THEME TOGGLE */
.theme-toggle{
  position:absolute;top:12px;right:15px;
  border:none;border-radius:50%;
  width:36px;height:36px;cursor:pointer;
}

/* NAV */
nav{background:#5e1515;text-align:center;position:sticky;top:0;z-index:999}
nav a{color:#fff;text-decoration:none;padding:12px 16px;display:inline-block}

/* NEWS */
.news-bar{display:flex;align-items:center;background:#7b1e1e;color:#fff}
.news-label{background:#d4a017;color:#000;padding:8px 12px;font-weight:bold}
.news-marquee{overflow:hidden;flex:1;white-space:nowrap}
.news-text{display:inline-block;padding-left:100%;animation:scroll 25s linear infinite}

@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-100%)}
}

/* SLIDER */
.slider{position:relative;overflow:hidden}
.slide{display:none;width:100%;height:320px;object-fit:cover}
.slide.active{display:block}
.dots{text-align:center;position:absolute;bottom:10px;width:100%}
.dot{width:10px;height:10px;background:#fff;border-radius:50%;display:inline-block;margin:0 4px;opacity:.6}
.dot.active{background:var(--secondary)}

/* SECTIONS */
section{max-width:1000px;margin:auto;padding:40px 20px}
h2{color:var(--primary)}
.info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px}
.card{background:#fff;padding:20px;border-radius:6px}

/* GALLERY */
.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:15px}
.gallery img{width:100%;height:180px;object-fit:cover;cursor:pointer}

/* LIGHTBOX */
#lightbox{display:none;position:fixed;inset:0;background:rgba(0,0,0,.85);justify-content:center;align-items:center}
#lightbox img{max-width:90%;max-height:90%}

/* FOOTER */
footer{background:var(--primary);color:#fff;text-align:center;padding:15px}
iframe{border:0;border-radius:12px}

/* DARK MODE */
body.dark{background:#111;color:#eee}
body.dark header,body.dark nav,body.dark footer{background:#000}
body.dark .card{background:#1c1c1c;color:#eee}

/* MOBILE */
@media(max-width:600px){
  header h1{font-size:21px}
  header h2{font-size:15px}
  .slide{height:220px}
  nav a{display:block}
}
