:root {
  --bg: #0a0a0a;
  --ink: #f5efe7;
  --muted: #d7c5ae;
  --accent: #ff7a1a;
  --accent-2: #ff3d00;
  --glass: rgba(12, 12, 12, 0.45);
}

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

html,
body {
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  scroll-behavior: smooth;
}

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

.floating-header {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--glass);
  backdrop-filter: blur(8px);
}

.floating-header a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.floating-header a:hover {
  opacity: 1;
}

.reserve-btn {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 122, 26, 0.65);
  color: var(--accent);
}

.panel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.media-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  animation: breathing 14s ease-in-out infinite;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 116, 0, 0.16), transparent 38%),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.84) 8%,
      rgba(0, 0, 0, 0.5) 45%,
      rgba(0, 0, 0, 0.2) 100%
    );
}

.content {
  position: relative;
  z-index: 5;
  width: min(920px, 90vw);
  margin: 0 5vw 8vh;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 10vw, 8.5rem);
  letter-spacing: 0.05em;
}

h2 {
  font-size: clamp(2.2rem, 7.5vw, 5.7rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.lead,
.content p {
  font-size: clamp(1rem, 2.1vw, 1.45rem);
  color: var(--muted);
  max-width: 56ch;
}

.cta {
  display: inline-block;
  margin-top: 1.5rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.75rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.cta:hover {
  background: var(--accent);
  color: #1a120d;
}

#hero .media-layer {
  background-image: url("/template-asset.php?demo=restaurant&path=demo-restaurant%2Fimages%2Fcinematic-dining.webp");
}

#grill-chicken .media-layer {
  background-image: url("/template-asset.php?demo=restaurant&path=demo-restaurant%2Fimages%2Ffiregrill.webp");
}

#biryani .media-layer {
  background-image: url("/template-asset.php?demo=restaurant&path=demo-restaurant%2Fimages%2Fbutter-chicken.webp");
}

#butter-chicken .media-layer {
  background-image: url("/template-asset.php?demo=restaurant&path=demo-restaurant%2Fimages%2Froyal-biryani.webp");
}

#salad .media-layer {
  background-image: url("/template-asset.php?demo=restaurant&path=demo-restaurant%2Fimages%2Ffresh-salad.webp");
}

#dessert .media-layer {
  background-image: url("/template-asset.php?demo=restaurant&path=demo-restaurant%2Fimages%2Fdesserts.webp");
}

.steam-wrap {
  position: absolute;
  left: 8vw;
  bottom: 20vh;
  width: 160px;
  height: 260px;
  pointer-events: none;
  z-index: 4;
}

.steam-line {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45));
  filter: blur(5px);
  animation: steam-rise 4.6s ease-in-out infinite;
}

.steam-line:nth-child(1) {
  left: 10%;
}

.steam-line:nth-child(2) {
  left: 45%;
  animation-delay: 1.2s;
}

.steam-line:nth-child(3) {
  left: 75%;
  animation-delay: 2.1s;
}

.menu,
.reserve {
  background:
    radial-gradient(circle at top, rgba(255, 122, 26, 0.15), transparent 35%),
    #080808;
}

.menu-content,
.reserve-content {
  margin-bottom: 12vh;
}

.menu-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.menu-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  min-height: 190px;
  transform: translateY(0);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.menu-item p {
  font-size: 0.92rem;
  line-height: 1.45;
  margin-top: 0.55rem;
}

.menu-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 26, 0.8);
  background: rgba(255, 122, 26, 0.08);
}

.reservation-form {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(620px, 92vw);
}

.reservation-form input,
.reservation-form button {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 0.9rem 0.95rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.reservation-form button {
  grid-column: 1 / -1;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(92deg, var(--accent), var(--accent-2));
  color: #180d05;
  border: none;
  cursor: pointer;
}

@keyframes steam-rise {
  0% {
    transform: translateY(0) translateX(0) scaleY(0.7);
    opacity: 0;
  }
  25% {
    opacity: 0.35;
  }
  100% {
    transform: translateY(-120px) translateX(16px) scaleY(1.25);
    opacity: 0;
  }
}

@keyframes breathing {
  0%,
  100% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(1.14);
  }
}

@media (max-width: 1000px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .floating-header {
    left: 0.8rem;
    right: 0.8rem;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.7rem;
  }

  .floating-header a {
    font-size: 0.72rem;
  }

  .content {
    margin: 0 5vw 6.5vh;
  }

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

  .reservation-form {
    grid-template-columns: 1fr;
  }

  .steam-wrap {
    left: auto;
    right: 5vw;
    bottom: 18vh;
    transform: scale(0.8);
  }

}
