/* =========================
   Base / Variables
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Prata&display=swap');

:root{
  --page-max: 1400px;
  --bg: #ffffff;
  --text: #f7f7f7;
  --muted: rgba(255,255,255,.78);
  --line: rgba(255,255,255,.18);
  --glass: rgba(0,0,0,.35);
  --glass-2: rgba(0,0,0,.55);
  --accent: #f0c7a2;
  --radius: 26px;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --font-main: 'Poppins', sans-serif;
  --font-display: 'Prata', serif;

  --header-h: 84px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; }

.container{
  width: min(var(--page-max), calc(100% - 48px));
  margin-inline: auto;
}

.no-scroll{ overflow: hidden; }

/* =========================
   Header
========================= */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.75), rgba(0, 0, 0, 0));
}
.site-header.scrolled{
  background:linear-gradient(to bottom, rgba(100, 100, 100, 0.89), rgba(0, 0, 0, 0.6));
  box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  user-select:none;
}
.brand img{
  height: 70px;
  width: auto;
}

@media (max-width: 1024px){
  .brand img{
  height: 50px;
  width: auto;
  }
}

/* Desktop nav */
.nav--desktop{
  display:flex;
  align-items:center;
  gap: 28px;
  margin-left: auto;
}
.nav-link{
  font-size: 20px;
  letter-spacing: .4px;
  opacity: .95;
  position: relative;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:1px;
  background: rgba(255,255,255,.65);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav-link:hover::after{ transform: scaleX(1); }

/* Hamburger */
.hamburger{
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  gap: 5px;
  flex-direction: column;
  cursor:pointer;
}
.hamburger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 10px;
}

/* Desktop: menu left, logo right */
.brand--desktop{ }
.brand--mobile{ display:none; }

/* =========================
   Mobile menu
========================= */
.mnav{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 60;
}
.mnav.open{ display:block; }
.mnav-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.58);
}
.mnav-panel{
  position:absolute;
  top: 16px;
  right: 16px;
  width: min(380px, calc(100% - 32px));
  border-radius: 20px;
  background: rgba(12,12,14,.82);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
  opacity: 0;
  animation: panelIn .24s ease forwards;
}
@keyframes panelIn{
  to{ transform: translateY(0); opacity: 1; }
}
.brand--panel img{
  height: 36px;
}
.mnav-close{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  cursor:pointer;
}
.mnav-links{
  display:grid;
  padding: 10px;
}
.mnav-link{
  padding: 14px 14px;
  border-radius: 14px;
  opacity: .95;
}
.mnav-link:hover{
  background: rgba(255,255,255,.08);
}

.policy-menu{
    position: relative;
    list-style: none;
}

.policy-dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    background: #e5e5e5;
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.policy-dropdown li{
    border-bottom: 1px solid #d0d0d0;
}

.policy-dropdown li a{
    display: block;
    padding: 12px 16px;
    color: #555;
    text-decoration: none;
}

.policy-dropdown li a:hover{
    background: #ddd;
}

.policy-menu:hover .policy-dropdown{
    display: block;
}


/* =========================
   Hero / Banner
========================= */
.hero{
  position: relative;
  min-height: 70vh;
  display:block;
}

.hero-slider{
  position: relative;
  min-height: 85vh;
}

.hero-slide{
  position:absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.62), rgba(0,0,0,.18)),
    var(--bg) center/cover no-repeat;
  opacity:0;
  pointer-events:none;
  transition: opacity .55s ease;
}
.hero-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--bg) center/cover no-repeat;
  background-image: var(--bg);
}
.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.35));
}
.hero-slide{ background-image: none; }
.hero-slide{ --bg: url(''); }
.hero-slide::before{ background-image: var(--bg); }

.hero-slide.is-active{
  z-index: 1;
  opacity: 1;
}

.hero-slide.is-active::before {
  animation: zoom-in 8s linear forwards;
}

.hero-slide.is-active .hero-letter{
  animation: slide-in-left .8s ease-out forwards;
}

.hero-slide.is-active .hero-wave {
  animation: slide-in-left .8s ease-out .1s forwards;
}

.hero-slide.is-active .hero-title {
  animation: slide-in-left .8s ease-out .2s forwards;
}

.hero-slide.is-active .hero-desc {
  animation: slide-in-left .8s ease-out .3s forwards;
}

