:root {
  --page-max: 1200px;
  --color-bg: #000;
  --color-text: #fff;
  --color-accent: #f9d65c;
  --font-main: "Poppins", "Regular", sans-serif;
  --radius: 25px;
  --font-heading: "Dancing Script", "Regular", cursive;
  --strip-h: 260px;         
  --strip-radius: 18px; 
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

.page {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 20px 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: 999;
  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: 0px 20px;
  max-width: var(--page-max);
  margin: 0 auto;
}

.hero {
  margin-top: 100px;
  /* đúng bằng chiều cao header */
}

header .logo img {
  height: 90px;
  margin-top: 10px;
}

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 {
  color: var(--color-accent);
}

/* .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-accent);
}

/* ============================= */
/* HERO */
/* ============================= */
.hero {
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero h2 {
  font-family: var(--font-heading) !important;
  font-size: 100px;
  margin-top: 10px;
  color: var(--color-accent);
  margin-bottom: 10px;
  font-style: italic;
}

.hero p {
  font-size: 35px;
  margin-bottom: 30px;
}
/* Hero brand name styling */
.hero .brand-name {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Điều chỉnh About section H1 */
.about-text h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #8b5e3c;
    line-height: 1.3;
    font-family: var(--font-heading);
    font-size: 50px;


}



/* Responsive */
@media (max-width: 768px) {
    .hero .brand-name {
        font-size: 28px;
    }
    
    .about-text h1 {
        font-size: 24px;
    }
    
    .about-text h3 {
        font-size: 36px;
    }
}
.btn-services {
  display: inline-block;
  background: linear-gradient(90deg, #a68230, #f2d063);
  color: #000; /* chữ đen cho dễ đọc */
  padding: 12px 25px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.btn-services:hover {
  background: linear-gradient(
    90deg,
    #f2d063,
    #a68230
  ); /* đảo gradient khi hover */
  transform: scale(1.05); /* phóng to nhẹ khi hover */
}

/* ============================= */
/* SLIDER */
/* ============================= */
.swiper {
  width: 100%;
}

.swiper-slide {
  width: 400px;
  height: 500px;
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* ============================= */
/* FOOTER */
/* ============================= */
footer {
  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;
}

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;
}

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: 1px solid #333;
  background: #000;
}

/* ============================= */
/* 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: 0px 15px;
  }
  header .logo img {
    height: 50px;
    margin-top: 10px;
  }
  /* 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 {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  footer h3 {
    margin-top: 20px;
  }
  footer .map iframe {
    width: 100% !important;
    height: 220px !important;
  }
}

/* Dưới 600px */
@media (max-width: 600px) {
  nav ul {
    gap: 10px;
  }

  .btn-booking {
    padding: 8px 15px;
    font-size: 14px;
  }

  .hero {
    padding: 30px 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 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  footer .map iframe {
    height: 200px !important;
  }
}

.main-wrapper {
  background-attachment: fixed;
  /* cố định khi scroll */
}

/* About Us */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  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: #8b5e3c;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #000;
}

.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: #8b5e3c;
}

.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: #8b5e3c;
}

/* 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;
    padding: 10px 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: #8b5e3c; /* màu nâu vàng */
}

.testimonial-slider {
  max-width: 1100px;
  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: #333;
  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-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: 20px;
  }
  .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: 100px;
}

.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;
}

/* Nội dung chính */
.about-section {
  background: #fdf6ec;
  padding: 00px 20px;
  background: url("/templates/images/home/bg.png") no-repeat center center/cover;
}

.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: 50px;
  font-family: var(--font-heading);
  color: #8b5e3c;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #000;
}

.btn-booking {
  display: inline-block;
  background: linear-gradient(90deg, #a68230, #f2d063);
  color: #000; /* chữ đen */
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.btn-booking:hover {
  background: linear-gradient(
    90deg,
    #f2d063,
    #a68230
  ); /* đảo chiều khi hover */
  transform: scale(1.05); /* hiệu ứng phóng nhẹ */
}

.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-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;
}

.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-title {
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 50px;
  color: #8b5e3c;
  margin-bottom: 30px;
  margin: 10px;
}

.menu-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

.menu-content {
  flex: 1;
  text-align: left;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 0px 10px;
}

.menu-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.menu-text p {
  /* margin: 4px 0 8px; */
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.menu-text p strong {
  font-weight: 500;
  color: #000;
}

.menu-text ul {
  margin: 5px 0 10px 18px;
  padding: 0;
  list-style-type: disc;
}

.menu-text li {
  margin-bottom: 4px;
  line-height: 1.5;
  color: #333;
}

.menu-text em {
  font-style: italic;
}

.menu-text b {
  font-weight: 600;
}

.menu-text br {
  line-height: 1.6;
}

.menu-text span {
  color: #000;
  font-weight: 500;
}


/* .menu-text p:has(strong), */
.menu-text p:has(b) {
  margin-top: 8px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #000;
}
.menu-list li ul {
  list-style-type: disc;
  padding-left: 10px;
}

.menu-list li ul li {
  display: list-item; /* khôi phục dấu chấm */
  list-style-position: outside;
  color: #333;
  padding: 0;
}

.menu-price {
  font-weight: bold;
  font-size: 18px;
  color: #000;
  /* margin-left: 20px; */
  white-space: nowrap;
}

@media (max-width: 900px) {
  .about-banner {
    height: 210px;
  }
  .about-banner h1 {
    font-size: 80px;
  }
  .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: 20px;
    gap: 20px;
  }

  .menu-title {
    font-size: 40px;
  }

  .menu-text h4 {
    font-size: 18px;
  }

  .menu-text p {
    font-size: 13px;
  }

  .menu-price {
    font-size: 18px;
  }
}
.gallery-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 60px auto; /* căn giữa gallery-page */
}

