/* ==== RESET & FONTS ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: transparent;
  
}
/* ==== NAVBAR ==== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  padding: 10px 0;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  height: 80px;
}

.nav-left, .nav-right {
  display: flex;
  list-style: none;
  gap: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.nav-left { right: 50%; margin-right: 60px; }
.nav-right { left: 50%; margin-left: 60px; }

.nav-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.navbar.shrink .nav-logo img {
  width: 120px;   /* từ 150px thu xuống 120px */
}
.nav-container {
  height: 95px;
}
/* LOGO BAN ĐẦU */
#main-logo {
  width: 150px;
  height: auto;
  transition: width 0.3s ease;
}

/* KHI CUỘN XUỐNG — CHỈ NHỎ ĐI 1 TÍ */
.navbar.shrink #main-logo {
  width: 130px;  /* từ 150px → 140px */
}
.nav-container {
  height: 110px;
}
.nav-left li a, .nav-right li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: clamp(12px, 1.2vw, 18px);
}

/* ==== HERO SECTION ==== */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-text .button:hover {
  background: #5a189a;
}

@keyframes subtleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* ==== ABOUT SECTION ==== */
.about-section,
.about-section *,
.about-box {
  border-radius: 0 !important;
}
.about-box {
  max-width: 800px;
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 8px;
}

/* ==== TEXT ON BACKGROUND ==== */
.text-on-bg {
  background: rgb(0, 0, 0);
  padding: 140px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-on-bg {
  position: relative;
  z-index: 2;
}
.text-content-wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.text-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 40px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.text-box h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  color: #5c4437;
}

.text-box h3 {
  font-size: 20px;
  color: #222;
  margin: 10px 0;
}

.text-box p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

.side-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==== GALLERY 4 ẢNH ==== */
.tight-gallery {
  margin: 0;
  padding: 0;
  background: black; /* nếu muốn nền tối cho giống Mido */
}

.grid-row {
  display: flex;
  width: 100vw; /* toàn bộ chiều ngang màn hình */
  margin: 0 auto;
  padding: 0;
}

.grid-row a {
  flex: 1;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}

.grid-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.grid-row a:hover img {
  transform: scale(1.08);
}
/* ==== RESERVATION SECTION ==== */
.reservation-section {
  background-color: #111;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.reservation-container {
  max-width: 1000px;
  margin: auto;
}

.reservation-title {
  font-family: 'Dancing Script', cursive;
  font-size: 48px;
  color: #ffae42;
  margin-bottom: 10px;
}

.reservation-subtitle {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.reservation-description {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
}

.reservation-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.form-left, .form-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reservation-grid input,
.reservation-grid textarea {
  padding: 14px;
  border-radius: 5px;
  border: none;
  background: #222;
  color: white;
  font-size: 16px;
}

.submit-btn {
  margin-top: 30px;
  background: none;
  color: white;
  border: 2px solid white;
  padding: 12px 28px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: white;
  color: black;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .nav-left, .nav-right {
    display: none;
  }
  .hero-text h1 {
    font-size: 48px;
  }
  .hero-text p {
    font-size: 22px;
  }
  .grid-row {
    flex-direction: column;
  }
  .text-content-wrapper {
    flex-direction: column;
  }
  .form-left, .form-right {
    flex: 1 1 100%;
  }
}
.footer-extended {
  background: #000;
  color: white;
  padding: 40px 20px 10px;   /* ↓ giảm padding dưới còn 10px */
  font-family: 'Poppins', sans-serif;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  text-align: left;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
  letter-spacing: 1px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
}

/* Dòng "Viet Delight © 2025 | DESIGN BY ANHDUNG" */
.footer-copy {
  text-align: center;
  margin-top: 0;              /* ↓ bỏ khoảng trống phía trên */
  font-size: 12px;
  color: white;
  background-color: #1a1a1a;  /* hoặc #000 nếu muốn trùng hẳn */
  padding: 10px 20px;
  border-radius: 0;           /* bỏ bo góc để là một thanh ngang */
  border-top: 1px solid #444; /* viền mỏng phía trên (optional) */
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);     /* 👈 Đen mờ */
    backdrop-filter: blur(10px);        /* 👈 Làm mờ nền phía sau */
    -webkit-backdrop-filter: blur(10px); /* 👈 Cho Safari hỗ trợ */
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 25px;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* viền trên nhẹ */
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    padding: 12px 0;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 769px) {
  .menu-toggle,
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
}/* === NAVBAR MOBILE === */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-container.responsive .nav-left,
  .nav-container.responsive .nav-right {
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 20px;
    gap: 15px;
    z-index: 999;
  }

  .nav-left li, .nav-right li {
    text-align: center;
  }
}


