/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', 'Segoe UI', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
address { font-style: normal; }

:root {
  --orange: #E05A00;
  --orange-light: #F07820;
  --dark: #1a1a1a;
  --mid: #3d3d3d;
  --muted: #666;
  --line: #e8e0d8;
  --bg: #fff;
  --bg2: #faf7f4;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ===== TOP BAR ===== */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 9px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-social { color: var(--muted); display: flex; align-items: center; transition: color 0.2s; }
.topbar-social:hover { color: var(--orange); }
.topbar-btn {
  padding: 7px 18px; font-size: 0.75rem; font-weight: 700;
  border-radius: 3px; letter-spacing: 0.8px; text-transform: uppercase;
  transition: opacity 0.2s;
}
.topbar-btn:hover { opacity: 0.85; }
.btn-serve { background: #1a1a1a; color: #fff; }
.btn-new { background: var(--orange); color: #fff; }

/* ===== NAVBAR ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-lotus { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.logo-lotus img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-iskcon { font-family: 'Open Sans', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; color: var(--orange); text-transform: uppercase; }
.logo-location { font-size: 1.4rem; font-weight: 300; color: var(--dark); letter-spacing: -0.5px; }
.logo-location span { font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; font-size: 0.85rem; font-weight: 600;
  color: var(--dark); letter-spacing: 0.2px;
  transition: color 0.2s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--orange); }
.nav-links > li > a svg { transition: transform 0.2s; }
.nav-links > li:hover > a svg { transform: rotate(180deg); }
.has-dropdown .dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--line);
  border-top: 2px solid var(--orange);
  min-width: 200px; z-index: 200;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 10px 18px; font-size: 0.82rem; color: var(--mid); border-bottom: 1px solid var(--line); transition: background 0.15s, color 0.15s; }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: #faf7f4; color: var(--orange); }
.nav-donate {
  background: var(--orange); color: #fff !important;
  padding: 8px 20px !important; border-radius: 3px;
  font-size: 0.82rem !important; letter-spacing: 0.5px;
  margin-left: 8px;
}
.nav-donate:hover { background: var(--orange-light) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner { background: var(--orange); color: #fff; padding: 64px 0 54px; text-align: center; }
.page-banner h1 { font-family: 'Oswald', sans-serif; font-size: 2.4rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 12px; }
.page-banner .breadcrumb { font-size: 0.82rem; opacity: 0.9; }
.page-banner .breadcrumb a { text-decoration: underline; }
.page-banner .breadcrumb span { opacity: 0.7; margin: 0 6px; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  background: #fff;
  display: flex; align-items: center;
}
.mandala {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 340px; height: 440px; pointer-events: none;
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.9;
}
.mandala-left { left: 0; background-image: url('../images/mandala-left.png'); background-position: left center; }
.mandala-right { right: 0; background-image: url('../images/mandala-right.png'); background-position: right center; }
.hero-inner {
  display: grid; grid-template-columns: 1.9fr 1fr;
  align-items: center; gap: 40px;
  padding-top: 70px; padding-bottom: 70px;
  box-sizing: border-box;
  position: relative; z-index: 2;
}
.hero-image { display: flex; justify-content: center; align-items: center; }
.deity-photo { width: 100%; max-width: 1000px; height: auto; }
.hero-text { padding-left: 20px; }
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  font-weight: 700; line-height: 1.05;
  color: var(--dark); letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: 0.9rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: 1.05rem; color: var(--muted);
  max-width: 420px; margin-bottom: 28px;
  font-weight: 300; line-height: 1.7;
}
.hero-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 1.5px;
  color: var(--dark); text-transform: uppercase;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.hero-link:hover { color: var(--orange); border-color: var(--orange); }

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--orange); color: #fff;
  padding: 10px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0; align-items: center;
  animation: marquee 35s linear infinite; white-space: nowrap;
}
.marquee-bar:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.mq-item { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.3px; padding: 0 20px; }
.mq-sep { opacity: 0.6; padding: 0 4px; }

/* ===== DECORATIVE MANDALAS (white sections) ===== */
.deco-section { position: relative; overflow: hidden; }
.deco-mandala {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 280px; height: 360px; background-size: contain; background-repeat: no-repeat;
  opacity: 0.14; pointer-events: none; z-index: 0;
}
.deco-left { left: -50px; background-image: url('../images/mandala-left.png'); background-position: left center; }
.deco-right { right: -50px; background-image: url('../images/mandala-right.png'); background-position: right center; }
.deco-section > .container, .deco-section > .two-col, .deco-section > .gatherings-head { position: relative; z-index: 1; }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.section-tag.center { display: block; text-align: center; }
.section-title {
  font-family: 'Oswald', sans-serif; font-size: 2.4rem; font-weight: 600;
  color: var(--dark); line-height: 1.2; margin-bottom: 16px;
}
.section-title em { font-style: italic; font-family: 'Playfair Display', serif; font-size: 0.9em; color: var(--orange); }
.section-title.center { text-align: center; }
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 48px; font-size: 0.95rem; }
.text-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--dark);
  border-bottom: 1.5px solid var(--dark); padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--orange); border-color: var(--orange); }

