/* ============================================================
   PIZZA STOP ALEPHATA – style.css
   ============================================================ */

/* ---------- Google Font Fallback for Algerian ---------- */
@font-face {
  font-family: 'Algerian';
  src: local('Algerian');
}

/* ---------- CSS Variables ---------- */
:root {
  --gold:       #f5c518;
  --gold-dark:  #c9a100;
  --red:        #e63946;
  --red-dark:   #c1121f;
  --bg:         #0d0d0d;
  --bg2:        #141414;
  --bg3:        #1a1a1a;
  --card-bg:    #1e1e1e;
  --border:     rgba(245,197,24,0.18);
  --text:       #f0ece0;
  --muted:      #9e9e9e;
  --white:      #ffffff;
  --green:      #4caf50;
  --radius:     14px;
  --shadow:     0 8px 32px rgba(0,0,0,0.55);
  --transition: 0.32s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---------- Algerian Utility ---------- */
.algerian {
  font-family: 'Algerian', 'Cinzel', 'Playfair Display', serif;
  letter-spacing: 0.06em;
}
.food-mark {
  position: relative;
  display: inline-block;
  width: 0.95rem;
  height: 0.95rem;
  margin-right: 0.45rem;
  border: 2px solid transparent;
  border-radius: 2px;
  vertical-align: -0.08em;
}
.food-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.veg-mark {
  border-color: #58b84c;
  background: rgba(88, 184, 76, 0.08);
}
.veg-mark::after {
  background: #58b84c;
}
.nonveg-mark {
  border-color: #d8455c;
  background: rgba(216, 69, 92, 0.08);
}
.nonveg-mark::after {
  background: #d8455c;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 8px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 3rem;
  background: rgba(13,13,13,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(245,197,24,0.4);
}
.nav-brand {
  font-family: 'Algerian', 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-shadow: 0 0 14px rgba(245,197,24,0.5);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(230,57,70,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(245,197,24,0.12) 0%, transparent 50%),
    var(--bg);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    url('photo/END.jpg') center/cover no-repeat;
  opacity: 0.13;
  filter: blur(2px);
  z-index: 0;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 2rem 1.5rem;
  animation: fadeInUp 1s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #fff8dc, #ffd6c2);
  color: #000000;
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 20px rgba(255, 214, 194, 0.35);
  animation: fadeInUp 1s 0.1s ease both;
}
.hero-badge-emoji {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1rem;
  line-height: 1;
}
.hero-title {
  font-size: clamp(3.2rem, 8vw, 7rem);
  color: var(--white);
  text-shadow:
    0 0 40px rgba(245,197,24,0.45),
    0 4px 20px rgba(0,0,0,0.8);
  line-height: 1.05;
  animation: fadeInUp 1s 0.2s ease both;
}
.hero-location {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--gold);
  text-shadow: 0 0 24px rgba(245,197,24,0.6);
  margin-top: 0.3rem;
  animation: fadeInUp 1s 0.3s ease both;
}
.hero-tagline {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 1.2rem 0 2rem;
  font-style: italic;
  animation: fadeInUp 1s 0.4s ease both;
}
.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
  animation: fadeInUp 1s 0.5s ease both;
}
.hero-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}
.feat-icon { font-size: 1.3rem; }
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.6s ease both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: 'Algerian', 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 2.4rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(230,57,70,0.35);
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(230,57,70,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  font-family: 'Algerian', 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.82rem 2.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(245,197,24,0.3);
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: bounce 1.8s infinite;
  box-shadow: 0 0 12px rgba(245,197,24,0.7);
}
@keyframes bounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(12px); opacity: 0.5; }
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(135deg, #1a0a00, #1a0000, #0d0808);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 2rem;
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}
.strip-num {
  font-family: 'Algerian', 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(245,197,24,0.45);
  line-height: 1;
}
.strip-label {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.strip-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--gold);
  text-shadow: 0 0 24px rgba(245,197,24,0.35);
  margin-bottom: 0.6rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  padding: 6rem 2rem 5rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* Tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.tab-btn {
  background: linear-gradient(135deg, #fff9eb, #ffe5bf);
  color: #3d2206;
  border: 1.5px solid rgba(245, 197, 24, 0.38);
  border-radius: 999px;
  padding: 0.58rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 18px rgba(255, 229, 191, 0.18);
}
.tab-btn .food-mark {
  margin-right: 0.38rem;
}
.tab-btn:hover {
  color: #000000;
  border-color: var(--gold);
  background: linear-gradient(135deg, #fff4d6, #ffd59c);
}
.tab-btn.active {
  background: linear-gradient(135deg, #fff0bf, #ffc970);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(245,197,24,0.3);
}

/* Tab content */
.menu-tab-content {
  display: none;
  animation: fadeInUp 0.5s ease both;
}
.menu-tab-content.active { display: block; }

/* Photo showcase */
.menu-photo-showcase {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.menu-showcase-img {
  width: 340px;
  max-width: 90vw;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  object-fit: cover;
}
.menu-showcase-img:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(245,197,24,0.2);
}

/* Category grid */
.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}
.menu-category-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.menu-category-card:hover {
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.highlight-card {
  border-color: rgba(230,57,70,0.35);
  background: linear-gradient(145deg, #1e1010, #1e1e1e);
}
.cat-title {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  text-shadow: 0 0 12px rgba(245,197,24,0.25);
}
.cat-title .food-mark {
  margin-right: 0.55rem;
}
.price-header {
  display: grid;
  grid-template-columns: 1fr 80px 90px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
  padding: 0 0 0.3rem;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  align-items: start;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
  transition: background var(--transition);
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: rgba(245,197,24,0.04); border-radius: 8px; }
.menu-item.recommended { background: rgba(245,197,24,0.035); border-radius: 8px; border-left: 3px solid var(--gold); padding-left: 0.7rem; }
.item-info {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.item-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.item-desc {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.4;
}
.price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
  min-width: 50px;
}
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(245,197,24,0.15);
  color: var(--gold);
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  margin-left: 0.3rem;
  border: 1px solid rgba(245,197,24,0.3);
}
.veg-dot   { color: var(--text); }
.nonveg-dot{ color: var(--text); }
.time-note {
  font-size: 0.78rem;
  color: var(--red);
  font-style: italic;
  margin-bottom: 0.8rem;
}
.sub-header {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted);
  border-top: 1px dashed rgba(255,255,255,0.1);
  padding-top: 0.6rem;
  margin: 0.6rem 0 0.2rem;
}

/* ============================================================
   OFFERS SECTION
   ============================================================ */
.offers-section {
  padding: 6rem 2rem;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(230,57,70,0.1) 0%, transparent 55%),
    var(--bg2);
}
.offers-section .section-header { margin-bottom: 3rem; }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.offer-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,197,24,0.04), transparent);
  z-index: 0;
}
.offer-card > * { position: relative; z-index: 1; }
.offer-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(245,197,24,0.15);
}
.glow-card:hover {
  box-shadow: 0 0 40px rgba(245,197,24,0.18), 0 20px 40px rgba(0,0,0,0.5);
}
.offer-price-tag {
  font-family: 'Algerian', 'Cinzel', serif;
  font-size: 2.8rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(245,197,24,0.4);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.offer-price-tag span {
  font-size: 1.2rem;
  color: var(--muted);
}
.offer-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.offer-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
}
.offers-photo-row {
  display: flex;
  justify-content: center;
}
.offer-full-img {
  max-width: 380px;
  width: 90%;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.offer-full-img:hover {
  transform: scale(1.02);
  border-color: var(--gold);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 6rem 2rem;
  background: var(--bg3);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  aspect-ratio: 9/16;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(245,197,24,0.2);
}
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  padding: 2rem 1rem 1rem;
  opacity: 0;
  transition: opacity 0.38s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Algerian', 'Cinzel', serif;
  letter-spacing: 0.05em;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}
