:root {
  --page-max: 1400px;
  --color-bg: #e2c7a1;
  --color-text: #311b14;
  --color-accent: #f9d65c;
  --font-main: "Poppins", "Regular", sans-serif;
  --radius: 25px;
  --font-heading: "DaunPenh", serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
}

.page {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================= */
/* HEADER */
/* ============================= */
/* header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
} */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* chiếm toàn màn hình */
  z-index: 1000; /* cao hơn background cố định */
  background: var(--color-bg);
  /* border-bottom: 1px solid #222; */
}

header .page {
  display: flex;
  /* flex cho nội dung bên trong */
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  max-width: var(--page-max);
  margin: 0 auto;
}

.hero {
  margin-top: 70px;
  /* đúng bằng chiều cao header */
}

header .logo img {
  height: 70px;
}

header .header-left,
header .header-right {
  display: flex;
  align-items: center;
}

/* Nav mặc định */
nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}

nav ul li a:hover,
nav ul li a.active {
  font-weight: 700;
}

/* .btn-booking {
  background: linear-gradient(90deg, #A68230, #F2D063);
  color: var(--color-accent);
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  border: 1px solid var(--color-accent);
  transition: all 0.3s ease;
}

.btn-booking:hover {
  background: linear-gradient(90deg, #F2D063, #A68230);
  transform: scale(1.05); 
} */

/* Hamburger menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text);
}

/* ============================= */
/* HERO */
/* ============================= */
.hero {
  text-align: center;
  padding: 35px 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 500;
}

.hero h2 {
  font-family: var(--font-heading) !important;
  font-size: 70px;
  margin-top: 10px;
  color: var(--color-text);
  margin-bottom: 10px;
  font-style: italic;
  font-weight: 500;
}

.hero p {
  font-size: 25px;
  margin-bottom: 30px;
}

.btn-services {
  display: inline-block;
  background: #fff6ea;
  color: #311b14;
  padding: 12px 25px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.btn-services:hover {
  background: #311b14;
  transform: scale(1.05);
  color: #fff6ea;
}

/* ============================= */
/* SLIDER */
/* ============================= */
.swiper {
  width: 100%;
  padding: 60px 0;
}

.swiper-slide {
  width: 400px;
  height: 500px;
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* ============================= */
/* FOOTER */
/* ============================= */
footer {
  background-color: #573d24;
  color: #fff;
  position: relative;
  z-index: 10; /* cao hơn background cố định */
}
footer .page {
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

footer h3 {
  /* color: var(--color-accent); */
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
}

footer p {
  margin: 15px 0;
}

footer a {
  color: var(--color-text);
  text-decoration: none;
}

footer a:hover {
  color: var(--color-accent);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  /* background: #111; */
  border-radius: 50%;
  width: 28px;
  height: 28px;
  transition: 0.3s;
}
.phone-list p {
  margin: 0;
  font-weight: 600;
}

.phone-list strong {
  display: inline-block;
  width: 70px; /* độ rộng phần nhãn "Phone:" */
}

footer .map iframe {
  margin: 20px 0;
  display: block;
  width: 300px !important;
  height: 200px !important;
  max-width: 100%;
  border: 0;
  border-radius: 10px;
}

.copyright {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  border-top: 0.1px solid #795d42;
  background: #573d24;
  color: #fff;
  position: relative;
  z-index: 10; /* cao hơn background cố định */
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* Dưới 900px */
@media (max-width: 900px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--color-bg);
    /* border-bottom: 1px solid #222; */
  }

  header .page {
    padding: 10px 15px;
  }

  /* Logo bên trái + booking bên phải */
  .header-left {
    flex: 1;
  }

  .header-right {
    margin-left: auto;
    margin-right: 10px;
  }

  nav {
    position: absolute;
    /* tách menu khỏi luồng */
    top: 100%;
    /* nằm ngay dưới header */
    left: 0;
    width: 100%;
    display: none;
    background: var(--color-bg);
    text-align: center;
    padding: 15px 0;
    z-index: 1000;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
  }

  .menu-toggle {
    display: block;
    /* hiện hamburger */
    font-size: 28px;
    cursor: pointer;
    margin-left: 15px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 60px;
  }

  .hero p {
    font-size: 24px;
  }

  .swiper-slide {
    width: 70%;
    height: auto;
    aspect-ratio: 4/5;
  }

  /* Footer cho tablet/iPad */
  footer .page {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  footer h3 {
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 0;
  }

  footer p {
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.4;
  }

  footer .map iframe {
    width: 100% !important;
    height: 180px !important;
    margin: 15px 0;
  }

  .social-icons {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
  }

  header .logo img {
    height: 50px;
  }
}

/* Responsive riêng cho iPad (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  footer .page {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 30px;
    max-width: 900px;
    margin: 0 auto;
  }

  footer h3 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  footer p {
    font-size: 16px;
    line-height: 1.5;
    margin: 10px 0;
  }

  footer .map iframe {
    width: 100% !important;
    height: 200px !important;
    margin: 20px 0;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  /* Tạo khoảng cách đều giữa các cột */
  footer .page > div {
    margin-bottom: 25px;
  }
}

/* Dưới 600px - Mobile */
@media (max-width: 600px) {
  nav ul {
    gap: 10px;
  }

  .btn-booking {
    padding: 8px 15px;
    font-size: 14px;
  }

  .hero {
    padding: 0px 10px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero h2 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .btn-services {
    padding: 10px 20px;
    font-size: 14px;
  }

  .swiper {
    padding: 40px 0;
  }

  .swiper-slide {
    width: 85%;
    aspect-ratio: 4/5;
  }

  /* Footer cho mobile - 1 cột */
  footer .page {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 25px 15px;
    text-align: center;
  }

  footer h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  footer p {
    font-size: 14px;
    margin: 6px 0;
  }

  footer .map iframe {
    height: 180px !important;
    margin: 15px 0;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
  }
}

/* About Us */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--page-max);
  margin: 0 auto 80px auto;
  gap: 30px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--color-text);
  font-weight: 500;
}
.about-text h2 small {
  font-size: 30px;
  display: block;
  margin-top: 10px;
}
.about-text p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--color-text);
}