@keyframes zoom-in {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* inner grid */
.hero-inner{
  position: relative;
  min-height: 70vh;
  display:grid;
  align-items:center;
  padding-top: var(--header-h);
  padding-bottom: 56px;
  z-index: 2;
}

.hero-content{
  position: relative;
  width: min(700px, 100%);
  padding: 28px 26px;
  /* border-radius: var(--radius); */
  /* background: rgba(0,0,0,.22); */
  /* border: 1px solid rgba(255,255,255,.14); */
  /* backdrop-filter: blur(10px); */
  /* box-shadow: 0 22px 70px rgba(0,0,0,.22); */
  /* overflow:hidden; */
  display: flex;
  align-items: center;
  gap: 18px;
}

/* layout variants */
.hero-right .hero-inner{
  justify-items: end;
}
.hero-left .hero-inner{
  justify-items: start;
}

.hero-letter{
  position:absolute;
  left: 10px;
  font-family: var(--font-display);
  font-size: 500px;
  line-height: 1;
  opacity: .10;
  letter-spacing: -6px;
  transform: translateY(10px);
  pointer-events:none;
  user-select:none;
}

.hero-wave{
  width: 180px;
  height: auto;
  display:block;
  opacity: .95;
  flex-shrink: 0;
}

.hero-title{
  margin:0 0 14px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .2px;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 1.02;
}
.hero-desc{
  margin:0;
  max-width: 42ch;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* Slide element animations (run when slide is active) */
.hero-slide .hero-wave,
.hero-slide .hero-title,
.hero-slide .hero-desc,
.hero-slide .hero-letter{
  opacity:0;
  transform: translateY(14px);
}

.hero-slide.is-active .hero-letter{
  animation: letterIn .9s ease .05s forwards;
}
.hero-slide.is-active .hero-wave{
  animation: fadeUp .7s ease .18s forwards;
}
.hero-slide.is-active .hero-title,
.hero-slide.is-active .hero-desc {
  animation: fadeUp .8s ease .28s forwards;
}

@keyframes fadeUp{
  to{ opacity:1; transform: translateY(0); }
}
@keyframes letterIn{
  from{ opacity: 0; transform: translateY(28px) scale(.98); }
  to{ opacity: .10; transform: translateY(0) scale(1); }
}

/* UI controls */
.hero-ui{
  position:absolute;
  left:50%;
  bottom: 24px;
  transform: translateX(-50%);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  z-index: 4;
  pointer-events:none;
}
.hero-dots, .hero-arrows{ pointer-events:auto; }

.hero-dots{
  display:flex;
  gap: 10px;
  align-items:center;
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.12);
  cursor:pointer;
  padding:0;
}
.dot.is-active{
  background: rgba(255,255,255,.78);
  border-color: rgba(255,255,255,.82);
}

.hero-arrows{
  display:flex;
  gap: 10px;
}
.arrow{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  cursor:pointer;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   Responsive
========================= */

/* Tablet */
@media (max-width: 1024px){
  :root{ --header-h: 76px; }
  .nav--desktop{ gap: 18px; }
  .hero-content{
    width: min(520px, 100%);
    padding: 24px 22px;
  }
  .hero-letter{ font-size: 180px; }
}

/* Mobile */
@media (max-width: 768px){
  :root{ --header-h: 66px; }

  /* Header swap */
  .nav--desktop{ display:none; }
  .brand--desktop{ display:none; }
  .brand--mobile{ display:flex; }
  .hamburger{ display:flex; }

  .brand-mark{ width: 36px; height: 36px; border-width: 2px; }
  .brand-name{ font-size: 15px; }
  .brand-sub{ font-size: 10.5px; }

  .hero-inner{
    justify-items: start; /* mobile giống ảnh: text bên trái */
    padding-bottom: 80px;
  }
  .hero-content{
    background: rgba(0,0,0,.30);
    width: min(520px, 100%);
    display: block;
  }
  .hero-letter{
    left: 6px;
    top: -14px;
    font-size: 150px;
  }
  .hero-wave{ width: 150px; margin-bottom: 14px; }
  .hero-desc{ font-size: 14.5px; }

  .hero-ui{
    bottom: 18px;
    gap: 12px;
  }
  .arrow{ width: 40px; height: 40px; }
}

/* Very small */
@media (max-width: 420px){
  .container{ width: min(var(--page-max), calc(100% - 32px)); }
  .hero-content{ padding: 20px 18px; border-radius: 22px; }
}



/* ================= ABOUT SECTION ================= */

.about .container,
.about-inner{
  background: transparent !important;
}
.about{
  padding: 50px 0;
  color:#222;
  position: relative;
  z-index: 2;
  background-color:rgba(255, 255, 255, 0);
  transform: none !important;
  /* set lại nền (đưa luôn background-image vào CSS cho chắc) */
  background-image: url("/assets/images/about-img2.png");
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  background-attachment:fixed;
  overflow-x: hidden;
  
}

/* Tạo lớp blur mờ */
.about::before{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-0px;
  width:500px;
  height:500px;

  background: radial-gradient(circle,
      rgba(255,255,255,0.9) 0%,
      rgba(255,255,255,0.6) 35%,
      rgba(255,255,255,0.25) 55%,
      rgba(255,255,255,0) 75%
  );

  filter: blur(60px);   /* giảm blur để rõ hơn */
  z-index:1;
  pointer-events:none;
}

.about-dots{
  position: absolute;
  right: -80px;
  bottom: 0px;
  width: 600px;

  z-index: 1;          /* tăng lên */
  opacity: .25;        /* tăng lên để thấy rõ */
  pointer-events: none;
}

.about-inner{
  display:grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 20px;
  align-items:start;
  position:relative;
  z-index:2;
}

/* ===== LEFT ===== */

.about-left{
  position:relative;
}



.about-media{
  position:relative;
}

.about-photo{
  width:100%;
  display:block;
  object-fit:cover;
}

/* curly đè góc trái dưới ảnh chính */
.about-curl{
  position:absolute;
  left:-50px;
  bottom:-40px;
  width:160px;
  opacity:.35;
  pointer-events:none;
  transform: scale(0.8);
  transition: transform 0.8s ease-out 0.4s;
}

.about-left.is-visible .about-curl {
  transform: scale(1);
}

/* ===== RIGHT ===== */

.about-right{
  position:relative;
  padding-top:10px;

}

/* ghost heading */
.about-ghost{
  margin:0;
  font-size:80px;
  line-height:1;
  color:rgba(214,183,130,.25);
  font-family: var(--font-display);
  font-weight:500;
}

/* phần text thụt dòng so với ghost */
.about-copy{
  margin-top:20px;
  padding-left:90px; /* quan trọng: tạo hiệu ứng thụt */
}

.about-kicker{
  font-size:18px;
  letter-spacing:.08em;
  margin-bottom:10px;
  font-family: var(--font-display);
}

.about-title{
  margin:0 0 20px 0;
  font-size:48px;
  font-family: var(--font-display);
}

.about-text{
  max-width:700px;
  font-size:18px;
  line-height:1.7;
  color:#444;
  margin-bottom:28px;
}

.about-btn{
  display:inline-block;
  padding:12px 26px;
  border:1px solid rgba(0,0,0,.4);
  background:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  color:#111;
  border-radius:4px;
  transition:.25s;
}

.about-btn:hover{
  transform:translateY(-2px);
}
.about-curly{
  position:absolute;
  right: -100px;
  bottom:10px;
  width:160px;
  opacity:.35;
  pointer-events:none;
}
/* ===== RESPONSIVE ===== */

/* ===== ABOUT RESPONSIVE ===== */

/* chống tràn ngang toàn section */
.about{
  overflow-x: hidden;
}

/* TABLET */
@media (max-width: 992px){
  .about-inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* ẩn dots trên mobile/tablet */
  .about-dots{
    display: none;
  }

  /* bỏ thụt trái để không bị tràn */
  .about-copy{
    padding-left: 0;
  }

  /* giảm ghost để không tràn */
  .about-ghost{
    font-size: 54px;
    line-height: 1;
    word-break: break-word;
  }

  .about-title{
    font-size: 40px;
  }

  .about-text{
    max-width: 100%;
  }

  /* ảnh luôn nằm trong khung */
  .about-photo{
    width: 100%;
    height: auto;
    display: block;
  }
}

/* MOBILE */
@media (max-width: 576px){
  .about{
    padding: 36px 0;
  }

  .about-ghost{
    font-size: 42px;
  }

  .about-title{
    font-size: 32px;
  }

  .about-kicker{
    font-size: 14px;
  }

  .about-text{
    font-size: 16px;
    line-height: 1.6;
  }

  .about-btn{
    width: 100%;
    text-align: center;
  }
}

.services-wrap{
  color: #222;
  background-image:url("/assets/images/services-bg.png");
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

/* ================= SERVICES GRID ================= */
.services{
  padding: 95px 0;
  background:transparent;
  position: relative;
  overflow: hidden;
}

/* nền mờ nhẹ kiểu "vòng tròn" như ảnh */
.services::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto -120px;
  height: 380px;
  background: radial-gradient(closest-side, rgba(0,0,0,.07), transparent 70%);
  opacity:.35;
  pointer-events:none;
}

.services-inner{
  position:relative;
}

.services-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px 80px;
}

/* card */
.svc-card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap: 14px;
  padding: 6px 0;
  transform: translateZ(0);
  transition: transform .35s ease, filter .35s ease;
}

