:root {
  --saffron:       #FF8C00;
  --saffron-deep:  #E07000;
  --saffron-glow:  #FFAA33;
  --saffron-light: #FFD580;
  --cream:         #FFF8EE;
  --white:         #FFFFFF;
  --dark:          #1A0A00;
  --text-muted:    rgba(255,255,255,0.65);
}

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

html, body {
  height: 100%;
  font-family: 'Cormorant Garamond', serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── ANIMATED BACKGROUND ── */
.bg {
  position: fixed; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 20% 40%, #7B3000 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, #CC5500 0%, transparent 50%),
              radial-gradient(ellipse at 60% 80%, #8B2500 0%, transparent 50%),
              linear-gradient(160deg, #1A0800 0%, #2D1100 50%, #1A0500 100%);
}

/* Mandala pattern overlay */
.bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-conic-gradient(from 0deg at 50% 50%,
      transparent 0deg, transparent 10deg,
      rgba(255,140,0,0.03) 10deg, rgba(255,140,0,0.03) 12deg);
  background-size: 300px 300px;
  animation: rotateMandala 120s linear infinite;
}

.bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(0,0,0,0.5) 100%);
}

@keyframes rotateMandala {
  to { transform: rotate(360deg); }
}

/* ── PARTICLES ── */
.particles {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--saffron-glow);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--dur, 8s) ease-in var(--delay, 0s) infinite;
  left: var(--left, 50%);
  box-shadow: 0 0 6px 2px rgba(255,170,51,0.6);
}
@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-20px) scale(1.5); }
}

/* ── WRAPPER ── */
.wrapper {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

/* ── LOGO ── */
.logo-wrap {
  position: relative;
  margin-bottom: 28px;
  animation: fadeDown 1s ease both;
}

.logo-img {
  display: block;
  width: 220px;
  max-width: min(90vw, 220px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(255,140,0,0.6));
}

/* Subtle halo pulse behind logo */
.logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,0.18) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.15); opacity: 1; }
}

/* ── OM HEADER ── */
.om-symbol {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--saffron-glow);
  text-shadow: 0 0 30px rgba(255,170,51,0.9), 0 0 60px rgba(255,140,0,0.5);
  letter-spacing: 0.1em;
  animation: fadeDown 1.1s ease both;
  animation-delay: 0.1s;
  font-family: 'Tiro Devanagari Hindi', serif;
}

/* ── DIVIDER ── */
.divider {
  display: flex; align-items: center; gap: 14px;
  margin: 18px auto;
  width: clamp(260px, 55vw, 560px);
  animation: fadeIn 1.2s ease both;
  animation-delay: 0.2s;
}
.divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
}
.divider-icon {
  color: var(--saffron);
  font-size: 1.1rem;
  text-shadow: 0 0 10px rgba(255,140,0,0.8);
}

/* ── ORG NAME ── */
.org-name-hi {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: clamp(1.3rem, 4vw, 2.1rem);
  color: var(--saffron-light);
  letter-spacing: 0.06em;
  line-height: 1.5;
  animation: fadeDown 1.2s ease both;
  animation-delay: 0.25s;
  text-shadow: 0 2px 16px rgba(255,140,0,0.4);
}

.org-name-en {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.05rem, 3.5vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.3;
  animation: fadeDown 1.2s ease both;
  animation-delay: 0.3s;
  text-shadow: 0 0 30px rgba(255,140,0,0.35);
}

/* ── COMING SOON BANNER ── */
.coming-soon {
  margin: 32px auto 0;
  position: relative;
  animation: fadeIn 1.4s ease both;
  animation-delay: 0.45s;
}

.coming-soon-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.2rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  /* saffron gradient */
  background: linear-gradient(135deg,
    var(--saffron-light) 0%,
    var(--saffron) 35%,
    var(--saffron-deep) 60%,
    var(--saffron-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 24px rgba(255,140,0,0.5));
  animation: shimmer 4s linear infinite;
  background-size: 300% 100%;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Ornamental top/bottom rule around "Coming Soon" */
.cs-rule {
  display: flex; align-items: center; gap: 12px;
  margin: 10px auto;
  width: fit-content;
}
.cs-rule-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron));
}
.cs-rule-line.r { background: linear-gradient(90deg, var(--saffron), transparent); }
.cs-rule-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--saffron-glow);
  box-shadow: 0 0 8px rgba(255,170,51,0.8);
}

