/* =========================================================================
   Mughlai Ballimaran Nahari - Luxury Theme Stylesheet
   Colors: Obsidian Deep Night, Saffron Gold, Royal Amber, Clay Tandoor Crimson
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Noto+Nastaliq+Urdu:wght@500;700&display=swap');

:root {
  --bg-deep: #090807;
  --bg-surface: #12100e;
  --bg-surface-elevated: #1a1714;
  --bg-surface-card: #201c18;
  --gold-primary: #d4af37;
  --gold-light: #f6d875;
  --gold-dark: #9e7d23;
  --amber-warm: #f59e0b;
  --crimson-tandoor: #b91c1c;
  --text-primary: #fcf9f2;
  --text-muted: #b8aba0;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Ensure images never cause horizontal overflow */
img, svg {
  max-width: 100%;
}

/* Smooth Touch Scrolling on Mobile */
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.scrollbar-none::-webkit-scrollbar {
  display: none;
}

.font-heading {
  font-family: 'Playfair Display', serif;
}

.font-cinzel {
  font-family: 'Cinzel', serif;
}

.font-urdu {
  font-family: 'Noto Nastaliq Urdu', serif;
}

/* Gold Gradient Effects */
.text-gold-gradient {
  background: linear-gradient(135deg, #f6d875 0%, #d4af37 50%, #aa820a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold-bright {
  background: linear-gradient(135deg, #fff2a3 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #f6d875 0%, #d4af37 50%, #9e7d23 100%);
}

.border-gold-subtle {
  border-color: rgba(212, 175, 55, 0.25);
}

.border-gold-glow {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

/* Islamic Arabesque Pattern Glow */
.arabesque-pattern {
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.ambient-degh-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0f0d0b;
}
::-webkit-scrollbar-thumb {
  background: #332b23;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Card Hover Elevation */
.dish-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.dish-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Live Simmering Pulse */
@keyframes simmerPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.08); }
}

.simmer-indicator {
  animation: simmerPulse 2.5s infinite ease-in-out;
}

/* Thermal Print Styles (for Kitchen Order Tickets & Customer Receipts) */
@media print {
  body * {
    visibility: hidden;
  }
  #printable-receipt, #printable-receipt * {
    visibility: visible;
  }
  #printable-receipt {
    position: absolute;
    left: 0;
    top: 0;
    width: 80mm;
    margin: 0;
    padding: 10px;
    background: #fff;
    color: #000;
    font-family: monospace;
    font-size: 12px;
  }
}
