/* MENU PAGE EXTRA STYLES */

/* Fixed navbar for interior pages */
.navbar.scrolled .nav-link { color: var(--text); }

/* Page Hero (shorter) */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,13,13,0.72) 0%, rgba(141,23,26,0.45) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 1rem 1.5rem;
  padding-top: 5rem;
}


/* Full menu styles */
.full-menu { background: var(--white); }
.menu-category { margin-bottom: 3.5rem; }

.cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream);
}
.cat-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.cat-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.dish-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: visible;
}
.dish-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transition: var(--transition);
  border-radius: 0 2px 2px 0;
}
.dish-card:hover { border-color: rgba(141,23,26,0.2); box-shadow: var(--shadow-sm); transform: translateX(2px); }
.dish-card:hover::before { transform: scaleY(1); }
.dish-card.featured { border-color: rgba(141,23,26,0.25); background: #fff8f8; }

.dish-badge {
  position: absolute;
  top: -10px; right: 1.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  background: #d4edda;
  color: #155724;
  border: 1px solid var(--border);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.dish-badge.non-veg { background: rgba(141,23,26,0.12); color: var(--red); }

.dish-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
}
.dish-info p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.dish-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .menu-intro-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .dishes-grid { grid-template-columns: 1fr; }
  .menu-intro-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .menu-intro-grid { grid-template-columns: 1fr; }
}
