/* ============================================================
   LITTLE PIRATE — Anti-Gravity 3D Landing Experience
   Design System & Styles
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Inter:wght@300;400;500;600;700&family=Pirata+One&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #FF6B00;
  --primary-light: #FF8C33;
  --secondary: #FFD166;
  --accent: #FF3D00;
  --bg: #050505;
  --bg-card: rgba(255, 107, 0, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);
  --text: #FFFFFF;
  --text-dim: #AAAAAA;
  --text-muted: #666666;
  --smoke: #CFCFCF;
  --glow-orange: 0 0 40px rgba(255, 107, 0, 0.3);
  --glow-fire: 0 0 60px rgba(255, 61, 0, 0.4);
  --glow-gold: 0 0 30px rgba(255, 209, 102, 0.3);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 107, 0, 0.4);
  --font-display: 'Pirata One', cursive;
  --font-accent: 'Cinzel Decorative', serif;
  --font-body: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg);
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--bg); }
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 3px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: url('images/chicken_cursor_small.png') 16 16, auto;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  cursor: url('images/chicken_cursor_small.png') 16 16, pointer;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: var(--secondary); }

button {
  cursor: url('images/chicken_cursor_small.png') 16 16, pointer;
  font-family: var(--font-body);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Loading Screen ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-skull {
  font-size: 4rem;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 1rem;
  letter-spacing: 0.2em;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 107, 0, 0.15);
  margin-top: 1.5rem;
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary));
  border-radius: 2px;
  transition: width 0.3s ease;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.7rem 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.logo-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.5);
}

/* Order Now highlighted nav button */
.nav-order-now {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: white !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 50px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35) !important;
  transition: all 0.3s ease !important;
}
.nav-order-now::after { display: none !important; }
.nav-order-now:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.55) !important;
  color: white !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Section Base ---------- */
section {
  position: relative;
  overflow: hidden;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- HERO SECTION ---------- */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-canvas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  text-align: center;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(5, 5, 5, 0.6) 100%);
  pointer-events: none;
}

.hero-overlay > * { pointer-events: auto; }

.hero-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  background: rgba(255, 107, 0, 0.08);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  color: var(--text);
  text-shadow: 0 0 60px rgba(255, 107, 0, 0.4), 0 0 120px rgba(255, 61, 0, 0.2);
  line-height: 1;
  opacity: 0;
  transform: translateY(40px);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  color: var(--text-dim);
  margin-top: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--secondary), var(--primary), var(--accent));
  border-radius: inherit;
  z-index: -1;
  animation: ctaGlow 3s ease-in-out infinite;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.6);
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.5; filter: blur(8px); }
  50% { opacity: 1; filter: blur(12px); }
}

/* Fire particle canvas in hero */
#fire-particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* ---------- SECTION 2: LEGEND ---------- */
#legend {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0;
}

.legend-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.legend-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.5) contrast(1.2);
}

.legend-clouds {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 61, 0, 0.06) 0%, transparent 50%);
  z-index: 1;
  animation: cloudDrift 30s ease-in-out infinite alternate;
}

@keyframes cloudDrift {
  0% { transform: translateX(-20px) scale(1); }
  100% { transform: translateX(20px) scale(1.02); }
}

.legend-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.legend-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px var(--primary));
  animation: lanternGlow 4s ease-in-out infinite;
}

@keyframes lanternGlow {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateY(-8px) scale(1.05); opacity: 1; }
}

.legend-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.legend-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text) 0%, var(--secondary) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.legend-text {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.legend-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.legend-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.legend-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.legend-feature:hover .legend-feature-icon {
  background: rgba(255, 107, 0, 0.2);
  transform: scale(1.1);
  box-shadow: var(--glow-orange);
}

.legend-feature-text {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Floating lanterns */
.lantern {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--secondary), var(--primary));
  box-shadow: 0 0 20px var(--primary), 0 0 40px rgba(255, 107, 0, 0.3);
  animation: lanternFloat 8s ease-in-out infinite;
  z-index: 1;
}

.lantern:nth-child(2) { animation-delay: -2s; animation-duration: 10s; }
.lantern:nth-child(3) { animation-delay: -4s; animation-duration: 12s; }
.lantern:nth-child(4) { animation-delay: -6s; animation-duration: 9s; }

