/* ==== 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%);
}

.nav-logo img {
  width: 80px;
  transition: all 0.3s ease;
}

.nav-left li a, .nav-right li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

/* ==== 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-bg img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  animation: subtleZoom 7s ease-in-out infinite alternate;
}
.hero-text {
  position: relative;
  z-index: 2; /* để nằm trên nền */
  color: white;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4); /* nền mờ giúp chữ dễ đọc */
  border-radius: 10px;
}

.hero-text h1 {
  font-size: 72px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: white;
}

.hero-text p {
  font-size: 28px;
  color: white;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 20px;
}

.hero-text .button {
  display: inline-block;
  padding: 14px 32px;
  background: #8a2be2;
  color: white;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

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

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

/* ==== ABOUT SECTION ==== */
.about-section {
  background: black;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.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: url('gallery-bg.jpg') center/cover no-repeat fixed;
  padding: 140px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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%;
  }
}.navbar.shrink #main-logo {
  width: 50px;
  transition: all 0.3s ease;
}.footer-extended {
  background: #000;
  color: white;
  padding: 60px 20px;
  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;
}

.footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #ba0000;
}
/* Mặc định (máy tính): icon trái như cũ */
.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin: 15px 0;
}

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

.social-icons a:hover img {
  transform: scale(1.2);
}

/* Khi xem trên điện thoại: căn giữa */
@media (max-width: 768px) {
  .social-icons {
    justify-content: center;
  }
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: black;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    z-index: 1000;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .menu-toggle,
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  .menu-content {
  padding-top: 140px; /* Đẩy xuống dưới logo cố định */
}
}/* === 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;
  }
}

/* === LOGO CUỘN NHỎ === */
.navbar.shrink #main-logo {
  width: 50px;
  transition: all 0.3s ease;
}
/* === NỀN MENU PAGE CÓ HIỆU ỨNG ZOOM === */
body.menu-page {
  background: url('menu-bg.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.1);
  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) {
  }
.hero {
  position: relative;
  overflow: hidden;
}

.scroll-mouse {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

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

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

@keyframes wheelAnim {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}
/* === Áp dụng riêng cho các trang dùng body.menu-page === */
body.menu-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fffaf5;
  font-family: 'Poppins', sans-serif;
}

body.menu-page main,
body.menu-page .impressum-section {
  flex: 1;
}

/* Đảm bảo phần footer không bị tụt */
body.menu-page .footer-extended {
  margin-top: auto;
  background-color: #111;
  color: white;
  padding: 60px 20px 20px;
}

body.menu-page .footer-copy {
  text-align: center;
  margin-top: 40px;
  color: #f33;
}
/* NỀN TRẮNG TOÀN MÀN HÌNH CHO TRANG IMPRESSUM */
body.menu-page.impressum.light-bg {
  background-color: #ffffff;
  color: #222;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Phần nội dung chiếm toàn bộ chiều cao còn lại */
.impressum-section {
  flex: 1;
  padding: 160px 20px 60px;
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
}

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

.impressum-content {
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}

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

.impressum-content a {
  color: #a0522d;
  text-decoration: none;
  font-weight: 500;
}

.impressum-content a:hover {
  text-decoration: underline;
}

/* Footer vẫn giữ đen nhưng không có phần trắng lộ ra dưới */
.footer-extended {
  background-color: #111;
  color: #eee;
  padding: 60px 20px 20px;
  margin-top: auto;
}
.navbar-spacer {
  height: 120px; /* Tạo khoảng trống bằng chiều cao logo */
}