/* ===============================================
   THE WANN – MENU PAGE (SYNC VIBE ABOUT)
   Dark • Gold • Premium • Luxury
   (Works with your current menu.html)
=============================================== */

/* ===== BASE ===== */
.menu-main{
  background: #000;
  color: #fff;
  min-height: 100vh;
  padding-bottom: 90px; /* chừa bottom-bar */
}

/* ===== HERO ===== */
.menu-hero{
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 70px;
  overflow: hidden;

  background:
    radial-gradient(circle at 30% 10%, rgba(212,175,55,.14), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.92)),
    url("../assets/images/hero-poster.jpg") center/cover no-repeat;
}

/* overlay để giống vibe about */
.menu-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.88)
  );
  pointer-events:none;
}

/* glow nhẹ */
.menu-hero::after{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(circle at 50% 20%, rgba(212,175,55,.12), transparent 60%);
  pointer-events:none;
}

.menu-hero > *{
  position: relative;
  z-index: 2;
}

.menu-hero h1{
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 7vw, 72px);
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-shadow: 0 0 28px rgba(212,175,55,.25);
}

.menu-hero p{
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 34px;
}

/* ===== CTA (2 buttons like ABOUT) ===== */
.menu-cta{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-btn{
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #fff;
  border: 2px solid #d4af37;
  background: transparent;
  transition: all .3s ease;
}

.menu-btn.primary{
  background: #d4af37;
  color: #000;
}

.menu-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212,175,55,.35);
}

/* ===== MENU SECTION ===== */
.menu-section{
  background: #1a1a1a;
  padding: 90px 20px 110px;
}

.menu-title{
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 16px;
}

.menu-desc{
  text-align: center;
  max-width: 880px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.8;
}

/* ===== GRID IMAGES ===== */
.menu-grid{
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* card */
.menu-item{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  border: 1px solid rgba(255,255,255,.10);
  transition: all .3s ease;
}

.menu-item a{
  display: block;
  width: 100%;
  height: 100%;
}

.menu-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transform: scale(1.02);
  filter: brightness(.92) contrast(1.06);
  transition: all .35s ease;
}

/* premium overlay */
.menu-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 20% 0%, rgba(212,175,55,.14), transparent 58%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events:none;
}

.menu-item:hover{
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 18px 55px rgba(212,175,55,.16);
}

.menu-item:hover img{
  transform: scale(1.07);
  filter: brightness(1) contrast(1.08);
}

.menu-item:hover::after{
  opacity: 1;
}

/* ===== ACTIVE NAV STYLE (optional) ===== */
.nav-list a.active{
  color: #d4af37;
}

.nav-list a.active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #d4af37;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px){
  .menu-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px){
  .menu-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .menu-section{
    padding: 70px 16px 110px;
  }
}

@media (max-width: 768px){
  .menu-cta{
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .menu-btn{
    width: min(360px, 92%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .menu-grid{
    grid-template-columns: 1fr;
  }
}
/* FORCE HEADER LIKE ABOUT (MENU PAGE) */
.site-header{
  background: rgba(0,0,0,0.85) !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}

.header-logo{
  display: none !important;
}

.nav-list a{
  color: rgba(255,255,255,0.85) !important;
}

.nav-list a:hover{
  color: #d4af37 !important;
}
/* MENU PAGE - make header same vibe as ABOUT (only on menu) */
body{
  background:#000;
}

.site-header{
  background: rgba(0,0,0,.55) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(255,255,255,.12) !important;
}

.header-logo{
  display: none !important; /* giống about */
}

.nav-list{
  gap: 16px !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
}

.nav-list a{
  font-size: 11px !important;
  letter-spacing: .18em !important;
  color: rgba(255,255,255,.82) !important;
  text-transform: uppercase;
}

.nav-list a:hover{
  color:#d4af37 !important;
}
/* FIX BRAND COLOR (THE WANN) - MENU ONLY */
.site-header .brand,
.site-header .brand *{
  color: #fff !important;
}

.site-header .brand-the{
  color: rgba(255,255,255,.75) !important;
}

.site-header .brand-wann{
  color: #d4af37 !important;
  text-shadow: 0 0 20px rgba(212,175,55,.45) !important;
}
/* FIX CTA BUTTON POSITION */
.menu-hero{
  padding: 110px 20px 60px !important;
}

.menu-cta{
  margin-top: 22px !important;
}

@media (max-width: 768px){
  .menu-btn{
    width: min(360px, 92%) !important;
  }
}
/* FIX CTA BUTTON ALIGN CENTER PERFECT */
.menu-cta{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.menu-btn{
  width: min(360px, 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
/* ICON FIXED => 2 NÚT KHÔNG LỆCH */
.menu-btn{
  position: relative;
  padding-left: 54px; /* chừa chỗ icon */
}

.menu-btn.primary::before{
  content: "📞";
}

.menu-btn:not(.primary)::before{
  content: "💬";
}

.menu-btn::before{
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  text-align: center;
  font-size: 18px;
}
/* ===============================
   MENU - BOTTOM BAR LIKE HOME
================================ */
.bottom-bar{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;

  display: flex;
  justify-content: space-around;
  align-items: center;

  background: rgba(0,0,0,0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-top: 1px solid rgba(255,255,255,0.12) !important;
  padding: 12px 10px;
}

.bottom-bar a,
.bottom-bar a:visited,
.bottom-bar a:active{
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bottom-bar a:hover{
  color: #d4af37 !important;
}

/* icon + text giống home */
.bottom-bar .icon{
  font-size: 14px;
  line-height: 1;
}