body.menu-page {
  background: url('images/menu-background.jpg') no-repeat center center fixed;
  background-size: cover;
  animation: zoomEffect 20s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
  0% { background-size: 100%; }
  100% { background-size: 105%; }
}.menu-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.menu-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: subtleZoom 15s ease-in-out infinite alternate;
  filter: brightness(35%);
}.menu-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.menu-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: subtleZoom 8s ease-in-out infinite alternate;
}

.menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* lớp phủ đen mờ 50% */
}
/* ===== MOBILE MENU CHỈ HIỆN TRÊN ĐIỆN THOẠI ===== */
.mobile-menu {
  position: fixed;
  top: 100px; /* CHỈNH DÒNG NÀY: không cho nó chiếm từ đầu màn hình */
  left: 0;
  height: calc(100vh - 80px); /* CHỈNH DÒNG NÀY: trừ phần cao của navbar/logo */
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.mobile-menu.show {
  transform: translateX(0);
}

.mobile-menu li {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
  list-style: none;
  margin: 10px 0;
}

.mobile-menu.show li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.show li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.show li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.show li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.show li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.show li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.show li:nth-child(6) { transition-delay: 0.6s; }

.mobile-menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
.mobile-menu.show {
  display: flex;
}

/* Hiển thị 3 gạch và ẩn menu cũ trên điện thoại */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1002;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
  }

  .nav-left,
  .nav-right {
    display: none;
  }
}

/* Ẩn menu-toggle ở desktop */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
.mobile-menu li {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.mobile-menu.show li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.show li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.show li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.show li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.show li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.show li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.show li:nth-child(6) { transition-delay: 0.6s; }
html, body {
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    align-items: center;
    margin-bottom: 30px;
  }

  .footer-column h3,
  .footer-column p,
  .footer-column a {
    text-align: center;
  }
}@media (max-width: 768px) {
  .social-icons {
    justify-content: center;
  }
}/* Header cho điện thoại */
.mobile-header {
  display: none;
  background: black;
  color: white;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
}

.mobile-logo img {
  height: 40px;
}

.burger {
  font-size: 26px;
  cursor: pointer;
}

/* Responsive menu bên trái */
@media (max-width: 768px) {
  .mobile-header {
    display: flex;
  }

  .sidebar {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 200px;
    height: 100vh;
    background: black;
    transition: left 0.3s ease;
    z-index: 1001;
    padding: 20px;
  }

  .sidebar.show {
    left: 0;
  }

  .content {
    margin-left: 0 !important;
    margin-top: 100px;
  }
}.menu-item {
  display: flex;
  background: #1a1a1a;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  gap: 20px;
}

.menu-item img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
}

.menu-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-header h3 {
  margin: 0;
  font-size: 16px;
  color: white;
}