.about-images {
  display: flex;
  gap: 15px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.about-images img {
  border-radius: 12px;
  object-fit: cover;
}

.about-images img:first-child {
  width: 290px;
  height: 330px;
}

.about-images img:last-child {
  width: 100%;
  height: 470px;
}

/* Services */
.services {
  text-align: center;
  margin-bottom: 60px;
}

.services h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  margin-bottom: 30px;
  color: var(--color-text);
}

.service-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-item {
  width: 280px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.service-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.service-item:hover img {
  transform: scale(1.05);
}
.service-item p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding: 18px 0;
  font-size: 30px;
  color: #000;
  transition: all 0.3s ease;
}

.service-item:hover p {
  background: rgba(166, 130, 48, 0.9); /* vàng nâu gradient nhẹ */
  color: #fff;
}

/* base gallery styles */
.gallery {
  text-align: center;
}

.gallery h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  margin-bottom: 30px;
  color: var(--color-text);
}

/* grid desktop */
.gallery-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.gallery-item.medium-large {
  width: 240px;
}

.gallery-item.small {
  width: 220px;
}

.gallery-item.large {
  width: 320px;
}

.gallery-item.medium {
  width: 260px;
}

/* slide is hidden by default on large screens */
.gallery-slide {
  display: none;
}

/* tuỳ chỉnh pagination cho gallery slide */
.gallery-slide .swiper-pagination {
  bottom: 10px !important;
  /* cách đáy */
  text-align: center;
}

.gallery-slide .swiper-pagination-bullet {
  background: #ccc;
  /* màu mặc định */
  opacity: 1;
  /* không trong suốt */
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  border-radius: 50%;
  /* tròn */
  transition: all 0.3s ease;
}

.gallery-slide .swiper-pagination-bullet-active {
  background: #8b5e3c;
  /* màu active */
  width: 14px;
  height: 14px;
}

/* Responsive dưới 900px */
@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-text {
    order: 1;
  }

  .about-images {
    order: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  .about-images img:first-child {
    width: 45%;
    height: auto;
  }

  .about-images img:last-child {
    width: 55%;
    height: auto;
  }

  .service-list {
    gap: 15px;
  }

  .service-item {
    width: 220px;
  }

  .gallery-grid {
    display: none;
  }

  .gallery-slide {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 12px;
  }

  .gallery-slide .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .gallery-slide .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
  }
}

/* Responsive dưới 600px */
@media (max-width: 600px) {
  .about-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .service-item {
    width: 100%;
    max-width: 320px;
  }

  .service-item p {
    font-size: 22px;
    padding: 12px 0;
  }
}
/* ---------- base/heading ---------- */
.testimonials {
  padding: 60px 20px;
  text-align: center;
  background: transparent; /* nền vàng nhạt giống ảnh 2 */
}
.testimonial-slide {
  box-shadow: none;
  /* border-radius: 0%; */
  background-color: transparent;
}
.testimonials h2 {
  font-size: 50px;
  margin-bottom: 40px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text);
}