.svc-icon{
  width: 52px;
  height: 52px;
  object-fit: contain;
  transform-origin: 50% 60%;
  transition: transform .35s ease, filter .35s ease;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.08));
}

.svc-title{
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: #3b2f2a;
  margin: 0;
}

.svc-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color:#4a4a4a;
  max-width: 330px;
}

/* hover nhẹ cho đỡ khô */
.svc-card:hover{
  transform: translateY(-6px);
}
.svc-card:hover .svc-icon{
  transform: rotate(-3deg) translateY(-2px) scale(1.03);
}

/* ===== reveal animation (fade-up) ===== */
.reveal-up{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
}
.reveal-up.is-inview{
  opacity:1;
  transform: translateY(0);
}

/* ===== BEFORE / AFTER (CodyHouse style) ===== */
.cd-image-container{
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0;
  --pos: 50%; /* vị trí line */
}

.cd-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* layer AFTER ở trên: full khung + bị cắt bằng clip-path */
.cd-resize-img{
  position:absolute;
  inset:0;
  overflow: visible;              /* không dùng overflow để resize */
  z-index:3;

  /* ✅ cắt theo --pos: lộ từ trái -> phải */
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  border-right: 1px solid rgba(206,206,206,.34); /* sẽ không chạy theo clip nên ta xử lý bằng line */
}