.menu-action {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-action span {
  font-weight: bold;
  font-size: 16px;
  color: #ffae42;
}

.add-btn {
  padding: 6px 12px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  background: #ffae42;
  color: black;
  cursor: pointer;
}

/* Dropdown */
.menu-info select {
  margin-top: 10px;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
}.menu-category {
  padding: 60px 20px;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.menu-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.category-image {
  max-width: 700px;
  width: 90%;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.product {
  background-color: #222;
  padding: 20px;
  border-radius: 8px;
  width: 280px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  text-align: left;
}

.product h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.product p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 16px;
  font-weight: bold;
  color: #f0c040;
}

.add-btn {
  background-color: #f0c040;
  border: none;
  padding: 5px 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100%;
  background: #000;
  color: white;
  padding: 20px;
  z-index: 1000;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

/* Logo và menu */
.sidebar-logo {
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-logo img {
  width: 100px;
  margin-bottom: 10px;
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar ul li {
  margin: 12px 0;
}
.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  z-index: 1100;
  cursor: pointer;
}

/* Trên điện thoại: sidebar bị ẩn, cần toggle */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.show {
    transform: translateX(0);
  }
  .hamburger {
    display: block;
  }
}.impressum-section {
  padding-top: 120px; /* Đẩy xuống để không bị che */
  padding-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.9); /* Nền trắng mờ giúp dễ đọc */
  min-height: 100vh; /* Đảm bảo trang đủ cao */
}

.impressum-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 48px;
  text-align: center;
  margin-bottom: 30px;
  color: #5c4437;
}

.impressum-content {
  max-width: 800px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
}

.impressum-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.impressum-content a {
  color: #8a2be2;
  text-decoration: none;
}

.impressum-content a:hover {
  text-decoration: underline;
}
body.menu-page {
  background: url('menu-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  animation: zoomEffect 20s ease-in-out infinite alternate;
  padding-top: 100px; /* Nếu muốn áp cho toàn bộ trang */
}

.footer-copy {
  background-color: #222;      /* màu nền bạn thích */
  color: white;                /* màu chữ */
  padding: 12px 20px;
  text-align: center;
  font-size: 12px;
  margin-top: 40px;
  border-top: 1px solid #444;  /* tuỳ chọn: kẻ viền trên */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;

  /* ZOOM CHẬM */
  animation: subtleZoom 14s ease-in-out infinite alternate;

  opacity: 0;
  transition: opacity 2s ease;
  filter: brightness(60%);
}

.hero-slide.active {
  opacity: 1;
}

/* Hiệu ứng zoom nhẹ */
@keyframes subtleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.04); } /* zoom nhẹ – sang */
}
.menu-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.menu-gallery img {
  width: 100%;
  max-width: 600px; /* Bạn có thể điều chỉnh 500px → 600px nếu muốn */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.scroll-down-indicator {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 1.5s infinite;
  opacity: 0.8;
}

@keyframes wheelMove {
  0% { top: 10px; opacity: 0.8; }
  50% { top: 20px; opacity: 0.3; }
  100% { top: 10px; opacity: 0.8; }
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: white;
}

.hero-title {
  font-size: 44px;
  font-weight: bold;
  margin: 0;
  opacity: 0;
  transform: scale(0.6);
  animation: scaleUp 1.8s ease-out forwards;
}

.hero-sub {
  position: relative;
  top: -10px;          /* ← Dời chữ lên trên luôn */
  font-family: 'Dancing Script', cursive;
  font-size: 32px;     /* ← chữ lớn hơn cho cân */
  color: #ffffff;
  text-shadow: 0 0 6px black;
  opacity: 0;
  transform: scale(0.6);
  animation: scaleUp 1.8s ease-out forwards;
  animation-delay: 0.6s;
}
.hero-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  color: #000; /* chữ đen để nổi trên nền vàng */
  background: linear-gradient(135deg, #FFD700, #FFB700); /* vàng gold */
  box-shadow: 
    0 4px 10px rgba(0,0,0,0.4),
    0 0 15px rgba(255,215,0,0.7); /* ánh vàng */
  transition: 0.3s ease;
}

.hero-button:hover {
  background: linear-gradient(135deg, #FFEA00, #FFC300);
  box-shadow:
    0 6px 18px rgba(0,0,0,0.5),
    0 0 20px rgba(255,215,0,1);
  transform: translateY(-3px);
}
/* Mượt và chậm */
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}.hero-content * {
  transition: all 0.4s ease-in-out;
}.hero {
  position: relative;
  overflow: hidden;
}

#rice-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Giới hạn trong hero */
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.rice-grain {
  position: absolute;
  top: -20px;
  width: 4px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 60% / 40%;
  opacity: 0.6;
  filter: blur(0.3px);
  animation: riceFall linear infinite;
}

@keyframes riceFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}
.fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* hoặc 150px tùy hiệu ứng bạn muốn */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000000 100%);
  z-index: 2;

}
.side-image img {
  border-radius: 20px; /* bo góc tròn như khung chữ */
  width: 100%;
  height: auto;
  object-fit: cover;
}.impressum-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px; /* 20px hai bên trái phải */
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
}/* === POPUP NEUERÖFFNUNG MIT LATERNE & FEUERWERK === */

