@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

/* Root variables */
:root {
  --main-bg: #000000;
  --header-bg: #294235;
  --accent: #a68230;
  --text-main: #222;
  --text-light: #fff;
  --max-width: 1200px;
  --font-main: 'Poppins', Arial, sans-serif;
  --font-script: 'Dancing Script', cursive;
}

/* Reset & Base */
body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--main-bg);
  color: var(--text-main);
  font-size: 1.15rem;
  /* Tăng kích thước font chữ toàn trang */
}

/* ===== Header ===== */
.header {
  background: var(--main-bg);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.header__container {
  max-width: var(--max-width);
  margin: 0 auto;
  /* padding: 16px 24px; */
}


.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

/* Nav chung */
.nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* .nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
} */

.nav a:hover,
.nav a.active {
  color: var(--accent-color);
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-light);
  border-radius: 2px;
}

/* Nav PC hiển thị mặc định */
.nav-pc {
  display: block;
}

/* Nav Mobile ẩn mặc định */
.nav-mobile {
  display: none;
  margin-top: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .header__container {
    /* padding: 12px 16px; */
  }

  .logo img {
    width: 80px;
  }

  /* Ẩn nav PC, hiện hamburger */
  .nav-pc {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-right: 10px;
  }

  /* Nav mobile xổ xuống */
  .nav-mobile {
    display: none;
    width: 100%;
  }

  .nav-mobile.active {
    display: block;
    animation: slideDown 0.3s ease;
  }

  .nav-mobile ul {
    flex-direction: column;
    gap: 12px;
    padding: 20px !important;
  }
.nav-mobile ul li {
    text-align: center;
}
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  object-fit: contain;
}

.logo__text {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 2px;
}