@keyframes lanternFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25% { transform: translateY(-30px) translateX(15px); opacity: 0.7; }
  50% { transform: translateY(-15px) translateX(-10px); opacity: 1; }
  75% { transform: translateY(-40px) translateX(20px); opacity: 0.5; }
}

/* ---------- SECTION 3: SIGNATURE ITEMS ---------- */
#signature {
  padding: 8rem 0;
  position: relative;
}

.signature-header {
  text-align: center;
  margin-bottom: 5rem;
}

.signature-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.signature-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--text), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.signature-card {
  position: relative;
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: cardFloat 6s ease-in-out infinite;
}

.signature-card:nth-child(2) { animation-delay: -1.5s; }
.signature-card:nth-child(3) { animation-delay: -3s; }
.signature-card:nth-child(4) { animation-delay: -4.5s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.signature-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--glow-orange), inset 0 0 30px rgba(255, 107, 0, 0.05);
  animation-play-state: paused;
}

.signature-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, transparent, rgba(255, 107, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.signature-card:hover .signature-card-glow { opacity: 1; }

.signature-card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.signature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.signature-card:hover .signature-card-img img {
  transform: scale(1.08);
}

.signature-card-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.signature-card:hover .signature-card-sparks { opacity: 1; }

.signature-card-body {
  padding: 1.5rem;
}

.signature-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.signature-card-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.signature-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.signature-card-price {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 700;
}

.signature-card-btn {
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.signature-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

/* ---------- SECTION 4: INGREDIENTS ---------- */
#ingredients {
  padding: 8rem 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.ingredients-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ingredients-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.ingredients-bg img:first-child {
  mask-image: linear-gradient(to right, black 70%, transparent);
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent);
}

.ingredients-bg img:last-child {
  mask-image: linear-gradient(to left, black 70%, transparent);
  -webkit-mask-image: linear-gradient(to left, black 70%, transparent);
}

.ingredients-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.85) 100%);
  z-index: 1;
}

.ingredients-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.ingredients-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ingredients-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.ingredients-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--text), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.ingredients-subtitle {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.ingredient-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s ease;
  animation: ingredientFloat 5s ease-in-out infinite;
}

.ingredient-tag:nth-child(2) { animation-delay: -0.7s; }
.ingredient-tag:nth-child(3) { animation-delay: -1.4s; }
.ingredient-tag:nth-child(4) { animation-delay: -2.1s; }
.ingredient-tag:nth-child(5) { animation-delay: -2.8s; }
.ingredient-tag:nth-child(6) { animation-delay: -3.5s; }
.ingredient-tag:nth-child(7) { animation-delay: -4.2s; }

@keyframes ingredientFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.ingredient-tag:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--glow-orange);
}

.ingredient-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.3));
}

.ingredient-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.ingredient-detail {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- SECTION 5: REVIEWS ---------- */
#reviews {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reviews-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(2px);
}

.reviews-content {
  position: relative;
  z-index: 2;
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.reviews-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.reviews-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--text), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.reviews-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.reviews-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-stat-number {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary);
  text-shadow: var(--glow-gold);
}

.reviews-stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.reviews-stars {
  color: var(--secondary);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-shadow: var(--glow-gold);
}

/* Reviews Carousel */
.reviews-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.reviews-carousel {
  display: flex;
  gap: 1.5rem;
  animation: scrollReviews 60s linear infinite;
  width: max-content;
}

.reviews-carousel:hover {
  animation-play-state: paused;
}

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 340px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '🪙';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.2rem;
  opacity: 0.4;
}

.review-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--glow-orange);
  transform: translateY(-5px);
}

.review-card-stars {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-card-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
  min-height: 80px;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}