.popup-announcement {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #fff4e6, #ffe8cc);
  color: #4b2c20;
  padding: 28px 30px;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0,0,0,0.25);
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
  max-width: 90%;
  width: 430px;
  text-align: center;
  border: 2px solid #f7cfa0;
  animation: popupFadeUp 0.8s ease-out;
}

/* PHÁO HOA Ở TRÊN */
.popup-fireworks {
  position: relative;
  height: 30px;
  margin-bottom: 6px;
}

.firework {
  position: absolute;
  font-size: 22px;
  opacity: 0;
  animation: fireworkBurst 2.2s infinite;
}

.firework.fw1 { left: 18%; animation-delay: 0s; }
.firework.fw2 { left: 50%; animation-delay: 0.6s; }
.firework.fw3 { left: 80%; animation-delay: 1.1s; }

/* HÀNG ĐÈN LỒNG */
.popup-lantern-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.lantern {
  height: 60px;
  transform-origin: top center;
  /* Đu đưa + nhấp nháy */
  animation:
    lanternSwing 3.2s ease-in-out infinite,
    lanternFlicker 2.4s ease-in-out infinite alternate;
}

/* Tạo lệch nhịp cho từng cái */
.lantern-1 { animation-delay: 0s, 0.1s; }
.lantern-2 { animation-delay: 0.4s, 0.3s; }
.lantern-3 { animation-delay: 0.8s, 0.5s; }

/* TEXT & BUTTON */
.popup-announcement h3 {
  margin-top: 2px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.popup-announcement p {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
}

.popup-announcement .icon {
  font-size: 20px;
}

.popup-close {
  background-color: #d00000;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
}

/* ANIMATION: POPUP TRƯỢT LÊN NHẸ */
@keyframes popupFadeUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ANIMATION: PHÁO HOA NHẤP NHÁY */
@keyframes fireworkBurst {
  0% {
    transform: translateY(10px) scale(0.2);
    opacity: 0;
  }
  40% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-8px) scale(0.6);
    opacity: 0;
  }
}

/* ANIMATION: ĐÈN LỒNG ĐU ĐƯA NHẸ */
@keyframes lanternSwing {
  0%   { transform: rotate(-4deg); }
  50%  { transform: rotate(4deg); }
  100% { transform: rotate(-4deg); }
}

/* ANIMATION: ĐÈN LỒNG MỜ – SÁNG – MỜ */
@keyframes lanternFlicker {
  0%   { filter: brightness(0.7); opacity: 0.8; }
  50%  { filter: brightness(1.2); opacity: 1; }
  100% { filter: brightness(0.9); opacity: 0.85; }
}

/* RESPONSIVE POPUP */
@media (max-width: 480px) {
  .popup-announcement {
    width: 90%;
    padding: 22px 18px;
  }
  .lantern {
    height: 48px;
  }
}.lang-switch {
  display: flex;
  gap: 10px;
  align-items: center;
}

