/* 
  Daarshik - Sacred & Divine Essentials 
  Coming Soon Page Styling
*/

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #080503;
  --bg-surface: #120b07;
  --bg-card: rgba(24, 14, 9, 0.65);
  --bg-card-hover: rgba(38, 21, 13, 0.85);
  
  --gold-primary: #d4af37;
  --gold-light: #f5e4a8;
  --gold-bright: #ffd700;
  --gold-dark: #997819;
  --gold-gradient: linear-gradient(135deg, #f9ebbe 0%, #d4af37 50%, #997819 100%);
  --gold-glow-grad: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(8, 5, 3, 0) 70%);
  
  --saffron: #ff6b3b;
  --vermillion: #d9381e;
  --amber-light: #ffaa00;
  
  --text-main: #f9f5ef;
  --text-muted: #bfae9c;
  --text-dim: #8c7a68;
  
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-gold-glow: rgba(245, 228, 168, 0.5);
  
  --font-heading: 'Marcellus', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Atmosphere & Canvas Glow */
.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.glow-orb-1 {
  width: 450px;
  height: 450px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(255, 107, 59, 0.15) 50%, rgba(0, 0, 0, 0) 70%);
}

.glow-orb-2 {
  width: 350px;
  height: 350px;
  bottom: 5%;
  right: -50px;
  background: radial-gradient(circle, rgba(255, 107, 59, 0.2) 0%, rgba(212, 175, 55, 0.08) 60%, rgba(0,0,0,0) 80%);
  animation-delay: -4s;
}

.glow-orb-3 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -50px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(13, 8, 5, 0) 70%);
  animation-delay: -8s;
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.08); }
  100% { transform: translateY(20px) scale(0.95); }
}

/* Subtle Mandana Patterns overlay */
.bg-pattern {
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(rgba(212, 175, 55, 0.07) 1px, transparent 1px),
    radial-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Page Layout Structure */
.site-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon-svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: 2px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
}

.brand-tagline-sub {
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--saffron);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--saffron);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(255, 107, 59, 0.7); }
  70% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 0 8px rgba(255, 107, 59, 0); }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(255, 107, 59, 0); }
}

/* Main Content Section */
.main-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 1rem 2rem;
}

/* Incense & Diya Sacred Graphic Animation */
.sacred-hero-graphic {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-glow-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.3);
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.diya-svg {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 4px 15px rgba(255, 107, 59, 0.5));
}

/* Flame animation */
.flame-element {
  transform-origin: center bottom;
  animation: flameFlicker 1.8s ease-in-out infinite alternate;
}

@keyframes flameFlicker {
  0% { transform: scale(1) rotate(-1deg); filter: drop-shadow(0 -5px 10px rgba(255, 215, 0, 0.8)); }
  25% { transform: scale(1.05) rotate(2deg); filter: drop-shadow(0 -8px 15px rgba(255, 107, 59, 0.9)); }
  50% { transform: scale(0.98) rotate(-2deg); filter: drop-shadow(0 -6px 12px rgba(255, 215, 0, 0.8)); }
  75% { transform: scale(1.03) rotate(1deg); filter: drop-shadow(0 -9px 18px rgba(255, 107, 59, 0.95)); }
  100% { transform: scale(1) rotate(-1deg); filter: drop-shadow(0 -5px 10px rgba(255, 215, 0, 0.8)); }
}

/* Smoke animation */
.smoke-particle {
  opacity: 0;
  animation: smokeRise 3.5s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.smoke-particle-1 { animation-delay: 0s; }
.smoke-particle-2 { animation-delay: 1.2s; }
.smoke-particle-3 { animation-delay: 2.3s; }

@keyframes smokeRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
  50% { transform: translateY(-25px) scaleX(1.8) rotate(10deg); opacity: 0.3; }
  100% { transform: translateY(-55px) scaleX(2.5) rotate(-15deg); opacity: 0; }
}

/* Typography Headings */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 800px;
}

.hero-title span.highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* Countdown Timer Grid */
.timer-container {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.timer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  min-width: 100px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.timer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
}

.timer-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-glow);
}

.timer-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.timer-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  font-weight: 600;
}

/* Subscription Form Card */
.subscription-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  max-width: 580px;
  width: 100%;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 4rem;
  position: relative;
}

.sub-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.sub-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.sub-form {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .sub-form {
    flex-direction: column;
  }
}

.input-wrapper {
  position: relative;
  flex: 1;
}

.sub-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(10, 6, 4, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.sub-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.sub-input::placeholder {
  color: var(--text-dim);
}

.btn-submit {
  background: var(--gold-gradient);
  color: #0d0805;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.88rem;
  display: none;
}

.form-feedback.success {
  display: block;
  color: #4caf50;
}

.form-feedback.error {
  display: block;
  color: var(--vermillion);
}

/* Feature Showcase Grid */
.features-section {
  width: 100%;
  margin-bottom: 3.5rem;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-label::before, .section-label::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--border-gold));
}

.section-label::after {
  background: linear-gradient(90deg, var(--border-gold), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  text-align: left;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold-glow);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.feature-icon-wrapper svg {
  width: 26px;
  height: 26px;
  fill: var(--gold-primary);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Footer & Social */
.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  background: var(--gold-primary);
  color: #0d0805;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-full);
  color: #25d366;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.whatsapp-badge:hover {
  background: #25d366;
  color: #0d0805;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Responsiveness adjustments */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .site-footer {
    flex-direction: column;
    text-align: center;
  }
  
  .timer-card {
    min-width: 75px;
    padding: 0.9rem 0.8rem;
  }
}