.review-card-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.review-card-badge {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ---------- SECTION 6: ORDER ---------- */
#order {
  padding: 8rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.order-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.order-text {
  text-align: left;
}

.order-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.order-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--text), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.order-desc {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.order-platforms {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-platform-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.order-platform-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.order-platform-btn:hover {
  border-color: var(--glass-border-hover);
  transform: translateX(8px);
  box-shadow: var(--glow-orange);
  color: var(--text);
}

.order-platform-btn:hover::before { opacity: 1; }

.order-platform-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.order-platform-icon.swiggy { background: #FC8019; }
.order-platform-icon.zomato { background: #E23744; }
.order-platform-icon.whatsapp { background: #25D366; }

.order-platform-name {
  font-weight: 600;
}

.order-platform-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.order-phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.order-phone-wrapper img {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  animation: phoneLevitate 6s ease-in-out infinite;
}

@keyframes phoneLevitate {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.order-phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15), transparent);
  z-index: -1;
  animation: phoneGlow 4s ease-in-out infinite alternate;
}

@keyframes phoneGlow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0.8; }
}

/* ---------- SECTION 7: FINAL CTA ---------- */
#final-cta {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.final-cta-bloom {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(255, 107, 0, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at center bottom, rgba(255, 61, 0, 0.1) 0%, transparent 50%);
  z-index: 1;
  animation: bloomPulse 5s ease-in-out infinite alternate;
}

@keyframes bloomPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.final-cta-smoke {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.3) 50%, rgba(5, 5, 5, 0.8) 100%);
  z-index: 1;
}

.final-cta-content {
  position: relative;
  z-index: 3;
  padding: 0 2rem;
}

.final-cta-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 20px var(--primary));
  animation: ctaIconFloat 4s ease-in-out infinite;
}

@keyframes ctaIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  background: linear-gradient(135deg, var(--text) 0%, var(--secondary) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.final-cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
}

.final-cta-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.final-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 107, 0, 0.6);
}

.final-cta-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Spark particles in CTA */
#cta-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ---------- FOOTER ---------- */
.footer {
  background: rgba(5, 5, 5, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 2rem 2rem;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.footer-brand .footer-tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-section h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-section p,
.footer-section a {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.8;
  display: block;
}

.footer-section a:hover { color: var(--primary); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--glow-orange);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Subtle admin link — visible only to staff who know it's there */
.admin-footer-link {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.12) !important;
  text-decoration: none !important;
  letter-spacing: 0.05em;
  transition: color 0.3s ease !important;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.admin-footer-link:hover {
  color: rgba(255,107,0,0.6) !important;
  background: rgba(255,107,0,0.06);
}

/* ---------- MENU MODAL ---------- */
.menu-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.menu-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-modal {
  width: 95%;
  max-width: 1000px;
  max-height: 85vh;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s var(--ease-out);
}

.menu-modal-overlay.active .menu-modal {
  transform: translateY(0) scale(1);
}

.menu-modal-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.menu-modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
}

.menu-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.menu-modal-close:hover {
  background: rgba(255, 61, 0, 0.2);
  border-color: var(--accent);
}

.menu-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.menu-modal-body::-webkit-scrollbar { width: 4px; }
.menu-modal-body::-webkit-scrollbar-track { background: transparent; }
.menu-modal-body::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

.menu-category {
  margin-bottom: 2.5rem;
}

.menu-category-title {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.menu-item:hover {
  background: rgba(255, 107, 0, 0.06);
}

.menu-item-name {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.menu-item-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  white-space: nowrap;
  margin-left: 1rem;
}

.menu-modal-footer {
  padding: 1.2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-order-btn.swiggy-btn { background: #FC8019; }
.menu-order-btn.zomato-btn { background: #E23744; }
.menu-order-btn.whatsapp-btn { background: #25D366; }

.menu-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: white;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Global fire/ember overlay ---------- */
.ambient-embers {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.3;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 1024px) {
  .order-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .order-text { text-align: center; }

  .order-platforms {
    max-width: 400px;
    margin: 0 auto;
  }

  .order-phone-wrapper { order: -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav-links.mobile-open a {
    font-size: 1.2rem;
    color: var(--text);
  }

  .signature-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .legend-features { gap: 1.5rem; }

  .ingredients-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .ingredients-bg {
    grid-template-columns: 1fr;
  }

  .ingredients-bg img:last-child {
    display: none;
  }

  .ingredients-bg img:first-child {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .review-card { flex: 0 0 290px; }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social { justify-content: center; }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-modal-footer {
    flex-direction: column;
  }

  .menu-order-btn {
    justify-content: center;
  }

  #hero {
    height: 100vh;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }

  .signature-card-img { height: 220px; }

  .ingredient-tag { padding: 1rem 0.5rem; }

  .menu-modal { width: 100%; border-radius: 16px 16px 0 0; max-height: 90vh; }
}