.flag-icon {
  width: 20px;     /* nhỏ gọn */
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid #ffffffaa;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-item:hover .flag-icon {
  transform: scale(1.1);
  box-shadow: 0 0 4px rgba(255,255,255,0.6);
}
/* --- CỜ ĐỔI NGÔN NGỮ DESKTOP --- */
.lang-switch-desktop {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 10px;
}

.lang-switch-desktop .flag-icon {
  width: 20px;   /* nhỏ như bạn muốn */
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid #ffffffaa;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-switch-desktop .flag-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 4px rgba(255,255,255,0.7);
}

/* Ẩn cờ desktop trên điện thoại (vì mobile đã có cờ riêng) */
@media (max-width: 768px) {
  .lang-switch-desktop {
    display: none;
  }
}/* Cân lại bố cục khung chữ + hình bên phải */
@media (min-width: 992px) {
  .text-content-wrapper {
    max-width: 1100px;      /* thu hẹp tổng thể cho gọn */
    gap: 30px;              /* có khoảng cách giữa 2 bên */
  }

  /* BÊN TRÁI: khung chữ nhỏ lại */
  .framed-box {
    flex: 0 0 55%;          /* chiếm ~55% chiều ngang */
  }

  .text-box {
    max-width: 520px;       /* giới hạn độ rộng chữ bên trong */
    margin: 0 auto;
    padding: 40px 32px;     /* giảm padding một chút cho gọn */
  }

  /* BÊN PHẢI: hình to hơn chút */
  .side-image {
    flex: 0 0 45%;          /* hình chiếm ~45% chiều ngang */
  }

  .side-image img {
    height: 100%;
    object-fit: cover;
  }
}/* === ABOUT SECTION – CHUYÊN NGHIỆP === */

.about-box {
  max-width: 900px;
  background: rgba(0,0,0,0.65);
  padding: 45px 50px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

/* Icon 🇩🇪 */
.about-flag {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 28px;
}

/* Tiêu đề */
.about-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 1px;
  color: white;
}

/* Nội dung */
.about-box p {
  font-size: 17px;
  line-height: 1.8;
  color: #e9e9e9;
  margin-bottom: 18px;
  text-align: justify;
}.about-section {
  background: url("images/about-bg.jpg") center/cover no-repeat;
  padding: 110px 20px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}.site-footer {
    margin-top: 0 !important;
    padding: 12px 0;   /* hoặc bạn muốn 10-20px tùy style */
}.hero-title {
  font-family: 'Great Vibes', cursive !important;
  font-size: 95px;
  font-weight: normal;
  letter-spacing: 2px;
  color: #ffffff; /* MÀU CHÍNH – trắng sạch */
  
  /* VIỀN NGOÀI MÀU VÀNG NHẸ */
  text-shadow:
    0 0 4px rgba(0,0,0,0.9),      /* viền đen sâu để chữ nổi */
    0 0 12px rgba(0,0,0,0.8),
    0 0 22px rgba(0,0,0,0.7),
    0 0 8px rgba(255, 215, 0, 0.9), /* viền vàng sáng */
    0 0 18px rgba(255, 215, 0, 0.7);

  margin-bottom: 10px;
}.hero-sub {
  margin-top: -15px;
}
/* === OVERRIDE MENU 3 GẠCH (KHÔNG XOÁ CODE CŨ) === */

/* Đặt icon 3 gạch xuống giữa navbar + to hơn */
.menu-toggle {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  position: absolute;
  left: 20px;
  top: 50% !important;               /* đưa xuống giữa */
  transform: translateY(-50%) !important;

  z-index: 2000;
  cursor: pointer;
}