.testimonial-slider {
  max-width: 1500px;
  margin: 0 auto;
}

.testimonial-wrapper {
  display: flex;
  align-items: stretch;
}

.testimonial-slide {
  display: flex;
  justify-content: center;
  height: auto;
}

.testimonial-item {
  background: #fff; /* trắng thay vì xám */
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}

.testimonial-item:hover {
  transform: translateY(-5px);
}

.testimonial-item p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--color-text);
  font-style: italic;
}

.testimonial-item hr {
  border: none;
  border-top: 1px dashed #ccc;
  margin: 15px 0;
}

.testimonial-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-footer h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #000;
}

.testimonial-footer .stars {
  color: #f4b400; /* vàng gold */
  font-size: 18px;
}

/* Swiper custom */
.testimonial-button-prev,
.testimonial-button-next {
  display: none;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: #6b4226;
}
/* chỉnh size và khoảng cách của dấu chấm */
.testimonial-pagination .swiper-pagination-bullet {
  width: 12px; /* tăng chiều ngang */
  height: 12px; /* tăng chiều cao */
  background: #ccc; /* màu mặc định */
  opacity: 1;
  margin: 0 6px; /* khoảng cách giữa các chấm */
  transition: all 0.3s ease;
  border-radius: 50%; /* giữ dạng tròn */
}

/* khi active */
.testimonial-pagination .swiper-pagination-bullet-active {
  background: #6b4226; /* màu active */
  transform: scale(1.2); /* phóng to nhẹ */
}
/* Mobile responsive */
@media (max-width: 900px) {
  .testimonials {
    padding: 40px 15px; /* giảm padding trên dưới */
  }
  .testimonials h2 {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .testimonial-item {
    max-width: 85%;
    padding: 20px; /* giảm padding trong box */
  }
  .testimonial-item p {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .testimonial-footer h4 {
    font-size: 15px;
  }
  .testimonial-slider {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 30px 10px; /* giảm nữa cho mobile nhỏ */
  }
  .testimonials h2 {
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .testimonial-item {
    max-width: 95%;
    padding: 18px;
  }
  .testimonial-item p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .testimonial-footer h4 {
    font-size: 14px;
  }
  .testimonial-footer .stars {
    font-size: 18px;
  }
}

/* Banner About */
.about-banner {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-top: 70px;
  z-index: 5; /* cao hơn background cố định */
}

.about-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12); /* overlay mờ */
}

.about-banner .banner-overlay {
  position: relative;
  color: #fff;
  z-index: 1;
}

.about-banner h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 500;
}

.about-banner h1 {
  font-size: 95px;
  font-family: var(--font-heading);
  color: #f4d06f;
  margin: 20px;
  font-weight: 500;
}

/* Nội dung chính */
.about-section {
  padding: 00px 20px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 40px;
  font-family: var(--font-heading);
  color: var(--color-text);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--color-text);
}

.btn-booking {
  display: inline-block;
  background: #fef6ea;
  color: #311b14;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.btn-booking:hover {
  background: #311b14;
  transform: scale(1.05);
  color: #fef6ea;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .about-text h3 {
    margin-top: 0px;
  }
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    margin-top: 30px;
  }
}
/* .main-wrapper {
  background-size: cover;
  background-position: center;
  padding: 10px 20px;
  padding-bottom: 10px;
  background-attachment: fixed;
} */

.menu-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.menu-section {
  background: rgba(255, 255, 255, 0.5); /* nền mờ */
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.menu-subtitle {
  text-align: center;
  font-size: 20px;
  margin-top: 0px;
  font-style: italic;
  color: #8d660e;
}
.menu-title {
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 50px;
  color: #8d660e;
  margin-bottom: 30px;
  margin: 0px;
  font-weight: 500;
  line-height: 35px;
}

.sub-menu-desc {
  font-size: 16px;
  margin-top: 0px;
  font-style: italic;
  padding: 0px 10px;
}
.menu-section small {
  font-size: 25px;
  line-height: 25px;
  display: block;
}
.menu-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}
.menu-text-bold {
  font-weight: bold !important;
}
.menu-content {
  flex: 1;
  text-align: left;
}
.menu-section .desc,
.menu-content .desc {
  color: #333;
  font-style: italic;
  padding: 0px 10px;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  padding: 0px 10px;
}