.logo__text small {
  font-size: 0.8rem;
  font-weight: normal;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

.btn-booking {
  background: linear-gradient(122deg, #D3A742 0%, #FFE6AC 24%, #D3A742 52%, #FFE6AC 81%, #FFE593 100%);
  color: var(--header-bg);
  padding: 10px 28px;
  border-radius: 24px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}

.btn-booking:hover {
  background: #d1b15a;
}

/* Footer */
.footer {
  /* background: var(--main-bg); */
  color: var(--text-light);
  padding-top: 32px;
  padding-bottom: 0;
  font-weight: 400;
  background-image: url('/assets/images/footer-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer__container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 0 24px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__section {
  flex: 1 1 220px;
  margin-bottom: 16px;
}

.footer__section h4 {
  margin: 0 0 8px 0;
  font-size: 2.2rem;
  color: #F2D063;
  font-weight: 600;
  font-family: var(--font-script);
}
.footer__section strong{
  font-weight: 500;
}

.footer__section strong a {
  color: inherit;
  text-decoration: none;
}
.footer__section p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer__social {
  margin-top: 12px;
  display: flex;
  gap: 14px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: #f1be4b;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  
}

.footer__social a:hover {
  background: var(--accent);
  color: var(--header-bg);
  transform: translateY(-3px);
}

.footer__copyright {
  text-align: center;
  padding: 16px 0;
  font-size: 0.95rem;
  border-top: 1px solid #e2c16b22;
}



/* Hero Section */
.hero {
  position: relative;
  background: var(--main-bg);
  padding: 48px 0 0 0;
  text-align: center;
  overflow: hidden;
  /* max-width: var(--max-width); */
  margin-left: auto;
  margin-right: auto;
  background-image: url('/assets/images/hero-bg.png');
}

.hero-row1 {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 6vw;
  z-index: 2;
}

.hero-flower {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  z-index: 3;
  opacity: 0.85;
  animation: flowerMove 8s infinite ease-in-out alternate;
  pointer-events: none;
}

@keyframes flowerMove {
  0% {
    transform: translateX(0) rotate(-2deg);
  }

  20% {
    transform: translateX(-12px) rotate(2deg);
  }

  40% {
    transform: translateX(8px) rotate(-1deg);
  }

  60% {
    transform: translateX(-8px) rotate(2deg);
  }

  80% {
    transform: translateX(12px) rotate(-2deg);
  }

  100% {
    transform: translateX(0) rotate(-2deg);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
  min-width: 320px;
  max-width: 600px;
  position: relative;
  z-index: 4;
  text-align: left;
}

.hero-title {
  font-family: var(--font-script);
  font-size: 5rem;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.1;
  font-weight: 500;
}

.hero-content h4 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
}

.hero-btn {
  margin-top: 18px;
}

.hero-visual {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-girl {
  width: 60%;
  min-width: 320px;
  max-width: 520px;
  display: block;
}

/* Hero-row2: 2 ảnh nằm ngang, mỗi ảnh 50% màn hình */
.hero-row2 {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-top: 32px;
  z-index: 1;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  /* height: 320px; */
  gap: 5px;
  /* Thêm dòng này để tăng khoảng cách giữa hai ảnh */
  padding-top: 5px;
  padding-bottom: 5px;

}

.hero-side {
  width: calc(50vw - 5px);
  /* Trừ nửa khoảng cách để tổng là 10px */
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

.hero-left {
  margin-left: 0;
}

.hero-right {
  margin-right: 0;
}
@media (max-width: 900px) {
  .hero {
  
  padding: 20px 0 0 0;
 
}
}
/* About Section */
.about {
  background: #F0EAE1;
  padding: 40px 0;
  text-align: center;
}

.about-title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-desc {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
  text-align: center;
  background: none;
}

.about-page-banner {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #222;
}

.about-page-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page-banner-title {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-script);
  font-size: 3rem;
  color: #F2D063;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  letter-spacing: 2px;
  padding-left: 24px;
  /* canh lề */
  max-width: 1200px;
  margin: 0 auto;
  right: 0;
  /* để giới hạn trong max-width */
}

.about-page-main {
  background: #fcf8ed;
  padding: 64px 0;
}

.about-page-main-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  /* canh giữa theo chiều dọc */
  gap: 48px;
}

.about-page-main-text {
  flex: 1 1 50%;
  padding-right: 16px;
}

.about-page-title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: #a68230;
  margin-bottom: 24px;
}

.about-page-desc {
  font-size: 1.05rem;
  color: #222;
  line-height: 1.4;
}
.about-page-desc p {
  margin-bottom: 0px;
  margin-top: 0px;
}
.about-page-main-img {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.about-page-main-img img {
  width: 100%;
  max-width: 520px;
  border-radius: 160px 0 160px 0;
  object-fit: cover;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.about .about-btn-wrap{
  margin-top: 24px;
}

@media (max-width: 900px) {
  .about {
    padding: 5px 20px;
    background-image: none !important;
  }
  .about-page-main {
  padding: 20px 0;
}
.about-page-title {
  margin-top: 0px;
      white-space: nowrap;
}
.about-desc {
  padding-bottom: 20px;
}
  .about-page-main-container {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding: 20px;
  }

  .about-page-main-img img {
    max-width: 98vw;
    border-radius: 80px 0 80px 0;
  }
}

/* Service Section */
.service-section {
  background: #fcf8ed;
  padding: 48px 0 32px 0;
  text-align: center;
}

.service-title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 32px;
}

.service-list {
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.service-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 6px;
  /* tạo border dày 6px */
  background: linear-gradient(122deg, #D3A742 0%, #FFE6AC 24%, #D3A742 52%, #FFE6AC 81%, #FFE593 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  /* nền trắng bên trong */
}

.service-btn {
  margin-top: 8px;
  padding: 10px 15px;
  border-radius: 24px;
  font-weight: bold;
  font-size: 1rem;
  color: #294235;
  background: linear-gradient(122deg, #D3A742 0%, #FFE6AC 24%, #D3A742 52%, #FFE6AC 81%, #FFE593 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: none;
  letter-spacing: 1px;
}
.service-list a {
  display: block;       /* giúp link chiếm toàn bộ vùng .service-btn */
  color: inherit;       /* giữ nguyên màu chữ */
  text-decoration: none; /* bỏ gạch chân */
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .service-section {
  padding: 20px 0 32px 0;
}
.service-title {
  margin-top: 0px;
}
}


/* Testimonial Section */
/* .testimonial-section {
  background: #f5f2ea;
  padding: 48px 0 32px 0;
  text-align: center;
}

.testimonial-title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 32px;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-item {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.testimonial-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.testimonial-icon {
  width: 94px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: 0;
  overflow: visible;
}

.testimonial-icon svg {
  width: 100%;
  height: auto;
  display: block;
}


.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: #222;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .testimonial-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-item {
    padding: 24px 12px 18px 12px;
  }
} */
/* Dùng lại style gốc */
.testimonial-section {
  background: #F0EAE1;
  padding: 48px 0 32px 0;
  text-align: center;
}

.testimonial-title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 32px;
}

.testimonial-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-item {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.testimonial-icon {
  width: 94px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: #222;
  line-height: 1.6;
  text-align: center;
}

/* Swiper custom */
.testimonial-swiper {
  max-width: 92%;
  margin: 0 auto;
  overflow: hidden;
}

.swiper-pagination-bullet {
  background: var(--accent);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}

/* Ẩn/Hiện theo thiết bị */
.mobile-only { display: none !important; }
/* Màu mặc định của bullet */
.testimonial-section .swiper-pagination-bullet {
  background-color: #e2e2e2; /* đổi #ccc thành màu bạn muốn, ví dụ #f5c542 */
  opacity: 1; /* cho nó rõ hơn (mặc định là mờ) */
}

/* Màu bullet đang active (được chọn) */
.testimonial-section .swiper-pagination-bullet-active {
  background-color: var(--accent); /* ví dụ màu vàng nâu sang trọng */
}

/* Nếu muốn chỉnh kích thước và khoảng cách giữa các bullet */
.testimonial-section .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 6px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

/* Khi hover bullet */
.testimonial-section .swiper-pagination-bullet:hover {
  background-color: #f5c542;
}
@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
  .testimonial-item {
    padding: 24px 16px 18px 16px;
  }
  .testimonial-section {
  padding: 20px 0 32px 0;
}
  .testimonial-title {
    margin-top: 0px;
  }
}
.testimonial-swiper .swiper-pagination {
  margin-top: 24px; /* chỉnh khoảng cách trên dưới */
  position: relative; /* đảm bảo không bị dính với Swiper */
}


/* Gallery Section */
.gallery-section-home {
  background: #fcf8ed;
  padding: 5px 0 0 0;
  text-align: center;
}

.gallery-title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 32px;
}

.gallery-swiper {
  /* max-width: 1100px; */
  margin: 0 auto;
}

.gallery-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.gallery-swiper img {
  width: 100%;
  height: 481px;
  object-fit: cover;
  /* border-radius: 18px; */
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
}

@media (max-width: 700px) {
  .gallery-swiper img {
    height: 500px;
  }
}

/* Responsive */
@media (max-width: 900px) {

  .footer__container {
    flex-direction: column;
    align-items: center;
  }

  .footer__section {
    margin-right: 0;
    flex: 0;
    width: 100%;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  .hero-row2 {
    height: 160px;
  }

  .hero-side {
    width: 50vw;
    height: 100%;
  }

  .hero-row1 {
    flex-direction: column;
    min-height: 400px;
    align-items: center;
    justify-content: center;
    padding: 0 2vw;
  }

  .hero-content,
  .hero-visual {
    width: 100vw;
    min-width: 0;
    max-width: none;
    padding: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-girl {
    margin: 30px auto;
    width: 80vw;
    min-width: 180px;
    max-width: 320px;
  }



  .service-row,
  .service-row-reverse {
    flex-direction: column !important;
    gap: 24px;
  }

}

@media (max-width: 700px) {
  .service-list {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .service-img-wrap {
    width: 230px;
    height: 230px;
  }

  .service-btn {
    font-size: 0.95rem;
    padding: 8px 24px;
  }
}

/* Service Page */
.service-main {
  color: var(--text-dark);
  line-height: 1.6;
  background: transparent;
}

/* Row wrapper - giới hạn max width 1200 */
.service-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  flex-wrap: nowrap;
}

/* Cột ảnh */
.service-col-img {
  flex: 0 0 40%;
  position: relative;
}

.service-col-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 160px 0 160px 0;
  margin-top: 65px;
}

/* Border radius riêng cho từng loại */
.service-manicure .service-col-img img {
  border-radius: 160px 0 160px 0;
}

.service-pedicure .service-col-img img {
  border-radius: 0 160px 0 160px;
}

/* Tiêu đề chồng lên ảnh */
.service-title-mani,
.service-title-pedi {
  font-family: 'Dancing Script';
  font-size: 55px;
  font-weight: 600;
  color: #a68230;
  position: absolute;
  top: -34px;
  left: 0;
  margin: 0;
  line-height: 1;
  margin-bottom: 20px;
}
.service-title-pedi {
    color: #F2D063;
}

/* Riêng phần Manicure: cho title nằm bên phải ảnh */
.service-title-mani {
  right: 0;
  left: auto;
  text-align: right;
}

/* Cột menu */
.service-col-menu {
  flex: 1 1 55%;
}

.service-menu {
  display: flex;
  flex-direction: column;
  /* gap: 12px; */
}

/* Mỗi mục: tên + giá trên cùng dòng */
.service-menu-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Nhóm tên + giá */
.service-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.service-menu-name {
  font-weight: 400;
  font-size: 25px;
  color: var(--text-dark);
  flex: 1 1 auto;
  min-width: 0;
}

.service-menu-price {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  flex: 0 0 auto;
  min-width: 70px;
  text-align: right;
  white-space: nowrap;
}

.service-menu-desc {
  font-size: 16px;
  color: #3E3E3E;
  line-height: 1.6;
  font-style: italic;
}

.service-menu-sep {
  height: 1px;
  background-color: #ddd;
  opacity: 0.5;
  margin: 6px 0;
}

/* Manicure section style */
.service-manicure {
  background: #F0EAE1;
  position: relative;
}

/* Pedicure section style */
.service-pedicure {
  /* background: var(--pedi-bg, #142C10); */
  background-image: url('/assets/images/services-bg.png');
  color: #fff;
  position: relative;
}

/* Pedicure - chỉnh màu chữ/giá/desc */
.service-pedicure .service-menu-name {
  color: #F2D063;
}

.service-pedicure .service-menu-price {
  color: #F2D063;
}

.service-pedicure .service-menu-desc {
  color: #FFFFFF;
}

.service-pedicure .service-menu-sep {
  background-color: rgba(255, 255, 255, 0.06);
}

.service-pedicure .pedi-addon-block {
  margin-top: 10px;
}

.service-pedicure .pedi-addon-title {
  color: #F2D063;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.service-pedicure .pedi-addon-list {
  list-style: disc;
  margin: 0;
  padding-left: 24px;
}

.service-pedicure .pedi-addon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.service-pedicure .pedi-addon-name {
  white-space: nowrap;
}

.service-pedicure .pedi-addon-line {
  flex: 1 1 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  transform: translateY(2px);
}

.service-pedicure .pedi-addon-price {
  min-width: 48px;
  text-align: right;
  white-space: nowrap;
  color: #fff;
}

#kid-services .pedi-addon-list {
  list-style: disc;
  margin: 8px 0 0;
  padding-left: 24px;
}

#kid-services .pedi-addon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 20px;
  line-height: 1.35;
}

#kid-services .pedi-addon-name {
  white-space: nowrap;
}

#kid-services .pedi-addon-line {
  flex: 1 1 auto;
  border-bottom: 1px solid rgba(34, 34, 34, 0.45);
  transform: translateY(2px);
}