/* Tăng độ dày + dài */
.menu-toggle span {
  width: 34px !important;            /* dài hơn */
  height: 4px !important;            /* dày hơn */
  background: white !important;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Hiệu ứng chuyển thành dấu X */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Chỉ hiện trên mobile */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
}
/* === TĂNG KÍCH THƯỚC CHỮ MENU MOBILE — OVERRIDE === */
@media (max-width: 768px) {

  /* Tăng size chữ */
  .mobile-menu li a {
    font-size: 22px !important;   /* chữ to hơn */
    font-weight: 500 !important;
    letter-spacing: 0.5px;
  }

  /* Tăng khoảng cách giữa các mục */
  .mobile-menu li {
    margin: 16px 0 !important;
  }
}
.framed-box {
  background: white;
  border: 3px solid #F5C33B;
  border-radius: 20px;
  padding: 40px;
  flex: 1;
  max-width: 520px;
}

.side-image img {
  width: 100%;
  height: auto !important;
  max-height: 420px; /* hoặc 480px tùy màn hình */
  border-radius: 20px;
  object-fit: cover;
}/* === FIX TITLE MOBILE — CHO VÀO CUỐI FILE CSS === */
@media (max-width: 768px) {

  .hero-title {
    font-size: 52px !important;     /* nhỏ hơn để nằm 1 hàng */
    letter-spacing: 1px !important;
    white-space: nowrap !important; /* EP KHÔNG XUỐNG DÒNG */
  }

  .hero-sub {
    font-size: 26px !important;
    margin-top: -8px;
  }
}/* === FIX ABOUT TEXT MOBILE — ĐỂ VÀO CUỐI FILE CSS === */
@media (max-width: 768px) {

  .about-box {
    padding: 30px 18px !important;
    border-radius: 16px;
  }

  .about-box h2 {
    font-size: 26px !important;       /* nhỏ lại cho gọn */
    margin-bottom: 14px !important;
    letter-spacing: 0.5px;
  }

  .about-box p {
    font-size: 15px !important;
    line-height: 1.45 !important;     /* KHÍT LẠI — hết bị cách xa */
    margin-bottom: 14px !important;   /* ít khoảng trắng hơn */
    text-align: left !important;      /* đẹp & dễ đọc hơn trên mobile */
  }
}/* Tăng kích thước chữ phần ABOUT khi xem trên điện thoại */
@media (max-width: 768px) {

  .about-section h2 {
    font-size: 28px !important;   /* tiêu đề */
    line-height: 1.3;
  }

  .about-box p {
    font-size: 18px !important;   /* nội dung chữ */
    line-height: 1.6;             /* tăng độ thoáng */
  }

}
/* Fix Impressum sát mép trên mobile */
@media (max-width: 768px) {

  .impressum-container,
  .impressum-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .impressum-container h1,
  .impressum-container h2 {
    text-align: center;
  }

  .impressum-container p,
  .impressum-container li {
    font-size: 17px;
    line-height: 1.6;
  }
}.vd-hero-section {
  position: relative;
  width: 100%;
  height: 480px;
  background: url('images/menu-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.vd-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  top: 0;
  left: 0;
}

.vd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.vd-script {
  font-family: 'Dancing Script', cursive;
  font-size: 52px;
  margin-bottom: 8px;
}

.vd-main-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.vd-subtext {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}.vd-hero-section {
  position: relative;
  width: 100%;
  height: 420px;
  background: url('images/about-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.vd-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50); /* mờ nhẹ giống Mido Fuji */
}
.about-section * {
  position: relative;
  z-index: 1;
}.lang-switch-mobile span {
  position: relative;
  top: -10px;   /* đẩy lên nhẹ */
  color: #00ff66;
  font-weight: 600;
}.about-box {
  background: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.about-box p {
  text-align: justify !important;   /* canh đều 2 bên */
  text-justify: inter-word;
}.about-box p {
  text-shadow: 0 0 8px rgba(0,0,0,0.7);
}.about-section {
  width: 100% !important;
  padding: 120px 40px !important;
  background: url("images/about-bg.jpg") center/cover no-repeat !important;
  position: relative;
}
/* === BLUR & DARKEN BACKGROUND OF ABOUT SECTION === */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px); /* blur nền */
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.25); /* 👈 TỐI LẠI 25% */
  z-index: 0;
}

