/* ===============================
   RESET & VARIABLES
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9a15a;
  --gold-light: #d4af37;
  --bg-dark: #0d0d0d;
  --bg-card: #0d0d0d;
  --text-light: #e0e0e0;
  --text-muted: #9a9a9a;
  --border: rgba(201,161,90,0.25);
  --shadow: 0 10px 40px rgba(0,0,0,0.6);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* ===============================
   LAYOUT
================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 20px 20px;
}

/* ===============================
   SECTION CENTERING
================================ */

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .divider {
  margin: 0 auto;
}

.history-section .history-content,
.menu-section .menu-content,
.location-section .locations-grid,
.contact-section .contact-content {
  max-width: 1000px;
  margin: 0 auto;
}

.history-section {
  background-color: #ffffff;
  color: #111111;
  text-align: left;
}

.history-section .history-content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.history-section .section-header {
  text-align: left;
  margin-bottom: 16px;
}

.history-section .section-header .divider {
  margin: 0;
}

.history-section .about-location {
  text-align: left;
}

.history-section .history-text h3,
.history-section .section-header h2 {
  color: #111111;
}

.history-section .history-text p {
  color: #333333;
}

.history-section,
.menu-section,
.features-section,
.location-section,
.contact-section {
  text-align: center;
}

.menu-section {
  background-color: #ffffff;
  color: #111111;
  padding: 50px 6vw;
}

.menu-section .vibe-header h2 {
  color: #111111;
}

.menu-section .all-locations-btn {
  color: #111111;
  border-color: rgba(0, 0, 0, 0.4);
}

.menu-section .all-locations-btn:hover {
  background-color: #111111;
  color: #ffffff;
}

.history-section .history-text,
.menu-section .menu-category,
.location-section .location-detail,
.contact-section .contact-info,
.contact-section .contact-form {
  text-align: left;
}

.menu-section .menu-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.menu-section .container {
  max-width: none;
  padding: 0;
}

.menu-section .menu-content {
  max-width: none;
}

/* Contact page form inputs centered */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.contact-form .form-group {
  width: 100%;
  max-width: 420px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  text-align: center;
}

/* ===============================
   NAVBAR (重点修复区)
================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar-dark {
  background: rgba(13,13,13,0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
    max-width: none;
  height: 64px;                 /* 🔥 关键：锁死高度 */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-left: 48px;
  padding-right: 20px; /* ✅ 右边贴近 */

}

