/* ══════════════════════════════════════════════
   RadheShyam Official – Coming Soon  |  style.css
   ══════════════════════════════════════════════ */

/* ── CSS VARIABLES ─────────────────────────── */
:root {
  --xrq-ink:        #0b0705;
  --xrq-parchment:  #1a130e;
  --xrq-gold:       #e8a820;
  --xrq-gold-lt:    #f5d485;
  --xrq-gold-dk:    #c47d0e;
  --xrq-rust:       #8b3a2a;
  --xrq-cream:      #f0e6d0;
  --xrq-cream-dim:  #b8a882;
  --xrq-muted:      #6b5c45;
  --xrq-white:      #faf6ef;
  --xrq-glow:       rgba(232,168,32,0.18);

  --xrq-ff-title:   'Cinzel Decorative', serif;
  --xrq-ff-body:    'Crimson Pro', serif;
  --xrq-ff-display: 'Playfair Display', serif;
  --xrq-ff-accent:  'IM Fell English', serif;
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--xrq-ink);
  color: var(--xrq-cream);
  font-family: var(--xrq-ff-body);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
  position: relative;
}

/* ── CANVAS BG ──────────────────────────────── */
.xrq-canvas-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}

/* ── PARTICLE FIELD ─────────────────────────── */
.xrq-particle-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.xrq-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--xrq-gold);
  opacity: 0;
  animation: xrqParticleFloat linear infinite;
}

@keyframes xrqParticleFloat {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-110vh) rotate(720deg); opacity: 0; }
}

/* ── TICKER TAPES ───────────────────────────── */
.xrq-ticker-wrap {
  position: fixed;
  left: 0; right: 0;
  z-index: 100;
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
}

