:root {
  --black: #050403;
  --dark: #0e0805;
  --soft-dark: #170c07;
  --text: #fff7ed;
  --muted: #cdb9a8;
  --orange: #ff781f;
  --amber: #ffbc5e;
  --red: #e93616;
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.065);
  --hero-image: url("../images/hero-background.png");
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 120, 31, 0.15), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(233, 54, 22, 0.13), transparent 30%),
    linear-gradient(180deg, #050403 0%, #130904 55%, #050403 100%);
  overflow: hidden;
}

.spark-field {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.spark {
  position: absolute;
  left: var(--left);
  bottom: -40px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle, #fff8c8 0%, #ffc55f 35%, #ff641f 68%, transparent 72%);
  box-shadow: 0 0 14px rgba(255, 120, 31, 0.95), 0 0 30px rgba(255, 120, 31, 0.45);
  opacity: 0;
  animation: sparkFly var(--duration) linear infinite;
  animation-delay: var(--delay);
}

@keyframes sparkFly {
  0% {
    transform: translate3d(0, 0, 0) scale(0.55);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  65% {
    opacity: 0.85;
  }
  100% {
    transform: translate3d(var(--drift), -115vh, 0) scale(0.12);
    opacity: 0;
  }
}

.smoke-glow {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 18% 78%, rgba(255, 255, 255, 0.13), transparent 34%),
    radial-gradient(ellipse at 72% 30%, rgba(255, 255, 255, 0.08), transparent 38%),
    radial-gradient(ellipse at 48% 62%, rgba(255, 111, 31, 0.11), transparent 44%);
  filter: blur(14px);
  animation: smokeMove 15s ease-in-out infinite alternate;
}

@keyframes smokeMove {
  from {
    transform: translate3d(-2%, 2%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, -2%, 0) scale(1.08);
  }
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.navbar {
  position: fixed;
  top: var(--strip-height, 0px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  background: rgba(7, 5, 4, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px;
  box-shadow: 0 0 28px rgba(255, 120, 31, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.brand-text span {
  margin-top: 4px;
  color: #ffc98a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 247, 237, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--amber);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: 0.28s ease;
  white-space: nowrap;
}

.btn-primary {
  color: #1a0702;
  background: linear-gradient(135deg, #ffd36d 0%, #ff7a1f 54%, #e93616 100%);
  box-shadow: 0 12px 34px rgba(255, 98, 31, 0.38), inset 0 1px 0 rgba(255,255,255,0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(255, 98, 31, 0.52), inset 0 1px 0 rgba(255,255,255,0.45);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--strip-height, 0px) + 145px) 0 90px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 50% 82%, rgba(255, 96, 20, 0.35), transparent 36%),
    var(--hero-image) center/cover no-repeat;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.55), transparent 28%, transparent 72%, rgba(0,0,0,0.55)),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.44));
}

.hero-content {
  position: relative;
  z-index: 6;
  max-width: 980px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 18px;
  border-radius: 0;
  border: 1px solid rgba(255, 199, 138, 0.26);
  background: rgba(255, 120, 31, 0.13);
  color: #ffd7a6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
}

h1 {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.fire-text {
  color: transparent;
  background: linear-gradient(180deg, #fff6dc 4%, #ffd36c 28%, #ff7a1f 62%, #e93616 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 18px 65px rgba(255, 91, 20, 0.28);
}

.hero p {
  max-width: 760px;
  margin: 25px auto 34px;
  color: #f0ddd0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.section {
  position: relative;
  z-index: 5;
  padding: 95px 0;
}

.section-title {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.mini-title {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 13px;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.section-title p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.about-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.about-image {
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.58)),
    url("../images/about-us-image.png") center/cover no-repeat;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: "about us image";
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffd7a6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.content-box {
  margin: 0;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)),
    radial-gradient(circle at 50% 0%, rgba(255, 120, 31, 0.16), transparent 42%);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
  text-align: left;
  display: flex;
  align-items: center;
}

.content-box p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  transition: 0.28s ease;
}

.feature-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--amber));
  opacity: 0.78;
}

.feature-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 188, 94, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: rgba(255, 120, 31, 0.13);
  border: 1px solid rgba(255, 188, 94, 0.22);
  font-size: 30px;
}