.gallery-page-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.gallery-page-item a {
  display: block; /* cho link chiếm toàn bộ khung */
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-page-item:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-page {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cột */
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .gallery-page {
    grid-template-columns: 1fr;
    /* 1 cột */
    padding: 10px;
  }
}

.contact-section {
  max-width: 1200px;
  margin: 40px 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("/templates/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;
}
.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;
    padding: 10px 20px;
  }

  .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;
}


.news-container {
  padding: 60px 20px; /* khoảng cách trên/dưới */
}

/* Nội dung giới hạn đúng max-width */
.news-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  align-items: start;
}

/* Cột trái */
.main-content {
  background: rgba(255, 255, 255, 0.7); /* trắng 80% opacity */
  color: #222;
  padding: 50px;
  border-radius: var(--radius);
  line-height: 1.7;
}
.main-content h1 {
  font-size: 26px;
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1;
}
.main-content p {
  margin: 0 0 16px;
  color: #555;
}
.main-content img {
  width: 560px;
  display: block;
  border-radius: 8px;
  margin: 18px auto;
}
.main-content ul {
  list-style: none;
  padding-left: 0;
  margin: 18px 0 0;
}
.main-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}
.main-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent); /* bullet vàng */
}


.news-sidebar {
  background: rgba(255, 255, 255, 0.7); /* trắng 80% opacity */
  color: #222;
  padding: 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px; /* không set fixed height — slider sẽ có max-height */
}
.news-sidebar h3 { margin: 0; font-size: 25px; font-weight: 600; text-align: center; }
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px; /* khoảng cách giữa các item */
}

.news-item {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
}
.news-item {
  padding-bottom: 12px;       /* khoảng cách dưới */
  margin-bottom: 12px;        /* khoảng cách dưới */
  border-bottom: 1px solid #9c9c9c;
}

.news-item:last-child {
  border-bottom: none;        /* bỏ line cho item cuối */
  margin-bottom: 0;
  padding-bottom: 0;
}
.news-item .thumb {
  width: 90%;
  aspect-ratio: 440 / 287;
  object-fit: cover;
  display: block;
  margin: auto;
}

.news-item h4 {
  font-size: 14px;
  margin: 10px;
  line-height: 1.3;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.news-item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.news-item a:hover {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .news-inner {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0; /* 👈 giảm gap để tránh tràn nhẹ */
  }
.news-sidebar{
  margin-top: 20px;
}
  .news-container {
    padding: 30px 12px;
  }

  .main-content {
    padding: 25px;
  }

  /* 👇 fix ảnh bị tràn */
  .main-content img {
    width: 100%;
    height: auto;
  }

  .main-wrapper {
    padding: 0;
  }
}


.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;
  }

  .iframe-wrapper {
    height: 80vh; /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }
}


/* Membership Popup Styles */
.membership-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* For mobile viewport */
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
  background-color: rgb(31 29 29 / 50%);
}

.membership-popup.show {
  display: flex;
  opacity: 1;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.popup-content {
  position: relative;
  width: 548px;
  height: 691px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup-close:hover {
  background: white;
  transform: scale(1.1);
  color: #8B1538;
}

/* Slider Styles */
.popup-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .popup-content {
    width: 320px;
    height: 403px;
    max-width: 500px;
    aspect-ratio: 1/1;
    margin: 20px;
  }
  
  .popup-slider {
    height: 100%;
  }
  
  .popup-close {
    top: 10px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }

}
@media (max-width: 480px) {
  .popup-content {

    margin: 10px;
    aspect-ratio: 1/1;
  }
  
  .popup-close {
    top: 8px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* iOS Safe Area Support */
@supports (padding: env(safe-area-inset-top)) {
  @media (max-width: 768px) {
    .popup-close {
      top: calc(env(safe-area-inset-top, 0px) + 10px);
      right: calc(env(safe-area-inset-right, 0px) + 15px);
    }
  }
  
  @media (max-width: 480px) {
    .popup-close {
      top: calc(env(safe-area-inset-top, 0px) + 8px);
      right: calc(env(safe-area-inset-right, 0px) + 12px);
    }
  }
}

/* Swiper container */
.gallery-strip .swiper{
  width: min(90%, 1200px);
  margin: 0 auto;
  background: transparent;
}

/* Slide trong suốt, cao đúng strip, không padding */
.gallery-strip .swiper-slide{
  height: var(--strip-h);
  display: block;
  padding: 0;
  background: transparent;   /* bỏ nền đen */
  border-radius: var(--strip-radius);
  overflow: hidden;          /* để ảnh che kín bo góc, không lộ nền */
}
.gallery-strip .swiper,
.gallery-strip .swiper-wrapper,
.gallery-strip .swiper-slide {
  background: transparent !important;
  box-shadow: none !important;
}
/* Ảnh phủ kín slide */
.gallery-strip .swiper-slide img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;         /* full, không mép đen trên/dưới */
  border-radius: 0;          /* radius đã đặt ở slide */
  box-shadow: none;          /* theo đúng yêu cầu */
   background: transparent !important;
}

/* Mobile */
@media (max-width: 639.98px){
  :root{ --strip-h: 200px; }
}
/* Hai khối liền nhau */


/* Slider nổi đúng đường tiếp giáp – KHÔNG tạo khoảng đen */
.gallery-strip{
  position: relative;
  z-index: 10;
  height: var(--strip-h);
  margin-top: calc(var(--strip-h) * -0.5);    /* đè lên banner 1/2 */
  margin-bottom: calc(var(--strip-h) * -0.5); /* đè lên main 1/2 */
  background: transparent;                    /* trong suốt */
}