.logo h1 {
  font-size: 22px;
  letter-spacing: 6px;
  font-weight: 300;
  margin: 0;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo .tagline {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
  margin-left: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 30px;
}

/* Language Toggle */


.lang-toggle  {
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}


.hamburger {
  display: none;
}
/* ===============================
   HERO
================================ */

.hero {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  padding-left: 6vw;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(13,13,13,0.6),
    rgba(13,13,13,0.85)
  ),
  radial-gradient(circle at 50% 40%, rgba(201,161,90,0.25), transparent 60%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.hero h2 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.4;
}

/* Buttons */

.btn {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-primary,
.btn-secondary {
  background: transparent;
  color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover,
.lang-toggle:hover {
  background-color: #fff;
  color: #000;
}

/* ===============================
   HOURS / LOCATION
================================ */

.hours-section {
  background: #111;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 30px;
}

.location-card {
  background: var(--bg-card);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(201,161,90,0.3);
}

.location-card h3 {
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 16px;
}


/* 整个区域 */
.vibe-section {
  background-color: #000;
  padding: 50px 6vw;
  color: #fff;
}

/* 顶部标题区域 */
.vibe-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

/* 大标题 */
.vibe-header h2 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 4px;
  margin: 0;
}

/* 右上角按钮 */
.all-locations-btn {
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.all-locations-btn:hover {
  background-color: #fff;
  color: #000;
}

/* ===============================
   vibe CARDS
================================ */

/* 卡片容器 */
.vibe-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 单张卡片 */
.vibe-card {
  position: relative;
  overflow: hidden;
}

/* 图片 */
.vibe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: transform 0.6s ease;
}

/* hover 放大 */
.vibe-card:hover img {
  transform: scale(1.06);
}

/* 底部文字 */
.vibe-info {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 24px;
}

.vibe-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

/* ===============================
   MENU FEATURES
================================ */

.menu-section .menu-category {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 12px;
  border-radius: 8px;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

.menu-section .menu-image {
  aspect-ratio: 1 / 1;
  height: auto;
  background-size: cover;
  background-position: center;
  transition: background-size 1.2s ease;
}

.menu-section .menu-category:hover .menu-image {
  background-size: 110%;
  animation: menu-image-pan 2.2s ease-in-out infinite;
}

@keyframes menu-image-pan {
  0% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 55% 45%;
  }
  100% {
    background-position: 50% 50%;
  }
}

.menu-section ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  text-align: center;
}

.menu-section li {
  justify-content: center;
}

.dish-price,
.price {
  display: none;
}

/* .menu-section .menu-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 13, 0.75);
  border-radius: 8px;
  z-index: 0;

    height: 160px;               👈 关键：统一高度 

} */

.menu-image {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 16px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.menu-image.cocktails {
  background-image: url('images/cocktail.jpg');
}

.menu-image.small-plates {
  background-image: url('images/salad.jpeg');
}

.menu-image.mains {
  background-image: url('images/main.jpg');
}

.menu-image.desserts {
  background-image: url('images/dessert.jpeg');
}

.menu-btn {
  margin-top: 32px;
  display: inline-block;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  padding-bottom: 24px;
}

.feature-image {
  height: 200px;
  background: linear-gradient(135deg,#222,#111);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--gold);
}

.feature-card h3 {
  margin: 20px 0 10px;
  color: var(--gold);
  font-weight: 300;
}

.feature-card p {
  padding: 0 20px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===============================
   FOOTER DESKTOP (ONE ROW)
================================ */

.footer {
  background: #000;
  padding: 60px 20px 30px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  grid-column: span 2;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  grid-column: span 2;
}

.footer-logo h3 {
  font-size: 28px;
  letter-spacing: 6px;
  font-weight: 300;
  margin-bottom: 4px;
}

.footer-logo p {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #777;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 24px;
  height: 24px;

  /* 把黑色 SVG 变成白色 */
  filter: brightness(0) invert(1);

  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: row;
  gap: 80px;
  grid-column: unset;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--text-light);
  font-size: 14px;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-item img {
  width: 16px;
  height: 16px;

  /* 让 SVG 变成白色 */
  filter: brightness(0) invert(1);
}

.contact-item:hover {
  opacity: 1;
  transform: translateX(2px); /* 很轻的高级动效 */
}

/* hover 高级一点，但不浮夸 */
.footer-social a:hover img {
  opacity: 1;
  transform: translateY(-1px);
}
/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .nav-item-full {
    display: none;
  }

  .nav-item-menu {
    display: list-item;
  }

  .logo .tagline {
    display: none;
  }

  .hero h2 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .vibe-header h2 {
    font-size: 24px;
  }

  .vibe-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-section .menu-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {

  /* 1️⃣ 减少左右黑边 */
  section {
    padding: 30px 8px;
  }

  .container {
    padding: 0 8px;
  }

  /* 2️⃣ Menu 改成单列 / 双列 */
  /* .menu-section .menu-categories {
    grid-template-columns: 1fr;
    gap: 32px;
  } */
   .menu-section .menu-categories {
  grid-template-columns: repeat(2, 1fr);
}

  /* 3️⃣ 每个分类卡片更“铺开” */
  .menu-section .menu-category {
    min-height: auto;
    padding: 10px;
  }

  /* 4️⃣ 图片更宽，不要瘦高 */
  .menu-section .menu-category::before {
    border-radius: 12px;
  }

  /* 5️⃣ 标题和文字更适合手机 */
  .menu-section h3 {
    font-size: 20px;
    margin-top: 12px;
  }

  .menu-section ul {
    font-size: 15px;
    line-height: 1.7;
  }

  .history-section .history-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}

/* ===============================
   MENU PAGE LAYOUT (menu.html)
================================ */

.menu-page-section {
  padding: 30px 20px;
  background-color: #ffffff;
  min-height: 100vh;
}

.menu-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}

/* 左侧分类菜单 */
.menu-sidebar {
  position: sticky;
  top: 80px;
  height: fit-content;
  background-color: #ffffff;
}

.menu-sidebar h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--gold);
  border-bottom: 2px solid var(--border);
  padding-bottom: 12px;
  letter-spacing: 4px;
  font-weight: 300;
}

.category-list {
  list-style: none;
}

.category-select {
  display: none;
}

.custom-select {
  display: none;
}

.category-link {
  display: block;
  padding: 12px 16px;
  color: #333333;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
}

.category-link:hover,
.category-link.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background-color: rgba(201, 161, 90, 0.1);
}