.feature-card h3,
.contact-card h3 {
  font-size: 23px;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  text-align: center;
}

.feature-card p,
.contact-card p,
.contact-card a {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
  text-align: center;
}

.cta-box {
  position: relative;
  overflow: hidden;
  max-width: 1060px;
  margin: 0 auto;
  padding: 62px 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 92, 20, 0.27), transparent 38%),
    linear-gradient(135deg, rgba(255, 120, 31, 0.14), rgba(233, 54, 22, 0.08)),
    rgba(255, 255, 255, 0.05);
  text-align: center;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

.cta-box h2 {
  max-width: 760px;
  margin: 0 auto;
}

.cta-box p {
  max-width: 690px;
  margin: 18px auto 30px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.map-box {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--line);
  box-shadow: 0 24px 85px rgba(0, 0, 0, 0.32);
}

.map-box iframe {
  width: 100%;
  height: 410px;
  border: 0;
  display: block;
  filter: grayscale(95%) invert(92%) contrast(95%);
}

footer {
  position: relative;
  z-index: 5;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255, 247, 237, 0.68);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-order {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
}

.mobile-order .btn {
  width: auto;
  min-height: 48px;
  border-radius: 30px;
  padding: 0 24px;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(255, 98, 31, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 820ms ease;
}

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

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

  .features-grid,
  .contact-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .navbar {
    top: var(--strip-height, 0px);
    width: calc(100% - 22px);
    padding: 11px 12px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text span {
    font-size: 10px;
  }

  .navbar > .btn {
    display: none;
  }

  .hero {
    padding: 128px 0 72px;
  }

  h1 {
    font-size: clamp(42px, 15vw, 70px);
  }

  .hero p {
    font-size: 15.5px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .content-box,
  .cta-box,
  .feature-card,
  .contact-card {
    padding: 28px 22px;
    border-radius: 0;
  }

  .map-box iframe {
    height: 330px;
  }

  footer {
    padding-bottom: 92px;
  }

  .mobile-order {
    display: block;
  }
}

/* SIPO API Overrides & Menu Grid */

/* ---- Status Strip (fixed at very top) ---- */
#sipo-status-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.status-strip {
  width: 100%;
  background: rgba(10, 6, 4, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 0;
  transition: background 0.3s ease;
}

.status-strip.open {
  background: rgba(5, 30, 12, 0.92);
  border-bottom-color: rgba(34, 197, 94, 0.25);
}

.status-strip.closed {
  background: rgba(30, 5, 5, 0.92);
  border-bottom-color: rgba(239, 68, 68, 0.25);
}

.status-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.status-strip-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #888;
  box-shadow: 0 0 8px currentColor;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.8); }
}

.status-strip-text {
  color: rgba(255, 247, 237, 0.88);
}

/* ---- Menu Grid ---- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

/* ---- Menu Card ---- */
.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 188, 94, 0.38);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.menu-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--amber));
  opacity: 0.75;
}

.menu-image-container {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(201, 37, 45, 0.12), rgba(229, 185, 106, 0.08));
  flex-shrink: 0;
}

.menu-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-image-container img {
  transform: scale(1.06);
}

.menu-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 188, 94, 0.3);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.menu-details {
  padding: 22px 22px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-details h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.menu-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--amber);
  white-space: nowrap;
  padding-left: 10px;
  flex-shrink: 0;
}

.menu-details p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
  margin-top: 8px;
  margin-bottom: 16px;
  flex: 1;
}

.menu-details .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 800;
  border: none;
  border-radius: 0;
  color: #1a0702;
  background: linear-gradient(135deg, #ffd36d 0%, #ff7a1f 54%, #e93616 100%);
  box-shadow: 0 8px 24px rgba(255, 98, 31, 0.35);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  align-self: flex-start;
}

.menu-details .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 98, 31, 0.5);
}

/* ---- Hours Table ---- */
.hours-table .hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.hours-table .hours-row.today {
  color: var(--amber);
  font-weight: 700;
}

.hours-table .closed-day {
  color: #ef4444;
  font-size: 12px;
}

.hours-table p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
}
