/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:"Times New Roman", serif;
  background:#111;
  color:#fff;
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

/* ===== HEADER ===== */
.site-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 6%;
  background:#000;
  position:sticky;
  top:0;
  z-index:999;
}

.header-nav{
  display:flex;
  gap:22px;
}

.header-nav a{
  font-size:14px;
}

.header-nav a:hover,
.header-nav a.active{
  color:#d4af37;
}

/* ===== FOOTER ===== */
footer{
  background:#000;
  color:#aaa;
  text-align:center;
  padding:28px 10px;
}
/* ===== LANGUAGE FLAGS (GLOBAL SAFE) ===== */
.lang-switch img,
.language img,
.flag img{
  width: 26px;
  height: 18px;
  object-fit: cover;
  cursor: pointer;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0b0b;
  color: #eee;
  font-family: "Times New Roman", serif;
}

/* HEADER */
.site-header {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}

/* LANGUAGE */
.lang-switch {
  display: flex;
  gap: 10px;
}

.lang-switch img {
  width: 26px;
  height: 18px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
}

.lang-switch img:hover {
  opacity: 1;
}

/* MENU */
.main-nav {
  display: flex;
  gap: 26px;
}

.main-nav a {
  color: #f0c040;
  text-decoration: none;
  font-size: 15px;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  border-bottom: 1px solid #f0c040;
}
.lang a {
  color: #ccc;
  margin-left: 10px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.25s ease;
}

.lang a.active {
  color: #fff;
  font-weight: 700;
  transform: scale(1.1);
}
html.lang-loading body {
  opacity: 0;
}

body {
  transition: opacity 0.25s ease;
}
html.lang-loading body {
  visibility: hidden;
}
/* ABOUT – text readability */
.content-text p {
  line-height: 1.85;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
  color: #444;
}

.content-text h2 {
  margin-bottom: 18px;
  letter-spacing: 0.6px;
}
.content-section {
  padding: 70px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.content-section:last-child {
  border-bottom: none;
}
.content-image img {
  border-radius: 6px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .content-section {
    padding: 50px 0;
  }

  .content-text h2 {
    font-size: 22px;
  }

  .content-text p {
    font-size: 15px;
  }
}
.content-text h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #111;
  margin-top: 10px;
}
/* ===== MENU STYLE – CHIYODA FEEL ===== */

.menu-page {
  background: #000;
  padding: 120px 0 80px;
}

.menu-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.menu-group {
  margin-bottom: 60px;
}

.menu-group h3 {
  text-align: center;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: #fff;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}

.menu-item span:first-child {
  font-size: 16px;
  color: #f5f5f5;
}

.menu-item span:last-child {
  font-size: 15px;
  color: #c9a24d;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-container {
    max-width: 100%;
  }

  .menu-group h3 {
    font-size: 18px;
  }

  .menu-item span:first-child {
    font-size: 15px;
  }
}
h3 {
  color: #b30000 !important;
}

h4 {
  color: #c9a24d !important;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-item::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid rgba(255, 215, 0, 0.18);
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

/* Hover */
.menu-item:hover {
  transform: translateX(4px);
}

.menu-item:hover::after {
  border-color: rgba(255, 215, 0, 0.6);
}

.menu-item:hover .item-name {
  color: #fff;
}

.menu-item:hover .item-price {
  color: #ffd700;
}
.menu-item {
  opacity: 0;
  transform: translateY(8px);
}

.menu-item.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .menu-item {
    transform: none !important;
  }
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.item-name {
  white-space: nowrap;
}

.item-price {
  white-space: nowrap;
  color: #d4af37; /* vàng gold */
  font-weight: 500;
}

.item-line {
  flex: 1;
  border-bottom: 1px dotted rgba(212, 175, 55, 0.35);
  transform: translateY(2px);
}
.menu-item:hover {
  transform: translateX(6px);
}

.menu-item:hover .item-line {
  border-bottom-color: rgba(212, 175, 55, 0.8);
}

.menu-item:hover .item-name {
  color: #ffffff;
}
.menu-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 14px;
  padding: 12px 0;
}

.menu-name {
  color: #fff;
  white-space: nowrap;
}

.menu-price {
  color: #d4af37;
  white-space: nowrap;
  font-weight: 500;
}

.menu-line {
  border-bottom: 1px dotted rgba(212, 175, 55, 0.4);
  transform: translateY(2px);
}
.hero {
  min-height: 50vh;
  height: auto;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-page {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  display: block;
}
.hero-content {
  padding-top: 0;
  padding-bottom: 0;
}
.hero-content {
  padding-top: 0;
  padding-bottom: 0;
}
.hero {
  min-height: 85vh;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero {
  min-height: 85vh;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-booking {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.booking-section {
  padding: 80px 0;
  background: #000;
}

.booking-container {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.booking-section {
  background: #000;
  padding: 80px 10%;
  color: #fff;
}

.booking-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.booking-info {
  width: 45%;
}

.booking-info h2 {
  color: #e50914;
  font-size: 28px;
  margin-bottom: 30px;
}

.booking-info p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #ccc;
}

.booking-form {
  width: 50%;
}

.booking-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-form input,
.booking-form textarea {
  background: transparent;
  border: 1px solid #444;
  padding: 14px;
  color: #fff;
  font-size: 14px;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #e50914;
}

.booking-form textarea {
  min-height: 120px;
  resize: none;
}

.booking-form button {
  background: #e50914;
  color: #fff;
  padding: 15px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

.booking-form button:hover {
  background: #b80000;
}
@media (max-width: 768px) {
  .booking-container {
    flex-direction: column;
  }

  .booking-info,
  .booking-form {
    width: 100%;
  }
}