/* labels */
.cd-image-label{
  position:absolute;
  bottom:14px;
  font-size:14px;
  color:#000;
  z-index:6;
  user-select:none;
}
.cd-label--before{ left:14px; z-index:4; }
.cd-label--after{ right:14px; z-index:6; } /* nằm trong layer resize */

/* line + handle */
.cd-handle{
  position:absolute;
  top:0;
  bottom:0;
  left: var(--pos);
  width:2px;
  background: rgba(255,255,255,.7);
  transform: translateX(-1px);
  z-index:10;
  cursor: ew-resize;
}

.cd-handle::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:44px;
  height:44px;
  border-radius:999px;
  background:#111;
  transform: translate(-50%,-50%);
  box-shadow:0 8px 18px rgba(0,0,0,.25);
}

.cd-chevron{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-120%,-50%);
  color:#fff;
  font-size:18px;
  font-weight:700;
  z-index:11;
  user-select:none;
}
.cd-chevron--right{
  transform: translate(20%,-50%);
}
/* responsive */
@media (max-width: 768px){
  .cd-image-container{ max-width: 100%; }
}

/* respect reduce motion */
@media (prefers-reduced-motion: reduce){
  .svc-card, .svc-icon, .reveal-up{
    transition:none !important;
    transform:none !important;
  }
}

/* responsive */
@media (max-width: 992px){
  .services-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 50px;
  }
}
@media (max-width: 640px){
  .services{
    padding: 70px 0;
  }
  .services-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .svc-card{
    align-items: center;
    text-align: center;
  }
  .svc-desc{ max-width: 100%; }
}
/* map-box */
.map-index{
  padding-top:20px;
}
.map-box{
  width: min(720px, 100%);   /* to theo màn hình nhưng không vượt 720 */
  height: 660px;             /* chỉnh cao tùy bạn */
  margin: 0 auto;            /* căn giữa trong thẻ right */
  /* nếu thẻ cha đang là flex và không cho margin auto ăn */
  display: flex;
  justify-content: center;

  overflow: hidden;
  border-radius: 10px;
}

/* ép iframe ăn theo khung (để width/height của map-box có tác dụng) */
.map-box > iframe{
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block;
}

/* ================= BOOKING SECTION ================= */

.booking-inner{
  display:grid;
  grid-template-columns: 45% 55%;
  min-height: 540px;
   /* ẢNH NỀN */
  /* background: url("../images/booking-bg.png") center/cover no-repeat; */
  overflow:hidden;
}

/* ===== LEFT CÓ ẢNH NỀN ===== */

.booking-left{
  position:relative;
  display:flex;
  align-items:center;
  padding:80px 90px;
  color:#000000;

 
}



/* hiệu ứng ánh vàng */
.booking-left::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,170,60,.35), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,140,0,.25), transparent 60%);
  mix-blend-mode: screen;
  opacity:.7;
  z-index:1;
  pointer-events:none;
}

.booking-content{
  position:relative;
  z-index:2;
}

/* ghost text */
.booking-ghost{
  font-family: var(--font-display);
  font-size:85px;
  color:rgba(214, 183, 130, .25);
  margin:0 0 15px 0;
  font-weight: 400;
}

/* title */
.booking-title{
  font-family: var(--font-display);
  font-size:46px;
  margin-bottom:25px;
}

/* hours */
.booking-hours{
  font-size:20px;
  line-height:1.8;
  margin-bottom:25px;
  color:#080808;
}

/* phone */
.booking-phone{
  font-size:20px;
  margin-bottom:30px;
}

