@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

:root {
  --char: #0A0807;
  --soot: #15100D;
  --smoke: #221A15;
  --ash: #8F8175;
  --bone: #EDE3D2;
  --ember: #E9932F;
  --flame: #B33A1E;
  --frame: #000000;
  --swiggy: #FC8019;
  --zomato: #E23744;
  --mint: #2ecc71;
  --serif-display: 'Cinzel', serif;
  --serif-voice: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--char);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.7;
  letter-spacing: .02em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600 !important;
}

::selection {
  background: var(--flame);
  color: var(--bone);
}

/* ---------- letterbox bars ---------- */
.bar {
  position: fixed;
  left: 0;
  width: 100%;
  height: 11vh;
  background: var(--frame);
  z-index: 60;
  transition: height 1.6s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
}
.bar--top { top: 0; }
.bar--bottom { bottom: 0; }
body.rolling .bar { height: 14px; }
@media (max-width: 640px) {
  body.rolling .bar { height: 8px; }
}

/* ---------- nav ---------- */
nav {
  position: fixed;
  top: 14px;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4vw;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 1s ease .2s, transform 1s ease .2s, background .5s ease, padding .5s ease;
}
body.rolling nav {
  opacity: 1;
  transform: none;
}
nav.scrolled {
  background: rgba(10,8,7,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .7rem 4vw;
  border-bottom: 1px solid rgba(237,227,210,.07);
}
.nav-brand {
  font-family: var(--serif-display);
  font-size: 1.15rem;
  letter-spacing: .34em;
  color: var(--bone);
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand em {
  font-style: normal;
  color: var(--ember);
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  color: var(--ash);
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  transition: color .3s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--ember);
}
.nav-cta {
  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--char);
  text-decoration: none;
  background: var(--ember);
  border: 1px solid var(--ember);
  padding: .55rem 1.3rem;
  font-weight: 500;
  transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
  white-space: nowrap;
  border-radius: 4px;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: transparent;
  color: var(--ember);
  box-shadow: 0 0 15px rgba(233, 147, 47, 0.4);
}

/* Mobile Menu Toggle button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bone);
  margin: 5px 0;
  transition: .3s;
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background: var(--soot);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: right .4s cubic-bezier(.77,0,.18,1);
    border-left: 1px solid rgba(237,227,210,.07);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: .95rem 2.2rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
  border-radius: 4px;
}
.btn--fire {
  background: var(--ember);
  color: var(--char);
  border: 1px solid var(--ember);
}
.btn--fire:hover,
.btn--fire:focus-visible {
  background: transparent;
  color: var(--ember);
}
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(237, 227, 210, .35);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--ember);
  color: var(--ember);
}

.btn--swiggy {
  background: var(--swiggy);
  color: #ffffff;
  border: 1px solid var(--swiggy);
  box-shadow: 0 0 10px rgba(252, 128, 25, 0.2);
}
.btn--swiggy:hover {
  background: transparent;
  color: var(--swiggy);
  box-shadow: 0 0 20px rgba(252, 128, 25, 0.4);
}

.btn--zomato {
  background: var(--zomato);
  color: #ffffff;
  border: 1px solid var(--zomato);
  box-shadow: 0 0 10px rgba(226, 55, 68, 0.2);
}
.btn--zomato:hover {
  background: transparent;
  color: var(--zomato);
  box-shadow: 0 0 20px rgba(226, 55, 68, 0.4);
}

/* ---------- glassmorphism & cool panels ---------- */
.glass-panel {
  background: rgba(34, 26, 21, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(237, 227, 210, 0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.glass-panel:hover {
  border-color: rgba(233, 147, 47, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(233, 147, 47, 0.05);
  transform: translateY(-5px);
}

/* ---------- reveal transitions ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-left {
  transform: translateX(-45px);
}
.reveal-right {
  transform: translateX(45px);
}
.reveal[data-delay="1"] { transition-delay: .15s; }
.reveal[data-delay="2"] { transition-delay: .3s; }
.reveal[data-delay="3"] { transition-delay: .45s; }

/* Category panel slide-in keyframe */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- scene titles ---------- */
section {
  position: relative;
  padding: 8rem 6vw;
}
.scene-head {
  max-width: 1200px;
  margin: 0 auto 4.5rem;
}
.scene-label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--ember);
}
.scene-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(233,147,47,.5), transparent);
}
.scene-title {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-top: 1.2rem;
  line-height: 1.15;
}
.scene-title i {
  font-family: var(--serif-voice);
  font-weight: 400;
  color: var(--ember);
}

/* ---------- footer ---------- */
footer {
  background: var(--frame);
  padding: 4rem 6vw 3rem;
  border-top: 1px solid rgba(233, 147, 47, .15);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  text-align: left;
}
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 550px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer-brand h3 {
  font-family: var(--serif-display);
  font-size: 1.6rem;
  color: var(--bone);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--ash);
  line-height: 1.6;
}
.footer-title {
  font-family: var(--serif-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.7rem;
}
.footer-links a {
  color: var(--ash);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--ember);
}
.footer-info {
  font-size: 0.88rem;
  color: var(--ash);
  line-height: 1.6;
}
.footer-info a {
  color: var(--bone);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-info a:hover {
  color: var(--ember);
}
.footer-delivery {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-delivery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0.7rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-delivery-btn--swiggy {
  background: var(--swiggy);
  color: #fff;
}
.footer-delivery-btn--zomato {
  background: var(--zomato);
  color: #fff;
}
.footer-delivery-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(237, 227, 210, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(143, 129, 117, 0.6);
  letter-spacing: 0.1em;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.social-icon--whatsapp:hover {
  background: #25D366 !important;
  color: #fff !important;
  border-color: #25D366 !important;
}
.social-icon--instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.social-icon--facebook:hover {
  background: #1877F2 !important;
  color: #fff !important;
  border-color: #1877F2 !important;
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
