: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;
}

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: 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: 15px 20px;
  max-width: var(--page-max);
  margin: 0 auto;
}

.hero {
  margin-top: 100px;
  /* đúng bằng chiều cao header */
}

header .logo img {
  height: 60px;
  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;
}

.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%;
  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.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: 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 {
    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;
  }

  .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("/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: 5px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.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('/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;
    }

    .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;
}
