/* =====================
   FULL-SCREEN MOBILE NAV
   ===================== */
.mobile-menu-btn {
  display: none;
}

@media (max-width: 991px) {
  .mobile-menu-btn {
    display: flex !important;
  }
  #mainNavbar {
    display: none !important;
  }
}

.mobile-fullscreen-nav {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  visibility: hidden;
}

.mfn-bg {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-fullscreen-nav.open {
  pointer-events: all;
  visibility: visible;
}

.mobile-fullscreen-nav.open .mfn-bg {
  opacity: 0.97;
}

/* Header */
.mfn-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(197, 168, 107, 0.15);
  opacity: 0;
  transform: translateY(-16px);
  transition:
    opacity 0.4s ease 0.15s,
    transform 0.4s ease 0.15s;
}

.mobile-fullscreen-nav.open .mfn-header {
  opacity: 1;
  transform: translateY(0);
}

.mfn-logo {
  height: 52px;
  width: auto;
}

.mfn-close {
  background: transparent;
  border: 1px solid rgba(197, 168, 107, 0.4);
  color: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s;
  line-height: 1;
}

.mfn-close:hover {
  background: rgba(197, 168, 107, 0.12);
  border-color: var(--gold);
}

/* Nav links */
.mfn-links {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  gap: 0;
}

.mfn-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease;
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    color 0.25s ease;
}

.mfn-link:last-child {
  border-bottom: none;
}

.mobile-fullscreen-nav.open .mfn-link:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.mobile-fullscreen-nav.open .mfn-link:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.25s;
}
.mobile-fullscreen-nav.open .mfn-link:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}
.mobile-fullscreen-nav.open .mfn-link:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.35s;
}
.mobile-fullscreen-nav.open .mfn-link:nth-child(5) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}
.mobile-fullscreen-nav.open .mfn-link:nth-child(6) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.45s;
}

.mfn-link:hover,
.mfn-link--active {
  color: var(--gold) !important;
}

.mfn-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: rgba(197, 168, 107, 0.4);
  font-weight: 400;
  min-width: 24px;
}

.mfn-label {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.3rem, 5vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex: 1;
  transition: letter-spacing 0.3s ease;
}

.mfn-link:hover .mfn-label {
  letter-spacing: 0.12em;
}

.mfn-link .bi-arrow-right {
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  color: var(--gold);
}

.mfn-link:hover .bi-arrow-right,
.mfn-link--active .bi-arrow-right {
  opacity: 1;
  transform: translateX(0);
}

/* Footer */
.mfn-footer {
  position: relative;
  z-index: 2;
  padding: 24px 28px;
  border-top: 1px solid rgba(197, 168, 107, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s ease 0.45s,
    transform 0.4s ease 0.45s;
}

.mobile-fullscreen-nav.open .mfn-footer {
  opacity: 1;
  transform: translateY(0);
}

.mfn-social {
  display: flex;
  gap: 12px;
}

.mfn-social a {
  color: var(--gold);
  border: 1px solid rgba(197, 168, 107, 0.4);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s;
}

.mfn-social a:hover {
  background: rgba(197, 168, 107, 0.15);
}

.mfn-order-btn {
  width: 100%;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mfn-order-btn img {
  height: 22px;
  object-fit: contain;
}

.mfn-address {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

/* =====================
   MENU HERO — slideshow
   ===================== */
.menu-hero {
  height: 90vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mh-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  animation: mhZoom 8s ease forwards;
}

.mh-slide.active {
  opacity: 1;
}

@keyframes mhZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

.mh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.mh-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  animation: heroFadeUp 1.1s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mh-eyebrow {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mh-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1;
}

.mh-sub {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.mh-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll arrow — reuse base.css classes */
.scroll-arrow-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.fancy-arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0;
  animation: arrowFade 1.8s infinite;
}

.fancy-arrow:nth-child(1) {
  animation-delay: 0s;
}
.fancy-arrow:nth-child(2) {
  animation-delay: 0.25s;
}
.fancy-arrow:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes arrowFade {
  0% {
    opacity: 0;
    transform: rotate(45deg) translateY(-4px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translateY(4px);
  }
}

/* =====================
   MENU LAYOUT — sidebar + content
   ===================== */
.menu-body {
  background: #000;
}

.menu-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sidebar */
.menu-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  padding: 48px 0;
}

.msb-inner {
  border-right: 1px solid rgba(197, 168, 107, 0.15);
  padding-right: 28px;
}

.msb-label {
  font-family: "Montserrat", sans-serif;
  color: rgba(197, 168, 107, 0.4);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.msb-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 36px;
}

.msb-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 9px 0 9px 14px;
  border-left: 2px solid transparent;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.msb-link:last-child {
  border-bottom: none;
}

.msb-link:hover,
.msb-link.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(197, 168, 107, 0.04);
}

/* Content */
.menu-content {
  flex: 1;
  padding: 60px 0 60px 52px;
  min-width: 0;
}

/* =====================
   MENU SECTIONS
   ===================== */
.menu-section {
  margin-bottom: 90px;
}

.msec-header {
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(197, 168, 107, 0.18);
}

.msec-header h2 {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-top: 6px;
}

.msec-header p {
  color: rgba(255, 255, 255, 0.38);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin: 0;
}

/* Feature image row */
.msec-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
  height: 240px;
}

.msec-feature-img {
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(197, 168, 107, 0.12);
}

.msec-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.msec-feature-img:hover img {
  transform: scale(1.06);
}

/* Split layout */
.msec-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  align-items: start;
}