.about-section * {
  position: relative;
  z-index: 1;
}/* === ABOUT BOX FULL WIDTH === */
.about-box {
  max-width: 100% !important;   /* chiếm toàn bộ chiều ngang */
  width: 100% !important;
  padding: 60px 40px;           /* padding rộng cho đẹp */
  margin: 0 !important;
  border-radius: 0 !important;  /* bỏ bo góc */
  background: rgba(0,0,0,0.45); /* nền đen mờ phía sau text */
}

/* CHỮ RỘNG ĐỀU – ĐỌC ĐẸP */
.about-box p {
  text-align: justify !important; 
  line-height: 1.8;
  font-size: 18px;
}

/* ABOUT SECTION giữ blur + tối nền */
.about-section {
  position: relative;
  padding: 120px 20px;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.25);
  z-index: 0;
}

.about-section * {
  position: relative;
  z-index: 1;
}/* === LỚP ĐEN NHẸ SAU ABOUT-BOX === */
.about-box {
  position: relative;
  background: transparent !important; /* bỏ nền cũ */
}

/* Lớp đen nằm phía sau chữ */
.about-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);  /* ĐEN MỜ 45% */
  backdrop-filter: blur(4px);       /* blur nhẹ nền sau */
  -webkit-backdrop-filter: blur(4px);
  border-radius: 12px;              /* bo góc nhẹ (tuỳ chỉnh) */
  z-index: 0;
}

.about-box * {
  position: relative;
  z-index: 1; /* để chữ nằm trên lớp đen */
}/* === FLAG SIZE SMALLER & CLEAN === */
.popup-lang-switch {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.popup-lang-switch .flag {
    width: 22px;     /* nhỏ lại */
    height: 15px;    /* cân đối */
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    border: 1px solid #ffffff55;
    transition: 0.2s ease;
    opacity: 0.85;   /* nhẹ nhàng */
}

.popup-lang-switch .flag:hover {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 4px rgba(255,255,255,0.6);
}@media (max-width: 768px) {
  .about-box p {
    text-align: left !important;
    line-height: 1.7;
  }
}/* FIX GIÃN CHỮ KHÔNG ĐỀU TRÊN MOBILE */
@media (max-width: 768px) {

  .about-box {
    padding: 20px !important;
  }

  .about-box p,
  .about-box h2,
  .about-box h3 {
    text-align: left !important;
    line-height: 1.55 !important;
    word-spacing: normal !important;
    letter-spacing: 0 !important;
  }
}
/* TWO BUTTONS UNDER HERO TITLE */
.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* CALL NOW – YELLOW */
.btn-call {
    background: #ffcc00; /* vàng */
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: 0.2s ease;
}
.btn-call:hover {
    background: #ffe066;
}

/* MENU – ORANGE */
.btn-menu {
    background: #ff8c42; /* cam */
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: 0.2s ease;
}
.btn-menu:hover {
    background: #ffa75f;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .btn-call,
    .btn-menu {
        width: 70%;
        margin: 0 auto;
        text-align: center;
        font-size: 17px;
        padding: 14px 0;
    }
}/* === FIX MENU BỊ CHE BỞI NAVBAR === */
body.menu-page {
    padding-top: 140px !important; /* chỉnh cao đúng bằng navbar */
}/* === ẢNH MENU FULL MÀN HÌNH === */
.menu-gallery img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;   /* nếu muốn full viền */
    box-shadow: none !important;   /* tùy chọn */
}

/* Fix cho mobile */
@media (max-width: 768px) {
    .menu-gallery {
        padding: 0 !important;
    }
    .menu-gallery img {
        margin-bottom: 0 !important;
    }
}.menu-gallery {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0;
    margin: 0 auto !important;
}.menu-gallery img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 750px; /* chỉnh tùy anh */
}