:root {
  --ramen-orange: #f2792a;
  --ramen-deep: #d95d1e;
  --ramen-blue: #2b5c8a;
}

.font-display { font-family: "Bricolage Grotesque", system-ui, sans-serif; }
.font-body { font-family: "Fraunces", Georgia, serif; }

body {
  margin: 0;
  color: #fff;
  background:
    radial-gradient(1200px 600px at 20% -10%, #ffb257 0%, transparent 60%),
    radial-gradient(900px 500px at 110% 20%, rgba(43,92,138,0.55) 0%, transparent 55%),
    linear-gradient(160deg, #f2792a 0%, #e5641f 45%, #cf5116 100%);
  background-attachment: fixed;
}

/* Blur navbar over orange */
.nav-blur {
  background: rgba(207, 81, 22, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Logo halo + float */
.logo-halo {
  width: fit-content;
  border-radius: 9999px;
  padding: 10px;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 55%, rgba(255,255,255,0) 72%);
}
.float-logo { animation: bob 4s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

/* Steam swirls */
.steam-field {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.steam {
  position: absolute; bottom: -10%;
  color: rgba(255,255,255,0.35);
  animation: rise 9s linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  15%  { opacity: 0.5; }
  100% { transform: translateY(-120vh) scale(1.6) rotate(20deg); opacity: 0; }
}

/* Reveal on load */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.7s ease forwards;
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Menu placeholder cards */
.menu-card {
  background: #fff8ef;
  border: 2px solid rgba(200, 98, 47, 0.45);
  border-radius: 1.25rem;
  padding: 1.25rem 1.25rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  min-height: 120px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}

.ghost-chip {
  display: inline-block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  color: #b98a63;
  background: #f3e4d3;
  border: 1px dashed #d3a97f;
  border-radius: 9999px;
  padding: 3px 10px;
  letter-spacing: 0.05em;
}
.ghost-line {
  height: 10px;
  border-radius: 6px;
  background: repeating-linear-gradient(90deg, #ece0d1 0 12px, #f6efe6 12px 20px);
  margin: 8px 0;
}
.ghost-price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #c8622f;
  background: #f3e4d3;
  border: 1px dashed #d3a97f;
  border-radius: 0.6rem;
  padding: 4px 12px;
  white-space: nowrap;
}
.ghost-line-inline {
  display: inline-block;
  width: 120px; height: 10px; border-radius: 6px;
  background: repeating-linear-gradient(90deg, #f0e0cd 0 12px, #f9f2e8 12px 20px);
}