/* ── TAGLINE ── */
.tagline {
  margin-top: 20px;
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.08em;
  animation: fadeIn 1.5s ease both;
  animation-delay: 0.6s;
  max-width: 540px;
}

/* ── WHATSAPP CHANNEL CTA ── */
.whatsapp-cta {
  margin-top: 44px;
  max-width: 420px;
  width: 90vw;
  padding: 18px 24px;
  border: 1px solid rgba(255,140,0,0.4);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(255,140,0,0.08);
  animation: fadeUp 1.58s ease both;
  animation-delay: 0.85s;
}
.whatsapp-cta-label {
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 10px;
}
.whatsapp-cta-lead {
  margin-bottom: 16px;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-style: italic;
}
.whatsapp-cta-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--saffron-light) 0%, var(--saffron) 40%, var(--saffron-deep) 100%);
  border: 1px solid rgba(255,170,51,0.45);
  box-shadow:
    0 0 24px rgba(255,140,0,0.35),
    0 4px 16px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.whatsapp-cta-btn:hover {
  transform: translateY(-3px);
  opacity: 0.92;
  box-shadow:
    0 0 32px rgba(255,140,0,0.5),
    0 6px 22px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.whatsapp-cta-btn:active {
  transform: translateY(-1px);
  opacity: 0.88;
}
.whatsapp-cta-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.2);
}
.whatsapp-cta-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}
.whatsapp-cta-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.whatsapp-cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.8rem, 2vw, 0.92rem);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
}
.whatsapp-cta-arrow {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--saffron-light);
  transition: transform 0.2s ease;
}
.whatsapp-cta-btn:hover .whatsapp-cta-arrow {
  transform: translateX(4px);
}

/* ── COUNTDOWN ── */
.countdown-wrap {
  display: flex; gap: clamp(14px, 3vw, 36px);
  justify-content: center;
  margin-top: 42px;
  animation: fadeUp 1.5s ease both;
  animation-delay: 0.75s;
}
.cd-box {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
}
.cd-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(180deg,
    rgba(255,255,255,0.08) 0%, rgba(255,140,0,0.06) 100%);
  border: 1px solid rgba(255,140,0,0.3);
  border-radius: 10px;
  width: clamp(72px, 14vw, 110px);
  height: clamp(72px, 14vw, 110px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(255,140,0,0.12), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: color 0.4s ease;
  backdrop-filter: blur(6px);
  text-shadow: 0 0 16px rgba(255,170,51,0.4);
}
.cd-label {
  font-size: clamp(0.6rem, 1.5vw, 0.78rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--saffron);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

/* ── CONTACT ── */
.contact-section {
  margin-top: 36px;
  animation: fadeUp 1.6s ease both;
  animation-delay: 0.95s;
}
.contact-label {
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 14px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
  padding: 18px 24px;
  border: 1px solid rgba(255,140,0,0.4);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(255,140,0,0.08);
}
.contact-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}
.contact-link:hover {
  color: var(--saffron-glow);
  text-shadow: 0 0 16px rgba(255,170,51,0.35);
}

/* ── SOCIAL ── */
.social-row {
  display: flex; gap: 18px; justify-content: center;
  margin-top: 36px;
  animation: fadeUp 1.7s ease both;
  animation-delay: 1.05s;
}
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,140,0,0.35);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.2s;
  text-decoration: none;
  font-size: 1rem; color: var(--saffron);
}
.social-btn:hover {
  border-color: var(--saffron);
  background: rgba(255,140,0,0.12);
  transform: translateY(-3px);
}

/* ── BOTTOM STRIP ── */
.bottom-strip {
  margin-top: 52px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 2s ease both;
  animation-delay: 1.2s;
}

/* ── KEY ANIMATIONS ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

