/* Desktop */
.logo img {
  height: 42px;     /* controls logo size */
}

/* Mobile */
@media (max-width: 768px) {
  .logo img {
    height: 28px;
  }
}

    :root {
        --bg: #f6f4f1;
        --dark: #274732;   /* 🌿 main text color */
        --accent: #b89b72;
    }

    a {color: var(--dark);text-decoration: none;}
    header a,footer a {color: var(--dark);}
    p {opacity: 0.9;}


    * { box-sizing: border-box; }
    body {
        margin: 0;
        font-family: 'Outfit', sans-serif;
        background: url("images/bg.jpg") center / cover no-repeat fixed;           /* background image */
        color: var(--dark);
        line-height: 1.6;
    }

    body {
        padding-top: 64px; /* adjust to your header height on desktop */
    }

    @media (max-width: 768px) {
        body {
            padding-top: 56px; /* adjust to your mobile header height */
        }
    }


    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 32px;
    }

    header {
        position: fixed;       /* keeps header always on top */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;         /* above all content */
        background-color: #fff; /* match your header background */
        box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* subtle shadow for luxury look */
    }

    /* Optional: add a smooth transition for scroll effects */
    header {
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .nav {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .nav-links {
        display: flex;
        gap: 24px;
    }

    .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 15px;
        cursor: pointer;
    }
    @media (max-width: 768px) {
        header {
           padding-left: 8px;   /* reduce left gap */
           padding-right: 12px;
        }
        .logo {margin-left: 0;     /* ensure no extra offset */}

        /* hide page links on mobile */
        .nav-links {
            display: none;
        }

        /* show menu button */
        .menu-toggle {
            display: block;
        }

        /* keep book button visible */
        .book-btn {
            margin-left: auto;
        }

        /* dropdown menu */
        .nav.open .nav-links {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 64px;
            right: 16px;
            background: #fff;
            padding: 16px;
            border-radius: 6px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
            gap: 12px;
            z-index: 1000;
        }
    }

    header a {
      text-decoration: none;
      color: var(--dark);
      margin-left: 30px;
      font-weight: 400;
      font-size: 14px;
    }
    @media (min-width: 769px) {header a {font-size: 17px;font-weight: 500;}}
    
    .tripadvisor-awards {
        padding: 48px 10%;
        text-align: center;
    }
    
    h1, h2, h3 {font-family: 'Playfair Display', serif;}
    

    .award-title {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
        letter-spacing: 1.5px;
    }


    .award-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 32px;
        flex-wrap: nowrap;          /* 🔑 force one line */
    }

    .award-item {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 0 0 auto;             /* 🔑 prevents stretching */
    }

    /* Keep original badge ratio */
    .award-item img {
        width: 110px;
        height: auto;
        display: block;
        object-fit: contain;
    }

    /* Kill TripAdvisor spacing */
    .award-item ul,
    .award-item li {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
    }
    @media (max-width: 768px) {
        .award-grid {
            overflow-x: auto;
            flex-wrap: nowrap;
            justify-content: flex-start;
            padding-bottom: 8px;
            -webkit-overflow-scrolling: touch;
        }

        .award-item {
            min-width: 120px;
        }
    }

    .logo {
        display: flex;
        align-items: center;
    }
    
/* ===== High-conversion Book Button ===== */
.book-btn {
  background: linear-gradient(135deg, #3b7d5a, #274732);
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 14px 34px;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;

  box-shadow: 0 8px 22px rgba(39, 71, 50, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* Hover */
.book-btn:hover {
  background: linear-gradient(135deg, #4a9b71, #3b7d5a);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(39, 71, 50, 0.45);
}

/* Click */
.book-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(39, 71, 50, 0.3);
}

/* Pulse attention effect */
@keyframes bookPulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 155, 113, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(74, 155, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 155, 113, 0); }
}

.book-btn {
  animation: bookPulse 3s infinite;
}
@media (max-width: 768px) {
  .book-btn {
    font-size: 19px;
    padding: 16px 42px;
  }
}

    .btn {
      border: 1px solid var(--dark);
      padding: 10px 22px;
      text-transform: uppercase;
      font-size: 12px;
    }

    .hero {
        min-height: 70vh;    /* responsive height */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        display: flex;
        align-items: center;
        padding: 0 10%;

        position: relative;
    }
    @media (max-width: 768px) {
        .hero {
            min-height: 60vh;
            padding: 0 16px;
            background-position: center top;
        }
    }
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
    }
   
    .hero h1 {
        position: relative;              /* 🔑 keeps text above overlay */
        font-family: 'Playfair Display', serif;
        font-size: 58px;
        max-width: 520px;
        line-height: 1.1;
        color: #fff;                     /* white for contrast */
    }
    
    section {
      padding: 1% 10%;
    }


    /* At 22Spa gallery – square cards */
    .gallery {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        cursor: grab;
        scrollbar-width: none;
    }
    
    .gallery:active {
        cursor: grabbing;
    }

    .gallery img {
        flex: 0 0 auto;
        width: 300px;              /* desktop card size */
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
        border-radius: 6px;
        scroll-snap-align: start;
        user-drag: none;
        -webkit-user-drag: none;
        pointer-events: none;
        user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
    }
    
    .gallery::-webkit-scrollbar {
        display: none;
    }
    
    @media (max-width: 768px) {
        .gallery img {
        width: 75%;
        max-width: 280px;
        }
    }

    footer {
        background: rgba(246, 244, 241, 0.9); /* same as header */
        color: var(--dark);

        padding: 40px 10%;   /* 🔽 smaller footer */
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
    @media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "address address"
      "explore book";
    gap: 24px;
    padding: 32px 16px;
  }

  footer > div:nth-child(1) {
    grid-area: address;
  }

  footer > div:nth-child(2) {
    grid-area: explore;
  }

  footer > div:nth-child(3) {
    grid-area: book;
  }
}

    footer h4 {
      font-family: 'Playfair Display', serif;
    }

    footer a {
        color: var(--dark);
        text-decoration: none;
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
    }

    @media (min-width: 769px) and (max-width: 900px) {
      .split { grid-template-columns: 1fr; }
      .service-list { grid-template-columns: 1fr; }
      header { padding: 15px 30px; }
      .hero h1 { font-size: 42px; }
    }
    .menu-toggle {
        display: none;
        background: none;
        border: none;
        padding: 6px;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background-color: #274732; /* your brand color */
        margin: 4px 0;
    }
    @media (max-width: 768px) {
        .menu-toggle {display: block;}
    }
    .whatsapp-btn {
        width: 120px;        /* adjust size here */
        height: auto;        /* keep original ratio */
        display: block;
    }
    .zalo-btn {
        width: 120px;      /* same size for both */
        height: auto;
        display: block;
    }

.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 10%;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  text-align: center;
  margin-bottom: 24px;
}

.faq-item {
  border-top: 1px solid #ddd;
  padding: 14px 0;
}

.faq-question {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  position: relative;
  padding-right: 24px;
}

/* + sign */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  font-size: 15px;
  margin-top: 8px;
  opacity: 0.9;
}

/* Active state */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