/* 右侧菜品展示 */
.menu-content {
  flex: 1;
}

.menu-category-section {
  margin-bottom: 80px;
}

.menu-category-section h2 {
  font-size: 28px;
  margin-bottom: 32px;
  color: #111111;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 16px;
  letter-spacing: 4px;
  font-weight: 300;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.menu-item {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.menu-item:hover .menu-image {
  transform: scale(1.05);
}

.menu-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--text-muted);
  position: relative;
  transition: transform 0.4s ease;
}

.menu-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}



.menu-item h4 {
  font-size: 18px;
  padding: 12px 16px 4px;
  letter-spacing: 2px;
  color: #111111;
  margin: 0;
  line-height: 1.4;
  background-color: #ffffff;
  font-weight: 300;
}

.menu-item .price {
  font-size: 18px;
  color: var(--gold);
  padding: 4px 16px 12px;
  font-weight: 500;
  margin: 0;
  background-color: #ffffff;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .menu-container {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .menu-sidebar {
    top: 64px;
  }
}

@media (max-width: 768px) {
  .menu-container {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    position: sticky;
    top: 64px;
    background-color: var(--bg-dark);
    z-index: 100;
    padding: 16px 0;
    margin-bottom: 20px;
  }

  .menu-sidebar h2 {
    display: none;
  }

  .category-list {
    display: none;
  }

  .category-select {
    display: none;
  }

  .custom-select {
    display: block;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .menu-category-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .menu-item {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    gap: unset;
  }

  .menu-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 8px 8px 0 0;
  }

  .menu-item h4,
  .menu-item .price {
    padding: 8px 12px;
    font-size: 14px;
  }

  .menu-item h4 {
    align-self: unset;
    font-size: 14px;
    padding: 8px 12px 4px;
  }

  .menu-item .price {
    align-self: unset;
    font-size: 14px;
    padding: 4px 12px 8px;
  }
}

/* ===============================
   CUSTOM SELECT (HIGH-END)
================================ */

.custom-select {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.custom-select-trigger {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text-light);
  font-size: 16px;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-select-trigger:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201,161,90,0.15);
}

.custom-select.open .custom-select-trigger {
  border-color: var(--gold);
}

/* Dropdown */
.custom-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #121212;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  list-style: none;
  z-index: 999;
  display: none;
}

.custom-select.open .custom-options {
  display: block;
}

/* Options */
.custom-options li {
  padding: 12px 18px;
  font-size: 15px;
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.custom-options li:hover {
  background: rgba(201,161,90,0.12);
  color: var(--gold);
}

.custom-options li.active {
  color: var(--gold);
  background: rgba(201,161,90,0.18);
}

/* ===============================
   NAVBAR MOBILE
================================ */

@media (max-width: 768px) {
  .navbar .container {
    padding-left: 16px;
    padding-right: 16px;
    height: 56px;
  }

  .logo h1 {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .nav-menu {
    gap: 20px;
    margin-left: 20px;
  }

  .nav-menu a {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .nav-actions {
    margin-right: 16px;
    gap: 8px;
  }

  .nav-actions a,
  .nav-actions button {
    font-size: 11px;
    padding: 10px 14px;
    letter-spacing: 0.5px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
  }
}

/* ===============================
   FOOTER MOBILE
================================ */

@media (max-width: 768px) {
  .footer {
    padding: 40px 16px 20px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
  }

  .footer-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-contact {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-location {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-hours {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-logo h3 {
    font-size: 20px;
    letter-spacing: 4px;
  }

  .footer-logo p {
    font-size: 10px;
  }

  .footer-social {
    gap: 16px;
    margin-top: 12px;
  }

  .footer-social img {
    width: 16px;
    height: 16px;
  }

  .footer-location h4,
  .footer-contact h4,
  .footer-hours h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-location p {
    font-size: 13px;
    margin: 8px 0;
  }

  .contact-item {
    font-size: 13px;
  }

  .footer-hours p {
    font-size: 13px;
    margin: 6px 0;
  }

  .footer-bottom {
    margin-top: 30px;
    font-size: 11px;
  }
}
