
:root{
  --navy:#111827;
  --navy2:#1e293b;
  --gold:#d39b2a;
  --gold2:#f2c15b;
  --cream:#fffaf0;
  --paper:#ffffff;
  --muted:#64748b;
  --line:#e5e7eb;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--navy);
  background:#fff;
  line-height:1.6;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{width:min(var(--max),calc(100% - 40px));margin:auto}

.topbar{
  background:var(--navy);
  color:#fff;
  font-size:14px;
}
.topbar-inner{
  min-height:38px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.topbar a{text-decoration:none}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
}
.nav-wrap{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}
.brand img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
}
.brand-text strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:25px;
  letter-spacing:.5px;
}
.brand-text small{
  color:var(--muted);
}
.site-nav{
  display:flex;
  align-items:center;
  gap:24px;
}
.site-nav a{
  text-decoration:none;
  font-weight:700;
  font-size:15px;
}
.site-nav a:hover,.site-nav a.active{color:#9a6a0a}
.menu-toggle{
  display:none;
  border:0;
  background:none;
  font-size:30px;
}

.hero{
  position:relative;
  min-height:610px;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(12,18,30,.84),rgba(12,18,30,.50),rgba(12,18,30,.16)),
    url("assets/gurdwara-sahib.png") center/cover no-repeat;
}
.hero-content{
  max-width:760px;
  padding:92px 0;
}
.eyebrow{
  margin:0 0 10px;
  color:var(--gold2);
  font-size:13px;
  font-weight:900;
  letter-spacing:1.7px;
  text-transform:uppercase;
}
.hero h1{
  margin:0 0 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(48px,7vw,82px);
  line-height:1.05;
}
.hero .lead{
  font-size:22px;
  max-width:700px;
  color:#f8fafc;
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}
.btn{
  display:inline-block;
  text-decoration:none;
  font-weight:800;
  padding:13px 21px;
  border-radius:8px;
  border:1px solid transparent;
}
.btn.gold{
  background:var(--gold);
  color:#111827;
}
.btn.light{
  background:rgba(255,255,255,.11);
  color:#fff;
  border-color:rgba(255,255,255,.65);
}
.btn.outline{
  border-color:#cbd5e1;
  background:#fff;
}
.hero-badge{
  display:inline-block;
  margin-top:25px;
  padding:7px 12px;
  border:1px solid rgba(255,255,255,.32);
  border-radius:999px;
  background:rgba(0,0,0,.25);
  font-size:13px;
}

.section{padding:82px 0}
.section.soft{background:#f8fafc}
.section.cream{background:var(--cream)}
.section-title{
  max-width:760px;
  margin-bottom:36px;
}
.section-title h2{
  margin:0 0 12px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(32px,4vw,48px);
}
.section-title p{color:var(--muted);font-size:18px}

.about-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:54px;
  align-items:center;
}
.about-logo{
  max-width:360px;
  margin:auto;
}
.about-copy p{font-size:18px;color:#334155}
.stats{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.stat{
  border:1px solid var(--line);
  border-radius:12px;
  padding:18px;
  background:#fff;
}
.stat strong{display:block;font-size:19px}
.stat span{font-size:13px;color:var(--muted)}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:27px;
  box-shadow:0 9px 25px rgba(15,23,42,.05);
}
.card h3{
  margin:0 0 10px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
}
.card p{color:var(--muted)}

.feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
}
.feature-photo{
  border-radius:18px;
  min-height:420px;
  background:url("assets/nishan-sahib.png") center/cover no-repeat;
}
.feature-panel{
  border-radius:18px;
  padding:38px;
  background:var(--navy);
  color:#fff;
}
.feature-panel h2{
  margin-top:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:40px;
}
.feature-panel p{color:#dbe4ef}

.event-preview{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  display:grid;
  grid-template-columns:170px 1fr auto;
  align-items:stretch;
}
.event-day{
  background:var(--navy);
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:24px;
}
.event-day strong{
  font-size:36px;
  font-family:Georgia,"Times New Roman",serif;
}
.event-day span{color:var(--gold2);font-weight:800}
.event-info{padding:26px}
.event-info h3{
  margin:0 0 8px;
  font-size:27px;
  font-family:Georgia,"Times New Roman",serif;
}
.event-info p{margin:5px 0;color:var(--muted)}
.event-action{
  display:flex;
  align-items:center;
  padding:24px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:30px;
}
.contact-card h3{
  margin-top:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
}
.contact-row{
  padding:12px 0;
  border-bottom:1px solid var(--line);
}
.contact-row:last-child{border-bottom:0}
.contact-row strong{display:block}
.contact-row span,.contact-row a{color:var(--muted);text-decoration:none}

.site-footer{
  background:#0b1220;
  color:#fff;
  padding:42px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}
.site-footer p{color:#cbd5e1;margin:5px 0}
.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-logo img{
  width:58px;height:58px;border-radius:50%;object-fit:cover
}

/* Events page */
.page-hero{
  background:linear-gradient(90deg,rgba(15,23,42,.88),rgba(15,23,42,.40)),
  url("assets/nishan-sahib.png") center/cover no-repeat;
  color:#fff;
  padding:100px 0;
}
.page-hero h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(46px,6vw,72px);
  margin:0 0 14px;
}
.events-list{display:grid;gap:22px}
.full-event{
  display:grid;
  grid-template-columns:180px 1fr;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 25px rgba(15,23,42,.05);
}
.full-event-time{
  background:var(--navy);
  color:#fff;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.full-event-time strong{
  font-family:Georgia,"Times New Roman",serif;
  font-size:26px;
}
.full-event-time span{color:var(--gold2);font-weight:800}
.full-event-body{padding:30px}
.full-event-body h2{
  margin:0 0 10px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:31px;
}
.full-event-body p{color:var(--muted)}
.event-meta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:18px;
  font-weight:700;
  color:#334155;
}

@media(max-width:900px){
  .site-nav{
    display:none;
    position:absolute;
    left:0;right:0;top:92px;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:22px;
    border-bottom:1px solid var(--line);
  }
  .site-nav.open{display:flex}
  .menu-toggle{display:block}
  .about-grid,.feature-grid,.contact-grid{grid-template-columns:1fr}
  .card-grid{grid-template-columns:1fr 1fr}
  .event-preview{grid-template-columns:130px 1fr}
  .event-action{grid-column:1/-1;padding-top:0}
  .full-event{grid-template-columns:150px 1fr}
}
@media(max-width:620px){
  .container{width:min(var(--max),calc(100% - 28px))}
  .topbar-inner{flex-direction:column;align-items:flex-start;padding:7px 0}
  .brand-text small{display:none}
  .brand img{width:58px;height:58px}
  .nav-wrap{min-height:78px}
  .site-nav{top:78px}
  .hero{min-height:560px}
  .section{padding:62px 0}
  .card-grid,.stats,.footer-grid{grid-template-columns:1fr}
  .event-preview,.full-event{grid-template-columns:1fr}
  .event-day,.full-event-time{align-items:flex-start}
}
