/* ===== SANKALPY GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Khand:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --saffron: #C45A27;
  --saffron-light: #D4713E;
  --saffron-dark: #A04A1E;
  --gold: #B8860B;
  --gold-bright: #E0B830;
  --dark-bg: #0A0806;
  --dark-surface: #141110;
  --dark-card: #1A1614;
  --dark-card-hover: #221E1A;
  --warm-white: #F2EADE;
  --warm-muted: #A09080;
  --warm-dim: #605548;
  --success: #8AB852;
  --success-dark: #6A9040;
  --broken: #D45A5A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark-bg);
  color: var(--warm-white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,8,6,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224,184,48,0.04);
}
.nav-left { display: flex; align-items: center; gap: 36px; }
.nav-logo {
  font-family: 'Khand', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--warm-white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}
.nav-logo .flame { font-size: 20px; filter: drop-shadow(0 0 6px rgba(224,122,66,0.5)); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px;
  color: var(--warm-muted);
  transition: color 0.2s ease;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--warm-white); }
.nav-cta {
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron));
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Khand', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(196,90,39,0.25);
  display: inline-block;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(196,90,39,0.35); }

/* ===== BUTTONS ===== */
.btn-primary {
  padding: 16px 40px;
  background: linear-gradient(180deg, var(--saffron-light) 0%, var(--saffron) 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Khand', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(196,90,39,0.3), 0 0 60px rgba(196,90,39,0.08);
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent);
  border-radius: 14px 14px 0 0;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(196,90,39,0.4); }
.btn-secondary {
  padding: 16px 32px;
  background: transparent;
  color: var(--warm-muted);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-secondary:hover { color: var(--warm-white); border-color: rgba(255,255,255,0.15); }

/* ===== SECTION HELPERS ===== */
.section-divider {
  position: relative;
}
.section-divider::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.1), transparent);
}
.section-label {
  font-family: 'Khand', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-dim);
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Khand', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  color: var(--warm-white);
}
.page-hero {
  padding: 140px 24px 60px;
  text-align: center;
}
.page-hero-title {
  font-family: 'Khand', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 12px;
}
.page-hero-sub {
  font-size: 17px;
  color: var(--warm-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== STORE BADGES ===== */
.store-badges { display: flex; gap: 14px; justify-content: center; align-items: center; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.store-badge:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }
.store-badge-icon { font-size: 24px; }
.store-badge-text { text-align: left; }
.store-badge-label { font-size: 10px; color: var(--warm-muted); letter-spacing: 0.3px; }
.store-badge-name { font-family: 'Khand', sans-serif; font-size: 16px; font-weight: 700; color: var(--warm-white); line-height: 1.1; }

/* ===== FOOTER ===== */
footer {
  padding: 60px 48px 36px;
  border-top: 1px solid rgba(224,184,48,0.04);
  background: var(--dark-bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand-name {
  font-family: 'Khand', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.footer-tagline { font-size: 13px; color: var(--warm-dim); font-style: italic; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.2s ease;
}
.footer-social a:hover { background: rgba(255,255,255,0.08); }
.footer-links { display: flex; gap: 60px; }
.footer-col-title {
  font-family: 'Khand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--warm-muted);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--warm-white); }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  font-size: 12px;
  color: var(--warm-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-logo { font-size: 22px; }
  .page-hero { padding: 110px 20px 40px; }
  .page-hero-title { font-size: 36px; }
  .section-title { font-size: 32px; }
  .store-badges { flex-direction: column; align-items: center; }
  footer { padding: 40px 20px 28px; }
  .footer-links { gap: 32px; }
}   