/* Cấu trúc mới cho item có mô tả dài */
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10px;
}

.menu-item-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  flex: 1;
}

.menu-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  font-style: italic;
  width: 100%;
}

/* Cấu trúc cũ cho item thông thường */
.menu-text {
  flex: 1;
  min-width: 0;
}
.menu-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.menu-text p {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  font-style: italic;
  width: 100%;
}
/* .menu-text strong {
  display: block;
  color: #333; 
  margin-top: 4px;
  font-weight: 600;
} */
.menu-price {
  font-weight: bold;
  font-size: 18px;
  color: #000;
  /* margin-left: 20px; */
  white-space: nowrap;
  flex-shrink: 0;
  text-align: end;
}
.menu-price small {
  font-size: 14px;
  font-weight: 400;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .menu-section small {
    font-size: 15px !important;
    line-height: 25px;
    color: #333333 !important;
  }
  .about-banner {
    height: 210px;
  }
  .about-banner h1 {
    font-size: 50px;
  }
  .about-banner h2 {
    font-size: 26px;
  }
  .menu-section {
    align-items: center;
    padding: 30px;
  }

  .menu-image img {
    max-width: 100%;
  }

  .menu-content {
    width: 100%;
  }

  .menu-title {
    font-size: 40px;
  }
  .menu-list {
    padding: 0;
    margin: 0;
    margin-top: 20px;
  }
}

/* Mobile: dưới 600px */
@media (max-width: 600px) {
  .menu-section {
    padding: 10px;
    gap: 20px;
  }

  .menu-title {
    font-size: 40px;
  }

  .menu-text h4 {
    font-size: 18px;
  }

  .menu-text p {
    font-size: 15px;
  }

  .menu-price {
    font-size: 18px;
  }
}

.contact-section {
  max-width: 1200px;
  margin: 0px auto;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-left {
  flex: 1;
}

.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-right {
  flex: 1;
  background: url("/assets/images/contact/bacgroud-contact.png") no-repeat center
    center/cover;
  color: #333;
  padding: 40px;
}

.contact-right h2 {
  margin-top: 0;
  margin-bottom: 15px;
}
.contact-right h3,
.business-hours h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--color-text);
}
.contact-info p {
  margin: 6px 0;
  line-height: 1.8;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.business-hours {
  margin-top: 20px;
}

.business-hours p {
  margin: 5px 0;
  line-height: 1.8;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 20px;
  text-decoration: none;
  color: #333;
}

.map-section {
  max-width: 1200px;
  margin: 20px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Responsive dưới 900px */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-left,
  .contact-left img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .contact-right {
    min-height: auto;
  }
}

/* Responsive dưới 600px */
@media (max-width: 600px) {
  .contact-right {
    padding: 20px;
    font-size: 14px;
  }

  .contact-right h2 {
    font-size: 20px;
  }

  .business-hours h3 {
    font-size: 30px;
  }

  .social-icons a {
    font-size: 18px;
  }
}
.lb-close {
  display: none !important;
}

.booking-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fff;
}

.iframe-wrapper {
  width: 100%;
  max-width: 1200px;
  height: 90vh; /* Chiều cao bằng 90% chiều cao màn hình */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .booking-section {
    padding: 20px 10px;
    margin-top: 75px;
  }

  .iframe-wrapper {
    height: 100vh; /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }
  .about-text h2 small {
    font-size: 27px;
  }
  .about-text h2 {
    font-size: 40px;
  }
  .booking-page {
  display: none !important;
}
}

.floating-icons {
  position: fixed;
  top: 40%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-icons a {
  background: #311b14;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
  color: #fef6ea;
}

.floating-icons a:hover {
  background: #fef6ea;
  color: #311b14;
}

.floating-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.floating-icons a:hover img {
  transform: scale(1.1);
}

/* ===== TOP WRAPPER ===== */
.top-wrapper {
  position: relative;
  z-index: 5; /* cao hơn background cố định */
  margin-top: 70px;
}

/* ===== RESET tránh hở trắng / margin collapse ===== */
html,
body {
  margin: 0;
  padding: 0;
}

/* ===== MAIN WRAPPER ===== */

/* ===== MAIN WRAPPER ===== */
.main-wrapper {
  position: relative;
  /* tránh “khoảng trống” do margin collapse của phần tử con */
}
.main-wrapper > :first-child {
  margin-top: 0;
}
.main-wrapper > :last-child {
  margin-bottom: 0;
}

/* Wrapper cho background cố định phía sau header */
.main-bg {
  background: url("/assets/images/home/bg-1.png") center / cover no-repeat fixed;
  min-height: calc(100vh - 100px); /* trừ đi chiều cao header */
  padding-bottom: 20px; /* khoảng cách với footer */
}

/* ===== iOS: giả lập fixed bằng pseudo-element (không bị blur) ===== */
@supports (-webkit-touch-callout: none) {
  .main-bg {
    background: none !important; /* Tắt background gốc trên iOS */
    position: relative;
    z-index: 1;
    overflow: visible;
  }
  .main-bg::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/assets/images/home/bg-1.png") center / cover no-repeat;
    z-index: -2; /* thấp hơn để không che bất kỳ element nào */
    will-change: transform;
    pointer-events: none;
  }
}