/* button */
.booking-btn{
  display:inline-block;
  padding:12px 28px;
  background:#fff;
  color:#000;
  text-decoration:none;
  font-weight:600;
  font-size:18px;
  border-radius:4px;
  transition:.3s;
  border: 1px solid rgba(0, 0, 0, .4);
}

.booking-btn:hover{
  transform:translateY(-3px);
}

/* RIGHT IMAGE */
.booking-right img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.booking-indent{
  padding-left: 90px; 
}
/* ===== RESPONSIVE ===== */

@media (max-width: 992px){
  .booking-inner{
    grid-template-columns:1fr;
  }
  .booking-right .map-index {
    padding-top:0;
    /* display: none; */
  }
  .booking-left {
    text-align: center;
    padding: 60px 60px;
  }
  .booking-indent{
    padding-left: 0;
  }
  .booking-ghost{
    display: none;
  }

  .booking-title{
    font-size:34px;
  }
}

/* ================= PROMO SECTION ================= */

.promo{
  position:relative;
  padding:100px 0;
  background:#0b0b0b;
  color:#fff;
  overflow:hidden;
  background: url("../images/promo-bg.png") center/cover no-repeat;
}

/* gold shimmer particles */
.promo::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,180,60,.3) 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(255,180,60,.25) 2px, transparent 3px),
    radial-gradient(circle at 50% 80%, rgba(255,180,60,.2) 2px, transparent 3px);
  background-size: 180px 180px;
  animation: sparkleMove 18s linear infinite;
  opacity:.4;
  pointer-events:none;
}

@keyframes sparkleMove{
  from{ transform: translateY(0); }
  to{ transform: translateY(-120px); }
}

.promo-inner{
  display:grid;
  grid-template-columns: 45% 55%;
  align-items:center;
  gap:80px;
  position:relative;
  z-index:2;
}

/* LEFT + RIGHT common */
.promo-left,
.promo-right{
  display:flex;
  flex-direction:column;
  gap:18px;
  transition:transform .4s ease;
}

.promo-icon{
  width:55px;
  height:55px;
  object-fit:contain;
  filter: drop-shadow(0 8px 20px rgba(255,170,60,.3));
  transition: transform .4s ease;
}

.promo-title{
  font-family: var(--font-display);
  font-size:36px;
  font-weight:500;
  margin:0;
}

.promo-text{
  font-size:18px;
  line-height:1.8;
  color:#ddd;
}

.promo-text span{
  font-size:13px;
  opacity:.8;
}

/* hover effect */
.promo-left:hover,
.promo-right:hover{
  transform:translateY(-6px);
}
.promo-left:hover .promo-icon,
.promo-right:hover .promo-icon{
  transform:scale(1.1) rotate(-5deg);
}




/* responsive */
@media (max-width:992px){
  .promo-inner{
    grid-template-columns:1fr;
    gap:50px;
  }
  .promo-title{
    font-size:28px;
  }
}


/* ================= FOOTER ================= */

.site-footer{
  background:#000;
  padding:30px;
  text-align:center;
  position:relative;
  overflow:hidden;
}

/* subtle gold glow background */
.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,180,60,.15), transparent 60%);
  opacity:.4;
  pointer-events:none;
}

.footer-inner{
  position:relative;
  z-index:2;
}

/* LOGO */
.footer-logo img{
  width:120px; /* chỉnh tùy bạn */
  height:auto;
  margin-bottom:30px;
  transition:transform .4s ease;
}

.footer-logo img:hover{
  transform:scale(1.05);
}

/* SOCIAL */
.footer-social{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:30px;
}

.social-link{
  width:46px;
  height:46px;
  border:1px solid rgba(255,180,60,.6);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}

.social-link img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition:.3s;
}

/* hover effect */
.social-link:hover{
  background:rgba(255,180,60,.15);
  transform:translateY(-4px);
}

.social-link:hover img{
  filter:none;
}

/* COPY */
.footer-copy{
  font-size:14px;
  color:#ccc;
  font-family: var(--font-display);
}
/* ================= PAGE BANNER (SHARED) ================= */
.page-banner{
  position: relative;
  min-height: 360px;           /* chiều cao giống kiểu ảnh */
  display: flex;
  align-items: center;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.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;
  }
}


.page-banner__inner{
  position: relative;
  z-index:2;
}

.page-banner__title{
  margin:0;
  color:#fff;
  font-family: var(--font-display);
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 500;
  letter-spacing: .01em;
}

/* responsive */
@media (max-width: 768px){
  .page-banner{
    min-height: 210px;
  }
}

/* ================= MENU HERO (PEDICURES) ================= */

