/* CONTENT START */
.menu-page {
  background: #f9f9f9;
  font-family: 'Inter', sans-serif;
  padding-bottom: 60px;
}

/* Banner */
.menu-banner {
  background-image: url('/VNT-Restaurant/public/images/background/header-bg.jpg');
  color: white;
  padding: 60px 0 30px;
}

.menu-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 40px;
}

.menu-banner-text h1 {
  color: #FFA827;
  font-family: 'Tilt Warp', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.menu-banner-text p {
  color: #D9D9D9;
  font-family: 'PlusJaS-Medium', 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 140%;
  opacity: 0.9;
  flex-shrink: 0;
}

.menu-scroll-wrapper {
  position: sticky;
  top: 80px;
  background-color: #FFA726;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 250px;
  z-index: 900;
}

.menu-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  text-transform: uppercase;
}

.menu-scroll::-webkit-scrollbar {
  display: none;
}

.menu-scroll a {
  font-size: 13px;
  font-family: 'PlusJaS-SemiBold', 'Plus Jakarta Sans', sans-serif;
  color: #222222;
  text-decoration: none;
  padding: 14px 0;
  position: relative;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.menu-scroll a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #1B5E20;
  transition: width 0.2s ease;
}

.menu-scroll a:hover::after,
.menu-scroll a.active::after {
  width: 100%;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FFA726;
  border: none;
  color: #222;
  font-size: 12px;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  z-index: 3;
}

.scroll-btn.left { left: 210px; }
.scroll-btn.right { right: 210px; }

.scroll-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.fade-zone {
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.fade-zone.left {
  left: 0;
  background: linear-gradient(to right, rgba(255,167,38,1), rgba(255,167,38,0));
}
.fade-zone.right {
  right: 0;
  background: linear-gradient(to left, rgba(255,167,38,1), rgba(255,167,38,0));
}

.menu-scroll a.dimmed {
  opacity: 0.4;
}

.location-section {
  background-color: #f9f9f9;
  padding: 60px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1b1b1b;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  padding: 40px 60px;
  gap: 40px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.location-text {
  flex: 1;
}

.location-text h2 {
  font-size: 38px;
  line-height: 110%;
  font-family: 'Tilt Warp', sans-serif;
  font-weight: 800;
  color: #174A27;
  margin-top: 20px;
  margin-bottom: 20px;
}

.location-text p {
  color: #6B6B6B;
  font-size: 20px;
  margin-bottom: 16px;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.status .open {
  background: #2ECC71;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.status .time {
  font-size: 14px;
  color: #777;
}

.info-location {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.info-location > div {
  position: relative;
  text-align: center;
}

.info-location > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 35px;
  background-color: #ccc;
}

.info-location strong {
  font-size: 18px;
  color: #111;
}

.info-location small {
  font-size: 12px;
  color: #777;
}

.actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.actions button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 40px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #F2F4F3;
  color: #174A27;
}

.actions button i {
  font-size: 14px;
}

.actions button:hover {
  background: #174A27;
  color: #fff;
}

.actions button:hover i {
  color: #fff;
}

.actions .book {
  background:#F2F4F3 ;
  color: #174A27;
}

.actions .book:hover {
  background: #174A27;
  color: #fff;
}

.actions button:hover i {
  color: #fff;
}

.actions .map,
.actions .detail {
  background: #F2F4F3;
  color: #174A27;
}

.actions .map:hover,
.actions .detail:hover {
  background: #174A27;
  color: #fff;
}

.phone {
  color: #F39C12;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-image {
  flex-shrink: 0;
}

.location-image img {
  width: 320px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}
/* CONTENT START */

