/* =========================================================
   SHUDDH ASTHA (शुद्ध आस्था) - SAANVI ENTERPRISES
   Single Screen Divine Light-Mode Theme (Non-scrollable)
   Enhanced with Sacred Temple Bells, Floating Petals & Divine Aura
   ========================================================= */

:root {
  --bg-primary: #fffdf9;
  --bg-gradient: radial-gradient(circle at 50% 35%, #ffffff 0%, #fff8ee 40%, #f8eedb 80%, #eed8b8 100%);
  --gold-primary: #c99316;
  --gold-rich: #9e6d03;
  --gold-light: #fef0cd;
  --maroon-royal: #751414;
  --maroon-dark: #4a0808;
  --text-primary: #2d241d;
  --text-muted: #5e5044;
  --border-gold: rgba(201, 147, 22, 0.35);
  --border-gold-strong: rgba(160, 112, 4, 0.5);
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-hindi: 'Rozha One', 'Yatra One', serif;
  --font-sans: 'Outfit', 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html, body {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden; /* Zero scroll */
  font-family: var(--font-sans);
  background: var(--bg-gradient);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  user-select: none;
}

/* Celestial & Sacred Mandala Background */
.celestial-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 50% 18%, rgba(255, 205, 85, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(240, 160, 50, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(180, 50, 20, 0.1) 0%, transparent 45%);
}

.sacred-mandala-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 850px;
  height: 850px;
  transform: translate(-50%, -50%);
  background-image: radial-gradient(circle, rgba(160, 112, 4, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.85;
  animation: slowRotate 180s linear infinite;
  transition: transform 0.2s ease-out;
}

.mandala-center-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1.5px dashed rgba(160, 112, 4, 0.18);
  animation: reverseRotate 120s linear infinite;
}

@keyframes slowRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes reverseRotate {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Background Petal & Sparkle Canvas */
#sparkle-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Swaying Temple Bells in Corners */
.temple-bell-corner {
  position: fixed;
  top: 0;
  z-index: 8;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: top center;
  opacity: 0.75;
}

.temple-bell-left {
  left: 35px;
  animation: bellSwayLeft 5s ease-in-out infinite alternate;
}

.temple-bell-right {
  right: 35px;
  animation: bellSwayRight 5.6s ease-in-out infinite alternate;
}

.bell-chain {
  width: 2px;
  height: 45px;
  background: repeating-linear-gradient(
    180deg,
    #d4af37,
    #d4af37 4px,
    #8a6a12 4px,
    #8a6a12 7px
  );
}

.bell-body {
  font-size: 1.6rem;
  margin-top: -6px;
  filter: drop-shadow(0 4px 8px rgba(160, 112, 4, 0.3));
}

@keyframes bellSwayLeft {
  0% { transform: rotate(-5deg); }
  100% { transform: rotate(5deg); }
}

@keyframes bellSwayRight {
  0% { transform: rotate(5deg); }
  100% { transform: rotate(-5deg); }
}

/* Page Container */
.page-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  max-width: 1150px;
  margin: 0 auto;
  padding: 16px 24px 12px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* TOP HEADER */
.top-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shloka-tag {
  font-family: var(--font-hindi);
  font-size: 0.95rem;
  color: var(--maroon-royal);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
  font-weight: 500;
}

.firm-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-gold-strong);
  padding: 5px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(160, 112, 4, 0.1);
}

.firm-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.firm-title {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: var(--maroon-dark);
}

.audio-btn {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-gold);
  color: var(--maroon-royal);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.audio-btn:hover {
  background: var(--maroon-royal);
  color: #fff;
  border-color: var(--maroon-royal);
  transform: translateY(-1px);
}

.audio-btn.active {
  background: var(--maroon-royal);
  color: #fff;
  box-shadow: 0 0 12px rgba(117, 20, 20, 0.4);
}

/* MAIN STAGE */
.main-stage {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  max-height: calc(100vh - 95px);
}

/* Brand Identity */
.brand-hero {
  margin-bottom: 2px;
}

.hindi-title {
  font-family: var(--font-hindi);
  font-size: 3.7rem;
  line-height: 1.05;
  background: linear-gradient(135deg, #751414 0%, #b32d2d 38%, #c99316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 10px rgba(160, 112, 4, 0.25));
  letter-spacing: 1px;
}

.english-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 10px;
  color: var(--maroon-dark);
  text-transform: uppercase;
  margin-top: 1px;
}

.tagline-sub {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold-rich);
  font-weight: 600;
  margin-top: 2px;
}