.menu-hero{
  background:#fff;
  padding: 50px 0;
  color:#222;
  position: relative;
  z-index: 2;
}

.menu-hero__inner{
  display:grid;
  grid-template-columns: 0.9fr 1fr;  /* trái text/menu - phải ảnh */
  gap: 40px;
  align-items:start;
}

/* LEFT */
.menu-hero__left{ position:relative; }

/* ghost heading */
.menu-hero__ghost{
  margin:0;
  font-size:80px;
  line-height:1;
  color:rgba(214,183,130,.25);
  font-family: var(--font-display);
  font-weight:500;
}

/* phần nội dung thụt vào so với ghost */
.menu-hero__copy{
  margin-top: 10px;
  padding-left: 70px; /* thụt như design */
}

.menu-hero__title{
  margin: 0 0 18px 0;
  font-size: 44px;
  font-family: var(--font-display);
  font-weight:500;
  color:#3b2f2a;
}


.menu-hero__right{
  position: relative;
}

.menu-hero__media{
  width: 100%;
  /* max-width: 520px; */
}

.menu-hero__photo{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px; /* nếu bạn muốn bo nhẹ */
}


/* ================= MENU LIST ================= */

.menu-list{
  margin-top: 10px;
}

.menu-item{
  padding: 5px 0 5px;
}
.menu-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding-bottom:8px;
  border-bottom: 1px dashed rgba(0,0,0,.35); /* nét đứt như thiết kế */
}

.menu-name{
  margin:0;
  font-size:18px;
  letter-spacing:.06em;
  font-weight:700;
  color:#4B3C3B;
  /* text-transform:uppercase; */
}

.menu-price{
  font-size:18px;
  font-weight:700;
  color:#4B3C3B;
  white-space:nowrap;
}

/* mô tả italic như ảnh */
.menu-desc{
  margin: 10px 0 0 0;
  font-size: 16px;
  line-height: 1.7;
  color:#191919;
  font-style: italic;
  max-width: 640px;
}

.menu-note{
  display:inline-block;
  margin-top: 6px;
  font-style: normal;
  letter-spacing:.06em;
  font-size: 16px;
  color:#191919;
  text-transform: uppercase;
}

.menu-group-title{
  margin: 35px 0 15px 0;
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 500;
  color:#3b2f2a;
}

.menu-group-title:first-of-type{
  margin-top: 10px;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px){
  .menu-hero__inner{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .menu-hero__inner.image-on-left > .menu-hero__left {
    order: 2;
  }
  
  .menu-hero__inner.image-on-left > .menu-hero__right {
    order: 1;
  }

  .menu-hero__copy{
    padding-left: 0;
  }

  .menu-hero__ghost{
    font-size: 34px;
  }
  .menu-hero__title{
    font-size: 30px
  }
  .menu-hero__media{
    max-width: 560px;
    margin: 0;
  }

  .menu-name{
    white-space: normal;
  }
}



.salon{
  background: #fff;
  padding: 80px 0;
}

.salon__wrap{
  max-width: var(--page-max, 1200px);
  margin: 0 auto;
}

/* Heading with lines */
.salon__heading{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 46px;
}

.salon__title{
  margin: 0;
  font-family: var(--font-title, "Lato", Helvetica, Arial, sans-serif);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #A68230;
  white-space: nowrap;
}

.salon__line{
  height: 1px;
  width: min(280px, 22vw);
  background: rgba(166,130,48,.55);
}

/* Grid images */
.salon__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Square item */
.salon__item{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.2; 
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border-radius: 2px;
  /* box-shadow: 0 18px 45px rgba(0,0,0,.35); */
  text-decoration: none;
  transform: translateZ(0);
}

.salon__item img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .45s ease, filter .45s ease;
}


.salon__item::before{
  content: "+";
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.9);
  font-family: var(--font-title, "Lato", Helvetica, Arial, sans-serif);
  font-size: 22px;
  opacity: 0;
  transform: translateY(6px);
  transition: .25s ease;
}

/* Hover */
.salon__item:hover img{
  transform: scale(1.08);
  filter: brightness(1);
}
.salon__item:hover::after{ opacity: 0; }
.salon__item:hover::before{
  opacity: 1;
  transform: translateY(0);
}