#kid-services .pedi-addon-price {
  min-width: 52px;
  text-align: right;
  white-space: nowrap;
  color: #222;
  font-weight: 700;
}

/* Manicure poster style (new isolated classes) */




.mani-poster {
  color: #f4efe1;
  font-family: var(--font-main);
}

.mani-poster-group {
  margin-bottom: 14px;
}

.mani-poster-group-title {
  margin: 0 0 6px;
  font-size: 25px;
  font-weight: 600;
  color: #a68230;
}

.mani-poster-list {
  list-style: disc;
  margin: 0;
  padding-left: 36px;
}

.mani-poster-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.mani-poster-name {
  white-space: nowrap;
  color: var(--text-main);

}

.mani-poster-line {
  flex: 1 1 auto;
  border-bottom: 1px solid rgba(150, 150, 150, 0.75);
  transform: translateY(4px);
}

.mani-poster-price {
  min-width: 70px;
  text-align: right;
  color: var(--text-main);
  font-size: 18px;
  font-weight: 700;
}

.mani-poster-extra {
  margin-top: 18px;
  padding: 14px 20px;
  border-radius: 4px;
  background: linear-gradient(122deg, #d3a742 0%, #ffe6ac 26%, #d3a742 54%, #ffe6ac 82%, #ffe593 100%);
  color: #201806;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mani-poster-extra-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.mani-poster-extra-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

/* Responsive */
/* ---------- Mobile behaviour (thay thế phần media query trước đó) ---------- */
@media (max-width: 992px) {

  /* chung: xếp dọc */
  .service-row {
    display: flex;
    /* vẫn là flex container */
    flex-direction: column;
    gap: 28px;
    padding: 44px 0;
  }

  .service-col-img {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
    order: 0;
    /* default cho các section khác */
  }

  .service-col-img img {
    max-width: 100%;
    margin: 0 auto;
  }

  .service-col-menu {
    width: 100%;
    order: 1;
    /* default cho các section khác */
  }

  /* --- Riêng Pedicure: cho ảnh (và title) lên trước menu --- */
  .service-pedicure .service-col-img {
    order: -1;
    /* nhỏ hơn menu => hiển thị trước */
  }

  .service-pedicure .service-col-menu {
    order: 0;
  }

  /* Tiêu đề không chồng lên ảnh trên mobile */
  .service-title-mani,
  .service-title-pedi {
    position: static;
    display: block;
    margin: 0 0 8px 0;
    text-align: center;
    font-size: 28px;
  }

  /* giữ tên/giá cùng hàng */
  .service-menu-top {
    flex-direction: row;
  }

  .service-menu-name,
  .service-menu-price {
    font-size: 20px;
  }

  .service-pedicure .pedi-addon-title {
    font-size: 18px;
  }

  .service-pedicure .pedi-addon-item {
    font-size: 16px;
  }

  #kid-services .pedi-addon-item {
    font-size: 18px;
  }

  .service-manicure#manicure .service-row {
    gap: 24px;
  }

  .service-manicure#manicure .service-col-menu,
  .service-manicure#manicure .service-col-img {
    flex: 0 0 auto;
    width: 100%;
  }

  .mani-poster-group-title {
    font-size: clamp(20px, 5.2vw, 25px);
  }

  .mani-poster-item {
    font-size: clamp(18px, 4.7vw, 25px);
  }

  .mani-poster-price {
    min-width: 60px;
    font-size: clamp(16px, 4.2vw, 18px);
  }

  .mani-poster-extra-title {
    font-size: clamp(20px, 5vw, 28px);
  }

  .mani-poster-extra-text {
    font-size: clamp(16px, 4.2vw, 24px);
  }
}