.lightbox.open { display: flex; }
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  box-shadow: 0 0 60px rgba(245,197,24,0.3);
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(245,197,24,0.12);
  border: 1.5px solid var(--border);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.5rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold);
  color: #000;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 6rem 2rem;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(245,197,24,0.07) 0%, transparent 55%),
    var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.contact-card-link {
  display: block;
  color: inherit;
  cursor: pointer;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(245,197,24,0.12);
}
.contact-icon { font-size: 2.4rem; margin-bottom: 0.8rem; }
.instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin: 0 auto 0.8rem;
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 6%, #fd5949 42%, #d6249f 62%, #285AEB 90%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(214, 36, 159, 0.24);
}
.instagram-svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}
.contact-card h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.contact-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}
.contact-link {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
  margin-bottom: 0.3rem;
}
.contact-link:hover { color: var(--white); text-decoration: underline; }
.contact-location-link {
  font-size: 0.98rem;
  line-height: 1.7;
  text-decoration: none;
  margin-bottom: 0;
}
.contact-location-link strong {
  color: inherit;
}
.contact-card-link:hover .contact-location-link,
.contact-card-link:hover .contact-location-link strong {
  color: var(--white);
  text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #090909;
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem 2rem;
  text-align: center;
}
.footer-logo { display: flex; justify-content: center; margin-bottom: 1rem; }
.footer-logo-img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 24px rgba(245,197,24,0.3);
}
.footer-brand {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(245,197,24,0.4);
}
.footer-tagline {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin: 1.8rem 0;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  margin-top: 1rem;
}

/* ============================================================
   PARTICLES
   ============================================================ */
.particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.3;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .navbar { padding: 0.65rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,13,13,0.98); padding: 1.5rem 2rem; gap: 1.2rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .strip-item { padding: 0 1.2rem; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 9/16; }
}
@media (max-width: 600px) {
  .menu-tabs { gap: 0.5rem; }
  .tab-btn { padding: 0.48rem 0.9rem; font-size: 0.78rem; }
  .menu-photo-showcase { flex-direction: column; align-items: center; }
  .menu-showcase-img { width: 90vw; }
  .price-header { grid-template-columns: 1fr 60px 70px; font-size: 0.66rem; }
  .menu-item { grid-template-columns: 1fr 55px 65px; }
  .about-strip { flex-direction: column; gap: 1.2rem; }
  .strip-divider { display: none; }
  .hero-features { gap: 1rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
