/* ============================================================
   MENU PAGE — PROFESSIONAL RESTAURANT STYLE
   ============================================================ */

body.menu-page {
  background: var(--ocean-deep);
}

/* ---- MENU HERO ---- */
.menu-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(14,165,233,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(13,148,136,0.14) 0%, transparent 55%),
    linear-gradient(160deg, #030d1a 0%, #0c2340 60%, #030d1a 100%);
}

.menu-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,13,26,0.2) 0%, rgba(3,13,26,0.65) 100%);
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 3.5rem;
}

.menu-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  font-style: italic;
  text-shadow: 0 3px 16px rgba(0,0,0,0.5);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.menu-hero-content p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(56,189,248,0.85);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
}

.menu-hero-waves {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.menu-hero-waves svg {
  width: 100%;
  height: 50px;
}

/* ---- MENU MAIN ---- */
.menu-main {
  background: #030d1a;
  padding: 2.5rem 1.5rem 5rem;
}

/* ---- MENU SECTION ---- */
.menu-section {
  max-width: 860px;
  margin: 0 auto 4rem;
}

.menu-section:last-of-type {
  margin-bottom: 1.5rem;
}

/* ---- SECTION TITLE ---- */
.menu-section-title {
  margin-bottom: 2rem;
}

.menu-section-title h2 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.menu-section-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(14,165,233,0.6), rgba(14,165,233,0.1), transparent);
  width: 100%;
}

/* ---- MENU TABLE ---- */
.menu-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ---- MENU ROW ---- */
.menu-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s ease;
}

.menu-row:last-child {
  border-bottom: none;
}

.menu-row:hover {
  background: rgba(14,165,233,0.04);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 6px;
}

/* ---- ITEM NAME ---- */
.menu-row-name {
  flex-shrink: 0;
  max-width: 65%;
}

.item-name {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.item-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  font-style: italic;
  margin-top: 0.15rem;
  line-height: 1.2;
}

/* ---- DOTS ---- */
.menu-row-dots {
  flex: 1;
  min-width: 20px;
  border-bottom: 1px dotted rgba(255,255,255,0.15);
  margin-bottom: 0.25rem;
  align-self: flex-end;
}

/* ---- PRICE ---- */
.menu-row-price {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ocean-blue);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ---- BACK BUTTON ---- */
.menu-back-wrap {
  max-width: 860px;
  margin: 3rem auto 0;
  text-align: left;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.btn-back svg {
  width: 15px;
  height: 15px;
}

.btn-back:hover {
  border-color: rgba(14,165,233,0.4);
  color: var(--ocean-light);
  background: rgba(14,165,233,0.06);
}

/* ---- NAVBAR ON MENU PAGE ---- */
.navbar-menu {
  background: rgba(3,13,26,0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 16px rgba(0,0,0,0.4);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .menu-main {
    padding: 2rem 1rem 4rem;
  }

  .menu-section {
    margin-bottom: 3rem;
  }

  .item-name {
    font-size: 0.88rem;
  }

  .menu-row-price {
    font-size: 0.88rem;
  }

  .menu-row-name {
    max-width: 58%;
  }

  .menu-row:hover {
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
