/* 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;
}
/* Tabs */
.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;
}

/* CONTENT START */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

.news-banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
  height: 350px;
}

.news-banner > a,
.news-banner-content {
  display: flex;
  width: 100%;
  height: 100%;
}

.big-banner {
  flex: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  flex: 1;
  background: #0F361F;
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-text h2 {
  color: #fff;
  margin: 0 0 20px 0;
  font-size: 30px;
  line-height: 1.3;
}

.banner-meta {
  display: grid;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.banner-meta p {
  margin: 0;
}

.banner-meta .label {
  font-weight: 700;
  color: #FFA827;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  text-decoration: none;
  color: #FFA827;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.banner-cta img {
  width: 14px;
}

.banner-cta .txt {
  font-weight: bold;
  margin-left: 0;
}

.banner-text:hover .txt {
  text-decoration: underline;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 25px;
}

.news-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}

.news-item:hover {
  transform: translateY(-4px);
}

.news-item > a {
  display: block;
}

.news-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.news-content {
  padding: 20px;
}

.news-content h3 {
  margin: 0 0 14px;
  font-size: 18px;
  color: #222;
}

.news-content p {
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.news-list {
  margin: 0;
  padding-left: 18px;
  color: #333;
}

.news-list li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.news-content .icn,
.news-content .txt {
  display: inline-flex;
  align-items: center;
}

.news-content .icn img {
  width: 14px;
}

.news-content .txt {
  font-weight: bold;
  color: #0c3b2e;
  margin-left: 6px;
}

.news-item:hover .txt {
  text-decoration: underline;
}

.news-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  text-decoration: none;
}

.news-cta .icn {
  color: #FF8A00;
  font-size: 14px;
}

.news-cta .txt {
  margin-left: 0;
}

@media (max-width: 768px) {
  .banner-text {
    width: 100%;
    position: relative;
  }
  .banner-text h2 {
    font-size: 24px;
  }
}