.msec-split--reverse {
  grid-template-columns: 1.5fr 1fr;
}

.msec-split--reverse .msec-split-img {
  order: 2;
}
.msec-split--reverse .msec-split-items {
  order: 1;
}

.msec-split-img {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 100px;
}

.msec-split-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(197, 168, 107, 0.12);
  transition: transform 0.4s ease;
}

.msec-split-img img:hover {
  transform: scale(1.025);
}

/* Menu items grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(197, 168, 107, 0.08);
  border: 1px solid rgba(197, 168, 107, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.mi-card {
  background: #080808;
  padding: 22px 24px;
  transition: background 0.25s ease;
  position: relative;
}

.mi-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 60%;
  background: var(--gold);
  transition: transform 0.3s ease;
}

.mi-card:hover {
  background: #0f0f0f;
}

.mi-card:hover::before {
  transform: translateY(-50%) scaleY(1);
}

.mi-card--lg {
  padding: 22px 26px;
}

.mi-name {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.mi-desc {
  color: rgba(255, 255, 255, 0.45);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0;
}

/* Mosaic */
.msec-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
  margin-top: 24px;
  border-radius: 3px;
  overflow: hidden;
}

.mm-big {
  grid-row: span 2;
  overflow: hidden;
}
.mm-small {
  overflow: hidden;
}

.msec-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.msec-mosaic img:hover {
  transform: scale(1.04);
}

/* =====================
   FULL-BLEED DIVIDER IMAGE
   ===================== */
.menu-divider-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -20px 80px;
}

.mdi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.mdi-text {
  position: relative;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  color: var(--gold);
  font-size: clamp(0.7rem, 2.5vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin: 0;
}

/* =====================
   FULL MENU PAGES
   ===================== */
.menu-pages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.menu-page-card {
  border: 1px solid rgba(197, 168, 107, 0.18);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.menu-page-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.mpc-img {
  overflow: hidden;
}

.mpc-img img {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}

.menu-page-card:hover .mpc-img img {
  transform: scale(1.03);
}

.mpc-label {
  background: #080808;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 14px;
  text-align: center;
}

/* =====================
   MENU PAGE LIGHTBOX
   ===================== */
.menu-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.menu-lightbox.active {
  display: flex;
}

.menu-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(197, 168, 107, 0.25);
  border-radius: 3px;
}

.mlb-close,
.mlb-prev,
.mlb-next {
  position: absolute;
  background: rgba(197, 168, 107, 0.12);
  border: 1px solid rgba(197, 168, 107, 0.35);
  color: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.mlb-close:hover,
.mlb-prev:hover,
.mlb-next:hover {
  background: rgba(197, 168, 107, 0.3);
}

.mlb-close {
  top: 20px;
  right: 20px;
}
.mlb-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.mlb-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* =====================
   CTA BANNER
   ===================== */
.menu-cta {
  position: relative;
  padding: 110px 20px;
  background: url("../assets/images/IMG_3568.jpg") center / cover no-repeat
    fixed;
}

.menu-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.menu-cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.menu-cta-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-cta-content p {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
  .menu-sidebar {
    display: none;
  }
  .menu-content {
    padding: 40px 0;
  }
  .menu-layout {
    padding: 0 16px;
  }

  .msec-split,
  .msec-split--reverse {
    grid-template-columns: 1fr;
  }
  .msec-split--reverse .msec-split-img,
  .msec-split--reverse .msec-split-items {
    order: unset;
  }
  .msec-split-img {
    position: static;
    flex-direction: row;
  }
  .msec-split-img img {
    height: 160px;
  }
  .menu-divider-img {
    background-attachment: scroll;
    margin: 0 -16px 60px;
  }
}

@media (max-width: 768px) {
  .menu-pages-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .msec-feature-row {
    grid-template-columns: 1fr 1fr;
    height: 180px;
  }
  .msec-feature-row .msec-feature-img:last-child {
    display: none;
  }
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  .msec-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
  }
}

@media (max-width: 576px) {
  .mh-title {
    letter-spacing: 0.04em;
  }
  .msec-split-img {
    flex-direction: column;
  }
  .msec-split-img img {
    height: 200px;
  }
  .msec-feature-row {
    grid-template-columns: 1fr;
    height: auto;
  }
  .msec-feature-img {
    height: 180px;
  }
  .msec-feature-row .msec-feature-img:last-child {
    display: block;
  }
}