.xrq-ticker-top    { top: 0;    background: linear-gradient(90deg, #1a0a00, #2a1500, #1a0a00); border-bottom: 1px solid var(--xrq-gold-dk); }
.xrq-ticker-bottom { bottom: 0; background: linear-gradient(90deg, #1a0a00, #2a1500, #1a0a00); border-top:    1px solid var(--xrq-gold-dk); }

.xrq-ticker-inner {
  display: inline-flex;
  gap: 0;
  will-change: transform;
}

.xrq-ticker-inner span {
  display: inline-block;
  font-family: var(--xrq-ff-body);
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.12em;
  color: var(--xrq-gold-lt);
  padding: 0 2px;
  text-transform: uppercase;
}

.xrq-ticker-fwd { animation: xrqTickFwd 35s linear infinite; }
.xrq-ticker-rev { animation: xrqTickRev 40s linear infinite; }

@keyframes xrqTickFwd { from { transform: translateX(0); }   to { transform: translateX(-50%); } }
@keyframes xrqTickRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ── MAIN WRAPPER ───────────────────────────── */
.xrq-main-wrap {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px 80px;
  gap: 0;
}

/* ── LOGO ───────────────────────────────────── */
.xrq-logo-shell {
  margin-top: 10px;
  animation: xrqLogoReveal 1.8s cubic-bezier(0.22,1,0.36,1) both;
  filter: drop-shadow(0 0 20px rgba(232,168,32,0.4));
  position: relative;
}

.xrq-logo-svg {
  width: clamp(280px, 70vw, 500px);
  height: auto;
  display: block;
}

.xrq-logo-text-svg {
  animation: xrqLogoShimmer 4s ease-in-out infinite alternate;
}

@keyframes xrqLogoShimmer {
  0%   { filter: drop-shadow(0 0 6px #e8a820); }
  100% { filter: drop-shadow(0 0 18px #f5d485) drop-shadow(0 0 40px #e8a820); }
}

@keyframes xrqLogoReveal {
  0%   { opacity: 0; transform: scale(0.7) translateY(-30px); }
  60%  { opacity: 1; transform: scale(1.04) translateY(4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── HERO BLOCK ─────────────────────────────── */
.xrq-hero-block {
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.xrq-chapter-label {
  font-family: var(--xrq-ff-accent);
  font-style: italic;
  font-size: clamp(13px, 1.8vw, 16px);
  color: var(--xrq-gold);
  letter-spacing: 0.2em;
  opacity: 0;
  animation: xrqFadeUp 1s 0.4s forwards;
}

.xrq-hero-title {
  font-family: var(--xrq-ff-display);
  font-weight: 900;
  font-size: clamp(44px, 9vw, 110px);
  line-height: 1.05;
  color: var(--xrq-white);
  letter-spacing: -0.01em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.18em;
}

.xrq-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) skewY(4deg);
  animation: xrqWordDrop 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.xrq-w1 { animation-delay: 0.6s;  color: var(--xrq-white); }
.xrq-w2 { animation-delay: 0.85s; color: var(--xrq-gold-lt); font-style: italic; }
.xrq-w3 { animation-delay: 1.0s;  color: var(--xrq-cream-dim); font-size: 0.65em; align-self: flex-end; margin-bottom: 0.18em; }
.xrq-w4 { animation-delay: 1.15s; color: var(--xrq-gold); }

@keyframes xrqWordDrop {
  to { opacity: 1; transform: translateY(0) skewY(0); }
}

.xrq-hero-sub {
  font-family: var(--xrq-ff-body);
  font-size: clamp(15px, 2.2vw, 20px);
  font-style: italic;
  color: var(--xrq-cream-dim);
  line-height: 1.7;
  max-width: 600px;
  opacity: 0;
  animation: xrqFadeUp 1.1s 1.4s forwards;
}

@keyframes xrqFadeUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}

/* ── COMING SOON STAMP ──────────────────────── */
.xrq-stamp-shell {
  position: relative;
  width: clamp(140px, 22vw, 200px);
  height: clamp(140px, 22vw, 200px);
  margin: 36px auto 10px;
  opacity: 0;
  animation: xrqStampDrop 1.2s cubic-bezier(0.34,1.56,0.64,1) 1.8s forwards;
}

@keyframes xrqStampDrop {
  0%   { opacity: 0; transform: scale(2.5) rotate(-25deg); }
  70%  { opacity: 1; transform: scale(0.95) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(-4deg); }
}

.xrq-stamp-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px dashed var(--xrq-gold);
  animation: xrqStampRingSpin 20s linear infinite;
  box-shadow: 0 0 20px var(--xrq-glow), inset 0 0 20px var(--xrq-glow);
}

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

.xrq-stamp-inner {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px solid var(--xrq-gold-dk);
  background: rgba(10,5,2,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  backdrop-filter: blur(6px);
}

.xrq-stamp-line1,
.xrq-stamp-line2 {
  font-family: var(--xrq-ff-title);
  font-size: clamp(14px, 3vw, 22px);
  font-weight: 900;
  color: var(--xrq-gold-lt);
  letter-spacing: 0.25em;
  text-shadow: 0 0 8px var(--xrq-gold);
}

.xrq-stamp-divider {
  font-size: 9px;
  color: var(--xrq-gold);
  letter-spacing: 4px;
}

/* ── GENRE TAGS ─────────────────────────────── */
.xrq-genre-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 32px;
  max-width: 600px;
}

.xrq-gtag {
  font-family: var(--xrq-ff-body);
  font-size: clamp(12px, 1.6vw, 15px);
  letter-spacing: 0.12em;
  padding: 7px 18px;
  border: 1px solid rgba(232,168,32,0.4);
  border-radius: 2px;
  background: rgba(232,168,32,0.06);
  color: var(--xrq-gold-lt);
  opacity: 0;
  transform: translateY(12px);
  animation: xrqTagPop 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}

.xrq-gtag:hover {
  background: rgba(232,168,32,0.15);
  border-color: var(--xrq-gold);
  box-shadow: 0 0 14px var(--xrq-glow);
}

.xrq-gt1 { animation-delay: 2.0s; }
.xrq-gt2 { animation-delay: 2.15s; }
.xrq-gt3 { animation-delay: 2.3s; }
.xrq-gt4 { animation-delay: 2.45s; }
.xrq-gt5 { animation-delay: 2.6s; }
.xrq-gt6 { animation-delay: 2.75s; }

@keyframes xrqTagPop {
  to { opacity: 1; transform: translateY(0); }
}

/* ── SLOGAN ─────────────────────────────────── */
.xrq-slogan-wrap {
  margin-top: 30px;
  text-align: center;
  opacity: 0;
  animation: xrqFadeUp 1.2s 3.0s forwards;
}

.xrq-slogan {
  font-family: var(--xrq-ff-accent);
  font-size: clamp(16px, 2.4vw, 22px);
  color: var(--xrq-cream);
  font-style: italic;
  max-width: 700px;
  line-height: 1.8;
  position: relative;
  padding: 0 40px;
}

.xrq-slogan::before,
.xrq-slogan::after {
  content: '"';
  font-size: 3em;
  color: var(--xrq-gold-dk);
  position: absolute;
  line-height: 1;
  opacity: 0.5;
}
.xrq-slogan::before { top: -14px; left: 0; }
.xrq-slogan::after  { content: '"'; bottom: -20px; right: 0; }

/* ── CTA SECTION ────────────────────────────── */
.xrq-cta-section {
  width: 100%;
  max-width: 600px;
  margin-top: 48px;
  opacity: 0;
  animation: xrqFadeUp 1.2s 3.3s forwards;
}

.xrq-cta-card {
  position: relative;
  background: rgba(18,10,5,0.88);
  border: 1px solid rgba(232,168,32,0.3);
  border-radius: 4px;
  padding: clamp(24px, 5vw, 44px) clamp(20px, 5vw, 40px);
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,168,32,0.08) inset;
  overflow: hidden;
}

.xrq-cta-ink-drop {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,125,14,0.07) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: xrqPulseDrop 5s ease-in-out infinite alternate;
}

@keyframes xrqPulseDrop {
  from { transform: scale(1); opacity: 0.5; }
  to   { transform: scale(1.4); opacity: 1; }
}

.xrq-cta-head {
  font-family: var(--xrq-ff-display);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--xrq-gold-lt);
  margin-bottom: 12px;
  font-style: italic;
}

.xrq-cta-copy {
  font-family: var(--xrq-ff-body);
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--xrq-cream-dim);
  line-height: 1.75;
  margin-bottom: 26px;
}

/* Form */
.xrq-input-wrap {
  display: flex;
  gap: 0;
  border: 1px solid rgba(232,168,32,0.5);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.xrq-input-wrap:focus-within {
  box-shadow: 0 0 0 2px var(--xrq-gold-dk), 0 0 20px var(--xrq-glow);
}

.xrq-email-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: none;
  outline: none;
  color: var(--xrq-cream);
  font-family: var(--xrq-ff-body);
  font-size: 16px;
  letter-spacing: 0.05em;
}

.xrq-email-input::placeholder { color: var(--xrq-muted); }

.xrq-btn-notify {
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--xrq-gold-dk), var(--xrq-gold));
  border: none;
  cursor: pointer;
  font-family: var(--xrq-ff-title);
  font-size: 13px;
  font-weight: 700;
  color: #1a0a00;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: filter 0.3s, transform 0.2s;
  white-space: nowrap;
}

.xrq-btn-notify:hover { filter: brightness(1.15); transform: scale(1.03); }
.xrq-btn-notify:active { transform: scale(0.98); }

.xrq-btn-icon { font-size: 18px; }

.xrq-form-note {
  margin-top: 10px;
  font-family: var(--xrq-ff-accent);
  font-style: italic;
  font-size: 13px;
  min-height: 20px;
  transition: color 0.3s;
}

.xrq-note-success { color: #80c878; }
.xrq-note-error   { color: #e07070; }

.xrq-direct-email {
  margin-top: 22px;
  font-family: var(--xrq-ff-body);
  font-size: clamp(13px, 1.6vw, 15px);
  color: var(--xrq-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.xrq-email-link {
  font-family: var(--xrq-ff-accent);
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--xrq-gold-lt);
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px dotted rgba(232,168,32,0.4);
  transition: color 0.3s, border-color 0.3s, text-shadow 0.3s;
}

.xrq-email-link:hover {
  color: var(--xrq-gold);
  border-color: var(--xrq-gold);
  text-shadow: 0 0 10px var(--xrq-glow);
}

/* ── DIVIDER ────────────────────────────────── */
.xrq-divider-wrap {
  width: 100%;
  max-width: 700px;
  margin-top: 40px;
  opacity: 0.6;
}

.xrq-divider-svg { width: 100%; }

/* ── FOOTER ─────────────────────────────────── */
.xrq-footer {
  text-align: center;
  margin-top: 18px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.xrq-footer-text {
  font-family: var(--xrq-ff-body);
  font-size: 13px;
  color: var(--xrq-muted);
  letter-spacing: 0.08em;
}

.xrq-footer-link {
  color: var(--xrq-gold-dk);
  text-decoration: none;
}

.xrq-footer-link:hover { color: var(--xrq-gold); }

.xrq-footer-quote {
  font-family: var(--xrq-ff-accent);
  font-style: italic;
  font-size: 13px;
  color: rgba(176,152,112,0.5);
}

/* ── FLOATING WORDS ─────────────────────────── */
.xrq-floating-words {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.xrq-flt-word {
  position: absolute;
  font-family: var(--xrq-ff-display);
  font-style: italic;
  color: rgba(232,168,32,0.06);
  white-space: nowrap;
  user-select: none;
  animation: xrqWordDrift linear infinite;
}

@keyframes xrqWordDrift {
  0%   { transform: translateY(110vh) rotate(var(--xrq-wrot)); opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { transform: translateY(-20vh)  rotate(var(--xrq-wrot)); opacity: 0; }
}

/* ── CUSTOM CURSOR ──────────────────────────── */
.xrq-cursor-ring {
  position: fixed;
  width: 26px;
  height: 26px;
  border: 1.5px solid rgba(232,168,32,0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s, border-color 0.2s;
  mix-blend-mode: exclusion;
}

.xrq-cursor-ring.xrq-cursor-hover {
  width: 44px;
  height: 44px;
  border-color: var(--xrq-gold);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 600px) {
  .xrq-hero-title { font-size: clamp(38px, 12vw, 64px); }
  .xrq-hero-sub   { font-size: 15px; }
  .xrq-btn-text   { display: none; }
  .xrq-btn-notify { padding: 14px 18px; }
  .xrq-slogan     { padding: 0 24px; }
  .xrq-cta-card   { padding: 24px 18px; }
  .xrq-direct-email { font-size: 13px; }
}

@media (max-width: 400px) {
  .xrq-stamp-shell { width: 130px; height: 130px; }
  .xrq-genre-row   { gap: 8px; }
  .xrq-gtag        { font-size: 11px; padding: 5px 12px; }
}

/* ── SCROLL-BASED REVEAL ────────────────────── */
.xrq-reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.xrq-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