/* REALISTIC LARGE DHOOPBATTI STAGE */
.dhoop-centerpiece {
  position: relative;
  width: 360px;
  height: 290px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 2px 0 6px 0;
}

/* Divine Backlight Aura */
.divine-backlight-aura {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 205, 85, 0.4) 0%, rgba(245, 170, 45, 0.15) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

#smoke-canvas {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 290px;
  z-index: 10;
  cursor: crosshair;
}

.smoke-hint-text {
  position: absolute;
  top: -2px;
  font-size: 0.72rem;
  color: var(--maroon-royal);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-gold);
  padding: 2px 14px;
  border-radius: 15px;
  pointer-events: none;
  opacity: 0.9;
  letter-spacing: 0.5px;
  z-index: 12;
  box-shadow: 0 2px 8px rgba(160, 112, 4, 0.1);
}

/* Natural Unconfined Dhoopbatti Asset */
.natural-dhoop-stage {
  position: relative;
  width: 255px;
  height: 255px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-out;
}

.dhoop-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Seamless soft radial vignette mask */
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse at 50% 55%, black 50%, transparent 74%);
  mask-image: radial-gradient(ellipse at 50% 55%, black 50%, transparent 74%);
  filter: contrast(1.08) saturate(1.1);
  transform: translateY(12px);
}

.photo-ember-glow {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 15%, #ff4500 55%, transparent 80%);
  box-shadow: 
    0 0 14px 4px rgba(255, 69, 0, 0.9),
    0 0 30px 9px rgba(255, 140, 0, 0.8),
    0 0 50px 14px rgba(201, 147, 22, 0.4);
  pointer-events: none;
  animation: emberBreathe 2s ease-in-out infinite alternate;
}

@keyframes emberBreathe {
  0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.75; }
  100% { transform: translate(-50%, -50%) scale(1.28); opacity: 1; }
}

/* COMING SOON CLEAN SECTION */
.coming-soon-wrapper {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(117, 20, 20, 0.08);
  border: 1px solid rgba(117, 20, 20, 0.22);
  color: var(--maroon-royal);
  padding: 4px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pulse-indicator {
  width: 7px;
  height: 7px;
  background-color: var(--maroon-royal);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--maroon-royal);
  animation: pulseIndicator 1.5s infinite;
}

@keyframes pulseIndicator {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}

.coming-soon-heading {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--maroon-dark);
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.coming-soon-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.coming-soon-subtext strong {
  color: var(--maroon-royal);
  font-weight: 600;
}

.divine-motif {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold-rich);
  font-size: 0.95rem;
  opacity: 0.85;
}

.divine-motif-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 112, 4, 0.45), transparent);
}

/* BOTTOM FOOTER */
.bottom-footer {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(160, 112, 4, 0.15);
  padding-top: 8px;
}

.footer-quote {
  font-family: var(--font-hindi);
  color: var(--maroon-royal);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.footer-firm {
  font-weight: 600;
  color: var(--maroon-dark);
}

/* RESPONSIVE SCALING */
@media (max-height: 820px) {
  .hindi-title { font-size: 3.1rem; }
  .english-title { font-size: 1.3rem; letter-spacing: 8px; }
  .dhoop-centerpiece { height: 250px; }
  #smoke-canvas { height: 250px; }
  .natural-dhoop-stage { width: 215px; height: 215px; }
  .coming-soon-heading { font-size: 1.65rem; }
  .coming-soon-subtext { font-size: 0.96rem; }
  .temple-bell-corner { display: none; }
}

@media (max-height: 680px) {
  .top-header { display: none; }
  .hindi-title { font-size: 2.5rem; }
  .dhoop-centerpiece { height: 200px; }
  #smoke-canvas { height: 200px; }
  .natural-dhoop-stage { width: 175px; height: 175px; }
  .coming-soon-heading { font-size: 1.4rem; }
  .coming-soon-subtext { font-size: 0.88rem; }
}

@media (max-width: 768px) {
  .temple-bell-corner { display: none; }
}

@media (max-width: 600px) {
  .top-header { flex-direction: column; gap: 8px; }
  .shloka-tag { font-size: 0.8rem; }
  .hindi-title { font-size: 2.7rem; }
  .english-title { font-size: 1.2rem; letter-spacing: 5px; }
  .coming-soon-heading { font-size: 1.45rem; }
  .coming-soon-subtext { font-size: 0.92rem; }
}