/* ===== Mobile: nếu bạn thấy cover zoom quá nhiều, bật phần này ===== */
/*
@media (max-width: 768px){
  .main-bg{
    background-position: top center;
    background-size: 100% auto;
  }
  @supports (-webkit-touch-callout: none) {
    .main-bg::before{
      background-position: top center;
      background-size: 100% auto;
    }
  }
}
*/
/* =========================
   SERVICE TABS
========================= */
.svc-tabs {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.svc-tab {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #3b2f2a;
  padding: 8px 4px;
  position: relative;
}

.svc-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #3b2f2a;
  transition: width 0.25s ease;
}

.svc-tab:hover::after,
.svc-tab.active::after {
  width: 100%;
}

/* dấu | */
.svc-tab + .svc-tab {
  padding-left: 18px;
}
.svc-tab + .svc-tab::before {
  content: "|";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(59, 47, 42, 0.6);
}

/* =========================
   GALLERY GRID – ĐỀU KHUNG
========================= */
.svc-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.svc-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* KHUNG ẢNH CỐ ĐỊNH (QUAN TRỌNG) */
.svc-card a {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4; /* ĐỀU KHUNG GIỐNG DESIGN */
  overflow: hidden;
}

/* ẢNH */
.svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cắt ảnh đẹp */
  display: block;
  transition: transform 0.4s ease;
}

/* hover */
.svc-card:hover img {
  transform: scale(1.05);
}

/* ẩn khi filter */
.svc-card.is-hidden {
  display: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }
  .svc-tabs {
    padding-top: 40px;
  }
  .svc-tab {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .svc-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .svc-tab {
    font-size: 15px;
  }
}

.policy-list {
  padding-left: 40px;
  color: #333;
  line-height: 1.6;
}

.policy-list li {
  margin-bottom: 14px;
}
.policy-list li::marker {
  font-weight: 700;
}
.policy-list strong {
  font-weight: 600;
}

.policy-list ul {
  margin: 6px 0 6px 18px;
}

.policy-note {
  margin-top: 20px;
  font-style: italic;
  color: #444;
}

/* ===== Policy (light version) ===== */
.policy--light {
  background: #ffffff; /* subtle warm light background */
  color: #1a1a1a;
}

.policy__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 18px;
  line-height: 1.75;
}

.policy__title {
  font-size: 34px;
  text-align: center;
  letter-spacing: 0.5px;
  margin: 0 0 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.policy__heading {
  margin: 36px 0 10px;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.policy__subheading {
  margin: 28px 0 10px;
  font-size: 20px;
  font-weight: 800;
}

.policy__text {
  margin: 0 0 14px;
  font-size: 16px;
}

.policy__text--muted {
  opacity: 0.85;
  margin-top: 6px;
}

.policy__text--tight {
  margin-top: 6px;
}

.policy__list {
  margin: 0 0 16px 18px;
  padding: 0;
}

.policy__list li {
  margin: 6px 0;
}

.policy__list--dash {
  list-style: none;
  margin-left: 0;
}

.policy__list--dash li::before {
  content: "– ";
}
.sms-li {
  color: var(--bodyColor);
  font-size: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .policy__container {
    padding: 56px 16px;
  }
  .policy__title {
    font-size: 28px;
  }
  .policy__heading {
    font-size: 22px;
  }
  .policy__subheading {
    font-size: 18px;
  }
  .policy__text {
    font-size: 15px;
  }
}
#popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

#popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  width: 50%;
  height: 80%;
}

#close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #popup-content {
    width: 95%;
    height: 70%;
  }
}
.btn-sms-policy {
  display: inline-block;
  background: #311b14;
  color: #fef6ea;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.btn-sms-policy:hover {
  background: #fef6ea;
  transform: scale(1.05);
  color: #311b14;
}