/* ===== iPad ===== */
@media (max-width: 1024px){
  .salon{ padding: 64px 18px; }
  .salon__grid{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .salon__title{ font-size: 26px; }
  .salon__heading{ margin-bottom: 34px; gap: 18px; }
  .salon__line{ width: min(220px, 20vw); }
}

/* ===== Mobile ===== */
@media (max-width: 768px){
  .salon{ padding: 52px 16px; }
  .salon__grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .salon__title{
    font-size: 20px;
    letter-spacing: .22em;
  }

  .salon__line{ width: 18vw; }
}

@media (max-width: 420px){
  .salon__grid{ grid-template-columns: 1fr; }
  .salon__line{ display: none; }
}

/* ================= CONTACT SPLIT ================= */
.contact-split{
  background:#fff;
  padding: 70px 0;
  color:#222;
}

.contact-split__inner{
  display:grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 50px;
  align-items:start;
}

/* LEFT */
.contact-split__left{ position:relative; }

.contact-split__ghost{
  margin:0;
  font-size:80px;
  line-height:1;
  color:rgba(214,183,130,.25);
  font-family: var(--font-display);
  font-weight:500;
}

.contact-split__copy{
  margin-top: 10px;
  padding-left: 80px; /* thụt giống ảnh */
}

.contact-split__title{
  margin:0 0 18px 0;
  font-size:44px;
  font-family: var(--font-display);
  font-weight:500;
  color:#3b2f2a;
}

.contact-split__block{
  margin-top: 18px;
}

.contact-split__name{
  font-weight:700;
  color:#111;
  margin-bottom: 4px;
  font-size: 20px;
}

.contact-split__addr{
  font-size:13px;
  color:#444;
  font-size: 18px;

}

.contact-split__label{
  font-weight:700;
  margin-bottom: 6px;
  font-size: 20px;

}

.contact-split__hours{
  font-size:13px;
  line-height:1.7;
  color:#444;
  font-size: 18px;

}

.contact-split__phone{
  margin-top: 22px;
  font-size:20px;
  font-weight:700;
  color:#111;
}

/* RIGHT */
.contact-split__right{
  display:flex;
  justify-content:flex-end;
}

.contact-split__media{
  width: 100%;
  max-width: 600px;
}

.contact-split__photo{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
  border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .contact-split__inner{
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-split__copy{
    padding-left: 0;
  }
  .contact-split__right{
    justify-content:flex-start;
  }
  .contact-split__ghost{
    font-size: 64px;
  }
}


.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: #2e2e2e;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.floating-icons a:hover {
  background: #555;
}

.floating-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.floating-icons a:hover img {
  transform: scale(1.1);
}

@media (max-width: 992px){
  .floating-icons {
  
  top: 20%;
  
  }
}


.working{
  width:100%;
}

.working-inner{
  display:flex;
  min-height:520px;
}

.working-left{
  flex:1;
  position:relative;
  background:#0c0c0c;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}



.working-content{
  position:relative;
  padding:70px 80px;
  color:#fff;
  width:100%;
  max-width:900px;
  

}

.working-ghost{
  position:absolute;
  left:40px;
  top:10px;
  font-family: var(--font-display);
  font-size:85px;
  color:rgba(214, 183, 130, .25);
  margin:0 0 15px 0;
  font-weight: 400;
  white-space:nowrap;
}

.working-icon{
  font-size:40px;
  margin-bottom:20px;
}

.working-title{
  font-family: var(--font-display);
  font-size:46px;
  margin-bottom:25px;
  white-space:nowrap;
}

.working-hours{
  border-top:1px solid rgba(255,255,255,.15);
  border-bottom:1px solid rgba(255,255,255,.15);
}

.working-hours .row{
  display:flex;
  justify-content:space-between;
  padding:18px 0;
}

.working-hours .row + .row{
  border-top:1px solid rgba(255,255,255,.15);
}

.working-note{
  margin-top:25px;
  opacity:.9;
}

.working-right{
  flex:1.1;
  overflow:hidden;
}

.working-right img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@media (max-width: 992px){
  .working-inner{
    grid-template-columns:1fr;
  }
  .working-left {
    text-align: center;
    padding: 80px 24px;
  }
  .working-indent{
    padding-left: 0;
  }
  .working-ghost{
    font-size:60px;
  }

  .working-title{
    font-size:34px;
  }
  
}
/* TABLET */
@media (max-width: 1024px){

  .working-inner{
    flex-direction: column;
  }

  .working-left,
  .working-right{
    width:100%;
  }

  .working-content{
    padding:60px 40px;
  }

  .working-title{
    font-size:48px;
  }

  .working-ghost{
    display: none;
  }

}


/* MOBILE */
@media (max-width: 768px){

  .working-content{
    padding:40px 24px;
  }

  .working-title{
    font-size:36px;
  }

  .working-ghost{
    
  }

  .working-hours .row{
    flex-direction: column;
    gap:6px;
  }

  .working-hours .row span:last-child{
    font-weight:600;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px){

  .working-title{
    font-size:30px;
  }

  .working-ghost{
    /* font-size:48px; */
  }

  .working-note{
    font-size:14px;
  }

}


/* ================= POLICY SECTION ================= */

.policy .container,
.policy-inner{
  background: transparent !important;
}

.policy{
  padding: 50px 0;
  color: #222;
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0);
  transform: none !important;
  background-image: url("/assets/images/about-img.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* lớp blur mờ */
.policy::before{
  content: "";
  position: absolute;
  right: -120px;
  bottom: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(255,255,255,0.9) 0%,
      rgba(255,255,255,0.6) 35%,
      rgba(255,255,255,0.25) 55%,
      rgba(255,255,255,0) 75%
  );
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.policy-dots{
  position: absolute;
  right: -80px;
  bottom: 0;
  width: 600px;
  z-index: 1;
  opacity: .25;
  pointer-events: none;
}

.policy-inner{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 500px;
}

/* ===== CONTENT ===== */

.policy-copy{
  max-width: 850px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.policy-kicker{
  font-size: 18px;
  letter-spacing: .08em;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.policy-title{
  margin: 0 0 20px 0;
  font-size: 48px;
  font-family: var(--font-display);
}

.policy-subtitle{
  font-size:28px;
  margin:30px 0 10px;
  font-family: var(--font-display);
}

.policy-text{
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.policy-btn{
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid rgba(0,0,0,.4);
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  border-radius: 4px;
  transition: .25s;
}

.policy-btn:hover{
  transform: translateY(-2px);
}

.policy-curly{
  position: absolute;
  right: -100px;
  bottom: 10px;
  width: 160px;
  opacity: .35;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */

.policy{
  overflow-x: hidden;
}

/* TABLET */
@media (max-width: 992px){
  .policy-inner{
    min-height: auto;
    padding: 20px 0;
  }

  .policy-dots{
    display: none;
  }

  .policy-title{
    font-size: 40px;
  }

  .policy-text{
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 576px){
  .policy{
    padding: 36px 0;
    background-attachment: scroll;
  }

  .policy-title{
    font-size: 32px;
  }

  .policy-kicker{
    font-size: 14px;
  }

  .policy-text{
    font-size: 16px;
    line-height: 1.6;
  }

  .policy-btn{
    width: 100%;
    text-align: center;
  }
}


/* BLOG */

.main-wrapper {
  background-size: cover;
  background-position: center;
  padding: 10px 20px;
  padding-bottom: 10px;
}
.main-wrapper {
  background-attachment: fixed;
  /* cố định khi scroll */
}

.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(27, 27, 27, 0.65); trắng 80% opacity */
  color: rgb(0, 0, 0);
  padding: 50px;
  border-radius: 60px;
  line-height: 1.7;
}
.main-content h1 {
  font-size: 26px;
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1;
}
.main-content h2 {
  font-size: 26px;
  margin: 0 0 12px;
  font-weight: 400;
  line-height: 1;
}
.main-content p {
  margin: 0 0 16px;
  color: #131313;
}
.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: #808080;
}
.main-content ul li::before {
  content: "-";
  position: absolute;
  left: 10px;
  /* top: 6px;
  width: 10px;
  height: 10px; */
  border-radius: 50%;
  /* background: var(--color-accent);  */
}
.news-sidebar {
  background: rgb(255, 255, 255); trắng 80% opacity
  color: #050505;
  padding: 20px;
  border-radius: 60px;
  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;
  color: #000000;
}
.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: #111111;
  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;
  }
}


/* Promotion */
/* ===== PROMOTION ===== */

/* ===== PROMOTION ===== */

/* ===== PROMOTION ===== */
.promotion{
  padding: 80px 0;
}

.promotion-inner{
  display: flex;
  justify-content: center;
}

.promotion-slider{
  width: min(1024px, 100%);
  overflow: hidden;
  touch-action: pan-y;
}

.promotion-track{
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.promotion-item{
  flex: 0 0 100%;
  aspect-ratio: 1 / 1;
}

.promotion-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  user-select: none;
  -webkit-user-drag: none;
}

/* tablet */
@media (max-width: 991px){
  .promotion{
    padding: 60px 0;
  }

  .promotion-slider{
    width: min(380px, 100%);
  }

  .promotion-item img{
    border-radius: 12px;
  }
}

/* mobile */
@media (max-width: 767px){
  .promotion{
    padding: 40px 0;
  }

  .promotion-inner{
    padding: 0 16px;
  }

  .promotion-slider{
    width: 100%;
    max-width: 320px;
  }

  .promotion-item img{
    border-radius: 10px;
  }
}

/* mobile nhỏ */
@media (max-width: 480px){
  .promotion-inner{
    padding: 0 12px;
  }

  .promotion-slider{
    max-width: 280px;
  }
}