/* ─────────────────────────────────────────────
   Hyderabad's Kitchen — Coming Soon
   Aesthetic: Rich Nizami / Mughal miniature
   Palette: Deep saffron, ivory, burgundy, gold
───────────────────────────────────────────── */

:root {
  --saffron:   #E8720C;
  --gold:      #C9922A;
  --gold-lt:   #F2C96E;
  --ivory:     #FAF3E0;
  --cream:     #F5E6C8;
  --burgundy:  #6B1A2A;
  --charcoal:  #1C1108;
  --smoke:     rgba(250, 243, 224, 0.06);
}

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

/* ── Body ── */
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #140C04;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%,   #3B1A06 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 80% 100%,  #2A0D10 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 10% 80%,   #1A0A02 0%, transparent 55%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--ivory);
  overflow-x: hidden;
  position: relative;
}

/* ── Grain noise overlay ── */
.noise {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ── Decorative rotating rings ── */
.spice-ring {
  position: fixed;
  border-radius: 50%;
  border: 1px solid rgba(201, 146, 42, 0.12);
  pointer-events: none;
  animation: spinRing linear infinite;
}
.ring-1 { width: 520px; height: 520px; top: 50%; left: 50%; translate: -50% -50%; animation-duration: 60s; }
.ring-2 { width: 760px; height: 760px; top: 50%; left: 50%; translate: -50% -50%; animation-duration: 90s; border-style: dashed; animation-direction: reverse; opacity: 0.5; }
.ring-3 { width: 1020px; height: 1020px; top: 50%; left: 50%; translate: -50% -50%; animation-duration: 130s; opacity: 0.25; }

@keyframes spinRing { from { rotate: 0deg; } to { rotate: 360deg; } }

/* ── Floating ornament glyphs ── */
.floating-spice {
  position: fixed;
  color: var(--gold);
  opacity: 0;
  font-size: 1rem;
  pointer-events: none;
  animation: floatUp 8s ease-in infinite;
}
.s1 { left: 15%; bottom: -5%; animation-delay: 0s;   font-size: 0.8rem; }
.s2 { left: 35%; bottom: -5%; animation-delay: 2.1s; font-size: 1.2rem; }
.s3 { left: 55%; bottom: -5%; animation-delay: 4.3s; font-size: 0.9rem; }
.s4 { left: 72%; bottom: -5%; animation-delay: 1.5s; font-size: 1rem;   }
.s5 { left: 88%; bottom: -5%; animation-delay: 3.7s; font-size: 0.7rem; }

@keyframes floatUp {
  0%   { transform: translateY(0)   rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* ── Main container ── */
.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 680px;
  width: 100%;
  animation: fadeIn 1.4s ease both;
}

@keyframes fadeIn { from { opacity: 0; translate: 0 24px; } to { opacity: 1; translate: 0 0; } }

/* ── Badge ── */
.badge {
  display: inline-block;
  font-family: 'IM Fell English SC', serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold-lt);
  border: 1px solid rgba(201, 146, 42, 0.35);
  padding: 0.3rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 2.4rem;
  animation: fadeIn 1.2s ease 0.3s both;
}

/* ── Hero ── */
.hero {
  margin-bottom: 2.8rem;
}

.eyebrow {
  display: block;
  font-family: 'IM Fell English SC', serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.6rem;
  animation: fadeIn 1.2s ease 0.5s both;
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.1em;
}

.line-1 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  display: block;
  animation: fadeIn 1.2s ease 0.6s both;
}

.line-2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(3.8rem, 13vw, 7rem);
  font-weight: 700;
  color: var(--saffron);
  display: block;
  text-shadow: 0 0 60px rgba(232, 114, 12, 0.4), 0 4px 20px rgba(0,0,0,0.5);
  animation: fadeIn 1.2s ease 0.75s both;
}

/* ── Title ornament ── */
.title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  animation: fadeIn 1.2s ease 0.9s both;
}
.title-ornament .dash {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.title-ornament .gem {
  color: var(--gold-lt);
  font-size: 0.65rem;
}

/* ── Coming Soon section ── */
.coming-soon {
  animation: fadeIn 1.2s ease 1s both;
}

.divider-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.divider-line::before,
.divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 146, 42, 0.5), rgba(201, 146, 42, 0.5), transparent);
}

.divider-text {
  font-family: 'IM Fell English SC', serif;
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--gold-lt);
  white-space: nowrap;
  padding: 0 0.4rem;
}

/* ── Tagline ── */
.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: rgba(250, 243, 224, 0.7);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 2.4rem;
  letter-spacing: 0.02em;
}

/* ── Spice icons row ── */
.spice-icons {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.spice-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.3s ease;
  cursor: default;
}

.spice-item span {
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(232,114,12,0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.spice-item:hover span {
  transform: translateY(-4px) scale(1.15);
  filter: drop-shadow(0 6px 14px rgba(232,114,12,0.6));
}

.spice-item small {
  font-family: 'IM Fell English SC', serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(242, 201, 110, 0.6);
}

/* ── Footer ── */
.foot-note {
  margin-top: 3.5rem;
  font-family: 'IM Fell English SC', serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: rgba(250, 243, 224, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  animation: fadeIn 1.4s ease 1.2s both;
}
.foot-note .dot { color: var(--gold); opacity: 0.5; }

/* ── Responsive ── */
@media (max-width: 480px) {
  .spice-icons { gap: 1rem; }
  .spice-item small { display: none; }
  .divider-text { font-size: 0.82rem; }
}