/* ===== REUSABLE PHOTO PLACEHOLDER =====
   Every photo slot uses <img class="photo-ph" src="images/placeholder.svg">.
   To use a real photo, just change the src to your image file. */
.photo-ph { width: 100%; height: 100%; display: block; object-fit: cover; }
/* Placeholders inside slots that carry overlays (date badge, mark) fill absolutely */
.ev-img-ph .photo-ph, .gather-img .photo-ph { position: absolute; inset: 0; }

/* ===== ABOUT ===== */
.about { background: #fff; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.col-text .section-title { margin-top: 8px; }
.col-text p { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.75; }
.img-placeholder {
  background: var(--bg2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.img-ph-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.img-ph-inner p { font-size: 0.8rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.features-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0; }
.feat { display: flex; gap: 12px; align-items: flex-start; }
.feat-icon { color: var(--orange); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.feat strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.feat p { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* ===== INFO BLOCK (What is ISKCON / GBC) ===== */
.info-block { background: #fff; position: relative; overflow: hidden; }
.info-block .container { position: relative; z-index: 1; }
.info-eyebrow { display: flex; align-items: center; gap: 8px; color: var(--orange); font-weight: 700; font-size: 0.95rem; margin: 16px 0 20px; }
.info-eyebrow span { font-size: 1.2rem; }
.info-photo { border-radius: 14px; overflow: hidden; box-shadow: 10px 10px 0 rgba(224,90,0,0.85); }
.mandala-decor {
  position: absolute; width: 440px; height: 540px;
  background-image: url('../images/mandala-right.png');
  background-size: contain; background-repeat: no-repeat; background-position: right bottom;
  opacity: 0.95; z-index: 0; pointer-events: none;
}
.mandala-decor.br { right: -70px; bottom: -130px; }

/* ===== SRILA PRABHUPADA ===== */
.prabhupada-section { background: var(--orange); overflow: hidden; }
.prabhupada-inner { display: grid; grid-template-columns: 0.9fr 1.4fr; align-items: stretch; }
.prabhupada-photo { min-height: 480px; }
.prabhupada-text { background: #fff; padding: 64px 64px 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.prabhupada-text .section-title { font-size: 2.4rem; margin: 10px 0 18px; }
.prabhupada-quote { font-family: 'Playfair Display', serif; font-style: italic; color: var(--orange); font-size: 1.05rem; margin-bottom: 20px !important; }
.prabhupada-text p { color: var(--mid); font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }
.btn-outline-orange {
  display: inline-block; margin-top: 10px; border: 1.5px solid var(--orange); color: var(--orange);
  padding: 12px 28px; font-size: 0.82rem; font-weight: 700; letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

/* ===== RATHA YATRA FESTIVAL ===== */
.ratha-section { background: var(--bg2); }
.ratha-badge {
  display: block; width: fit-content; margin: 0 auto 16px;
  background: var(--orange); color: #fff;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 30px;
}
.ratha-details {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin: 0 auto 44px; max-width: 900px;
}
.ratha-detail {
  flex: 1 1 240px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 22px; text-align: center;
}
.ratha-detail strong { display: block; color: var(--orange); font-size: 0.95rem; margin-bottom: 6px; }
.ratha-detail span { font-size: 0.9rem; color: var(--mid); }
.poster-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.poster-item {
  display: block; position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
}
.poster-item:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,0.18); }
.poster-item img { width: 100%; height: auto; display: block; }
.poster-caption {
  display: block; text-align: center; padding: 12px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px;
  color: var(--dark); background: #fff; border-top: 1px solid var(--line);
}

/* ===== WEEKLY GATHERINGS ===== */
.gatherings-section { background: var(--dark); padding-bottom: 90px; }
.gatherings-head { background: var(--orange); padding: 56px 0 90px; text-align: center; }
.gatherings-head .section-tag.center { color: rgba(255,255,255,0.85); }
.gather-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: -70px; }
.host-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.host-grid .gather-card { box-shadow: 0 8px 24px rgba(0,0,0,0.08); border: 1px solid var(--line); }
.gather-card { background: #fff; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.gather-img { height: 220px; position: relative; }
.gather-mark { position: absolute; bottom: 14px; right: 14px; background: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.1rem; }
.gather-body { padding: 26px 24px 30px; text-align: center; }
.gather-body h3 { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 14px; letter-spacing: 0.5px; }
.gather-body p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.join-link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; color: var(--orange); }
.join-link span { transition: transform 0.2s; }
.join-link:hover span { transform: translateX(3px); }

/* ===== GET INVOLVED BANNER ===== */
.involved-banner { position: relative; }
.involved-icons {
  background: var(--orange); display: flex; justify-content: center;
  gap: 60px; padding: 28px 32px; flex-wrap: wrap;
}
.inv-icon-item {
  display: flex; align-items: center; gap: 14px; color: #fff;
  padding: 10px 18px; border-radius: 6px; border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.inv-icon-item:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }
.inv-icon-item strong { display: block; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 2px; }
.inv-icon-item span { display: block; font-size: 0.82rem; opacity: 0.9; }
.involved-photo { position: relative; min-height: 460px; background: linear-gradient(135deg, #3a1010, #1a0a05); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.involved-overlay { position: relative; z-index: 2; text-align: center; padding: 20px; }
.lotus-mark { color: #fff; font-size: 1.8rem; margin-bottom: 14px; opacity: 0.7; }
.involved-overlay .section-title { font-size: 2.6rem; margin-bottom: 26px; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid #fff; color: #fff;
  padding: 12px 28px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-white:hover { background: #fff; color: var(--dark); }

/* ===== SCHEDULE ===== */
.schedule-section { background: var(--dark); color: #fff; }
.schedule-section .section-tag.center { color: #aaa; }
.schedule-section .section-title.center { color: #fff; margin-bottom: 8px; }
.schedule-section .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 48px; }
.schedule-subhead {
  font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600;
  color: var(--gold-light, #F07820); text-transform: uppercase; letter-spacing: 1.5px;
  margin: 0 0 20px; text-align: center;
}
.schedule-grid + .schedule-subhead { margin-top: 56px; }
.schedule-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); }
.sch-card {
  display: flex; flex-direction: column; padding: 24px 20px;
  background: var(--dark); border: none;
  transition: background 0.2s;
}
.sch-card:hover, .sch-card.highlight { background: var(--orange); }
.sch-time { font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.sch-name { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sch-desc { font-size: 0.76rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.meet-link-box {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 8px; text-align: center; margin: 24px 0 8px;
  padding: 16px 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.88rem; color: rgba(255,255,255,0.85);
}
.meet-link-box a { color: var(--orange-light); font-weight: 700; text-decoration: underline; }
.meet-link-box .meet-note { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ===== DEITIES ===== */
.deities-section { background: var(--bg2); }
.deities-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 20px; align-items: end; margin-top: 48px; }
.deity-card { background: #fff; border: 1px solid var(--line); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.deity-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.deity-img-ph {
  height: 280px; background: var(--bg2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; color: var(--muted); font-size: 0.8rem;
  letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.deity-card.deity-main .deity-img-ph { height: 380px; }
.deity-info { padding: 18px 20px; }
.deity-info h3 { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.deity-info p { font-size: 0.78rem; color: var(--muted); }
.main-info { border-top: 3px solid var(--orange); }

/* ===== EVENTS ===== */
.events-section { background: #fff; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ev-card { border: 1px solid var(--line); overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.ev-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
.ev-img-ph {
  height: 130px; background: #f5ece0;
  position: relative; display: flex; align-items: flex-end;
}
.ev-2 { background: #f0f5e0; }
.ev-3 { background: #e0f0f5; }
.ev-4 { background: #f0e0f5; }
.ev-5 { background: #f5e0e0; }
.ev-6 { background: #e0f5ec; }
.ev-date { position: absolute; top: 14px; left: 14px; background: var(--dark); color: #fff; padding: 8px 12px; text-align: center; min-width: 52px; }
.ev-day { display: block; font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; line-height: 1; }
.ev-mon { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-top: 2px; }
.ev-body { padding: 20px; }
.ev-tag { font-size: 0.68rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.ev-body h3 { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.ev-body p { font-size: 0.82rem; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.ev-meta { font-size: 0.75rem; color: #999; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--bg2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 10px;
}
.gal-item { position: relative; overflow: hidden; cursor: pointer; background: #eee; }
.gal-item.tall { grid-column: span 2; grid-row: span 2; }
.gal-ph, .gal-photo { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; transition: transform 0.4s; }
.gal-photo { object-fit: cover; }
.gal-item:hover .gal-ph, .gal-item:hover .gal-photo { transform: scale(1.04); }
.gal-overlay { position: absolute; inset: 0; background: rgba(224,90,0,0.72); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gal-overlay span { color: #fff; font-size: 0.82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.gal-item:hover .gal-overlay { opacity: 1; }

/* ===== DONATE ===== */
.donate-section { background: #fff; }
.donate-section .two-col { gap: 60px; }
.donate-section .col-text .section-title { margin-bottom: 16px; }
.donate-section .col-text p { color: var(--muted); margin-bottom: 14px; font-size: 0.95rem; }
.donate-amounts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0 20px; }
.amt-btn {
  border: 1.5px solid var(--line); background: #fff; padding: 14px 12px;
  cursor: pointer; text-align: center; transition: border-color 0.2s, background 0.2s;
  font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--dark);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.amt-btn span { font-family: 'Open Sans', sans-serif; font-size: 0.7rem; font-weight: 400; color: var(--muted); }
.amt-btn.active, .amt-btn:hover { border-color: var(--orange); background: #fff8f3; color: var(--orange); }
.payment-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.payment-tags span { font-size: 0.72rem; border: 1px solid var(--line); padding: 5px 12px; color: var(--muted); }
.qr-panel {
  background: var(--bg2); border: 1px solid var(--line); padding: 40px 36px;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.qr-panel h3 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 600; color: var(--dark); margin-bottom: 24px; }
.qr-panel img { width: 260px; max-width: 100%; height: auto; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 12px; }
.qr-panel-note { font-size: 0.92rem; color: var(--mid); line-height: 1.7; max-width: 340px; margin: 22px 0 14px; }
.donate-form-box { background: var(--bg2); border: 1px solid var(--line); padding: 36px; }
.donate-form-box h3 { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 6px; text-transform: uppercase; }
.form-group input, .form-group select {
  width: 100%; padding: 10px 13px; border: 1px solid var(--line);
  font-size: 0.88rem; color: var(--dark); background: #fff; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--orange); }
.btn-primary-solid {
  background: var(--orange); color: #fff; border: none; cursor: pointer;
  padding: 13px 28px; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  transition: background 0.2s; display: inline-block; text-align: center;
}
.btn-primary-solid:hover { background: var(--orange-light); }
.form-note { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 22px; }
.ci-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; width: 24px; }
.ci-item strong { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 4px; }
.ci-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.social-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.soc-btn { padding: 8px 16px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; transition: opacity 0.2s; }
.soc-btn.fb { background: #1877f2; color: #fff; }
.soc-btn.yt { background: #ff0000; color: #fff; }
.soc-btn.ig { background: #c13584; color: #fff; }
.soc-btn.wa { background: #25d366; color: #fff; }
.soc-btn:hover { opacity: 0.85; }
.wa-community-btn {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 20px;
  background: #25d366; color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 12px 22px; border-radius: 8px; transition: opacity 0.2s;
}
.wa-community-btn:hover { opacity: 0.88; }
.map-box { }
.map-ph {
  height: 420px; background: #e8e0d5; border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--muted); font-size: 0.88rem; padding: 20px;
}

/* ===== FOOTER ===== */
footer { background: #111; color: rgba(255,255,255,0.65); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-iskcon { color: var(--orange); }
.footer-brand .logo-location { color: #fff; }
.footer-brand p { font-size: 0.82rem; margin-top: 16px; line-height: 1.75; }
.footer-col h4 { color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a, .footer-col address { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.8; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom-row p { font-size: 0.76rem; }
.maha-mantra { font-style: italic; color: rgba(255,255,255,0.4); }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 42px; height: 42px; background: var(--dark); color: #fff;
  border: none; cursor: pointer; font-size: 1.1rem;
  display: none; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.back-top.show { display: flex; }
.back-top:hover { background: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 3rem; }
  .deities-grid { grid-template-columns: 1fr 1fr; }
  .deities-grid .deity-card:last-child { grid-column: span 2; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .prabhupada-inner { grid-template-columns: 1fr; }
  .prabhupada-photo { min-height: 320px; }
  .prabhupada-text { padding: 48px 32px; }
  .gather-grid { grid-template-columns: 1fr; }
  .poster-grid { grid-template-columns: 1fr 1fr; }
  .involved-icons { gap: 30px; }
}
@media (max-width: 768px) {
  .topbar { flex-direction: column; text-align: center; font-size: 0.75rem; }
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 8px 0; z-index: 200; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 11px 24px; }
  .has-dropdown .dropdown { display: none !important; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-text { padding-left: 0; }
  .deity-photo { max-width: 300px; }
  .mandala { display: none; }
  .deco-mandala { display: none; }
  .mandala-decor { display: none; }
  .info-photo { box-shadow: 6px 6px 0 rgba(224,90,0,0.85); }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .events-grid { grid-template-columns: 1fr; }
  .deities-grid { grid-template-columns: 1fr; }
  .deities-grid .deity-card:last-child { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item.tall { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .donate-amounts { grid-template-columns: 1fr 1fr; }
  .host-grid { grid-template-columns: 1fr; }
  .poster-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .involved-icons { flex-direction: column; align-items: center; gap: 18px; }
}
@media (max-width: 480px) {
  .schedule-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-item.tall { grid-column: span 1; }
  .hero-title { font-size: 2.4rem; }
}
