/* ── Keep existing neon / sign / flicker animations ──────── */
#intro { margin: 30px 0; }

.sign {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(ellipse 50% 35% at 50% 50%, #6b1839, transparent);
  letter-spacing: 2px;
  font-size: 6em;
  color: #ffe6ff;
  text-shadow: 0 0 0.6rem #ffe6ff, 0 0 1.5rem #ff65bd,
               -0.2rem 0.1rem 1rem #ff65bd, 0.2rem 0.1rem 1rem #ff65bd,
               0 -0.5rem 2rem #ff2483, 0 0.5rem 3rem #ff2483;
  animation: shine 2s forwards, flicker 3s infinite;
}

.flicker      { animation: shine 2s forwards, blink 3s 2s infinite; }
.fast-flicker { animation: shine 2s forwards, blink 10s 1s infinite; }

@keyframes blink {
  0%,22%,36%,75% {
    color:#ffe6ff;
    text-shadow:0 0 .6rem #ffe6ff,0 0 1.5rem #ff65bd,
                -.2rem .1rem 1rem #ff65bd,.2rem .1rem 1rem #ff65bd,
                0 -.5rem 2rem #ff2483,0 .5rem 3rem #ff2483;
  }
  28%,33%  { color:#ff65bd; text-shadow:none; }
  82%,97%  { color:#ff2483; text-shadow:none; }
}
@keyframes shine {
  0%   { color:#6b1839; text-shadow:none; }
  100% { color:#ffe6ff;
         text-shadow:0 0 .6rem #ffe6ff,0 0 1.5rem #ff65bd,
                     -.2rem .1rem 1rem #ff65bd,.2rem .1rem 1rem #ff65bd,
                     0 -.5rem 2rem #ff2483,0 .5rem 3rem #ff2483; }
}
@keyframes flicker {
  from,20%,24%,42%,68% { opacity:1; }
  4%,6%,10%,12%,17%,19%,26%,28%,37%,44%,46%,56%,58%,70%,72%,93%,95%,97%
                        { opacity:.9; }
  8%,14%,16%            { opacity:.95; }
  38%                   { opacity:.5; }
  60%                   { opacity:.99; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.bg-img {
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.neon-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.15s, filter 0.15s;
  min-width: 160px;
  text-align: center;
}
.hero-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }

.hero-btn--book  { background: #1a3a5c; color: #fff; }
.hero-btn--order { background: #fff; color: #333; border: 2px solid rgba(255,255,255,.6); }

/* ── Intro Section ────────────────────────────────────────── */
.intro-section {
  padding: 56px 24px 40px;
  max-width: 760px;
  margin: 0 auto;
}

.intro-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8926a;
  margin-bottom: 8px;
}

.intro-name {
  color: var(--main-logo-color, #b8926a);
  font-size: 3em;
  letter-spacing: 5px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  text-shadow: 1px 1px #968240, 2px 2px #998133, 3px 3px #86712d, 4px 4px #826e2b,
               10px 10px 30px rgba(204,204,204,0.7);
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--main-text-color, #333);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 14px;
}

/* ── Lunch Callout Card ───────────────────────────────────── */
.lunch-callout {
  margin-top: 36px;
  background: linear-gradient(135deg, #fdf6ee 0%, #fef9f3 100%);
  border: 1.5px solid #e8c99a;
  border-left: 5px solid #b8926a;
  border-radius: 16px;
  padding: 28px 28px 24px;
}

.lunch-badge {
  display: inline-block;
  background: #b8926a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.lunch-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.lunch-text strong { color: #b8926a; }

.lunch-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lunch-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.15s, filter 0.15s;
  white-space: nowrap;
}
.lunch-btn:hover { transform: translateY(-2px); filter: brightness(0.92); }

.lunch-btn--menu  { background: #b8926a; color: #fff; }
.lunch-btn--order { background: #2e7d32; color: #fff; }
.lunch-btn--book  { background: #1a3a5c; color: #fff; border: none; }

/* ── Gallery Section ──────────────────────────────────────── */
.gallery-section {
  padding: 16px 0 80px;
}

.gallery-block {
  margin-bottom: 40px;
}

.gallery-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--main-text-color, #222);
  padding: 0 20px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.new-badge {
  background: #d32f2f;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  vertical-align: middle;
}

/* Horizontal scroll track */
.gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 12px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #111;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s;
}
.gallery-item:hover { transform: scale(1.03); }

.gallery-item img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

/* Lunch items: tinted ring to distinguish */
.lunch-item { outline: 2.5px solid #b8926a; outline-offset: -2px; }

.item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 20px 10px 8px;
  text-align: center;
}

/* Gallery arrow nav */
.gallery-nav {
  display: flex;
  gap: 8px;
  padding: 4px 20px 0;
}

.gnav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.gnav-btn:hover { background: #b8926a; border-color: #b8926a; color: #fff; }

/* ── Sticky bottom CTA (mobile) ───────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 900;
}

.sticky-btn {
  padding: 10px 18px;
  border-radius: 50px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0,0,0,0.22);
  transition: transform 0.15s, filter 0.15s;
}
.sticky-btn:hover { transform: translateY(-2px); filter: brightness(0.92); }

.sticky-btn--book  { background: #1a3a5c; color: #fff; }
.sticky-btn--order { background: #2e7d32; color: #fff; }

/* ── Existing image-list kept for non-JS fallback ─────────── */
#image-list {
  width: 100%;
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  column-gap: 15px;
  row-gap: 15px;
  justify-items: center;
}
#image-list img { width: 100%; cursor: pointer; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .sign { font-size: 4em; }
  .intro-name { font-size: 2em; }
  .lunch-cta-row { flex-direction: column; }
  .lunch-btn { text-align: center; }
  .gallery-item,
  .gallery-item img { flex: 0 0 170px; width: 170px; height: 170px; }
}

/* add bottom padding so sticky CTA doesn't cover content */
body { padding-bottom: 20px; }
/*# sourceMappingURL=main.css.map */