@media (max-width: 520px) {
  .service-row {
    padding: 28px 4%;
  }

  .service-title-mani,
  .service-title-pedi {
    font-size: 40px;
    text-align: center;
  }

  .service-menu-top {
    gap: 12px;
  }

  .service-menu-price {
    min-width: 60px;
    font-size: 20px;
  }
}

/* ===== Gallery Section ===== */
.gallery-section {
  background-color: #f4efe9;
  padding: 20px 0;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 20px;
  box-sizing: border-box;
}

.gallery-item {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox-image {
  max-width: min(92vw, 900px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}


.contact-section {
  background-color: #f7f1e9;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  /* ngăn tràn ngang */
}

.contact-container {
  display: flex;
  flex-direction: row;
  /* PC: map trái, info phải */
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  width: 100%;
  background: #fffaf3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

/* Map và Info mỗi bên chiếm 50% */
.contact-map,
.contact-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Info styling */
.contact-info {
  background: url("assets/images/gold-bg.jpg") no-repeat center center / cover;
  padding: 50px;
  color: #222;
  font-family: "Poppins", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-info h3 {
  margin-bottom: 5px;
  font-size: 1.5rem;
  color: #111;
  font-weight: 400;
}

.contact-info p {
  margin-bottom:5px;
  margin-top: 5px;
  /* line-height: 1.6; */
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.social-icons {
  margin-top: 25px;
}

.social-icons a {
  margin-right: 15px;
  font-size: 20px;
  color: #222;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #d4a373;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .contact-section {
    padding: 60px 10px;
  }

  .contact-container {
    flex-direction: column;
    /* Mobile: info trước, map sau */
    border-radius: 15px;
  }

  .contact-info,
  .contact-map {
    width: 100%;
  }

  .contact-info {
    text-align: center;
    padding: 40px 25px;
    background-size: cover;
    background-position: center;
    border-radius: 15px 15px 0 0;
  }

  .contact-map iframe {
    height: 300px;
    display: block;
    border-radius: 0 0 15px 15px;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons a {
    margin: 0 8px;
  }
}

@media (max-width: 520px) {
  .contact-info {
    padding: 30px 20px;
  }

  .contact-info h3 {
    font-size: 1.3rem;
  }

  .contact-info p {
    font-size: 15px;
  }
}

/* Màu mặc định của bullet */
.gallery-section-home .swiper-pagination-bullet {
  background-color: #e2e2e2; /* đổi #ccc thành màu bạn muốn, ví dụ #f5c542 */
  opacity: 1; /* cho nó rõ hơn (mặc định là mờ) */
}

/* Màu bullet đang active (được chọn) */
.gallery-section-home .swiper-pagination-bullet-active {
  background-color: var(--accent); /* ví dụ màu vàng nâu sang trọng */
}

/* Nếu muốn chỉnh kích thước và khoảng cách giữa các bullet */
.gallery-section-home .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 6px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

/* Khi hover bullet */
.gallery-section-home .swiper-pagination-bullet:hover {
  background-color: #f5c542;
}

/* ===== Hiệu ứng chuyển động nhẹ toàn site ===== */

/* Hiệu ứng xuất hiện mượt cho các phần khi cuộn vào view */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hiệu ứng hover nhẹ cho nút và ảnh */
button,
a.btn-booking,
.service-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

button:hover,
a.btn-booking:hover,
.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Ảnh có animation nhẹ khi di chuột */
img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

/* Hiệu ứng di chuyển nhẹ cho tiêu đề khi load */
h1, h2, h3, h4 {
  animation: fadeSlide 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hiệu ứng nhấp nháy nhẹ cho icon social khi hover */
.social-icons a {
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2) rotate(-3deg);
}

/* Hiệu ứng trượt nhẹ khi load trang */
body {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Popup */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.popup-content {
  background: white;
  width: 80%;
  height: 80%;
  position: relative;
}

.popup-content iframe {
  width: 100%;
  height: 100%;
}

.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  cursor: pointer;
}


.booking-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  background-color: var(--bg);
  position: relative;
  /* z-index: 10; */
  margin-top: 20PX;
}

.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: 40px 10px;
  }

  .iframe-wrapper {
    height: 80vh; /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }
}
