/* ---------- GLOBAL ---------- */
@import url('https://fonts.cdnfonts.com/css/euclid-circular-a');

:root {
  --bg-color: #fffbf5;
  --theme-color: #a95917;
  --font-color: #fbf7ba;
  --side-gap: 5rem;
  --yellow:#fbf7ba;
  --page-bg: #fffbf5;
  --brand: #c79a5a;
  --theme: #a95917;
  --text: #1d1d1f;
  --muted: #6b6b6b;
  --side-gap: clamp(16px, 6vw, 5rem);
  --logo-extra-gap-mobile: clamp(8px, 4vw, 18px);
  --drawer-bg: #c79a5a;
  --hover-bg: #a87f44;
  --drawer-text: #ffffff;
  --panel-w: 420px;
  --panel-pad: clamp(18px, 4vw, 26px);
  --gap:clamp(24px,5vw,64px); --side:clamp(16px,6vw,80px);
  --radius:10px; --shadow:0 10px 30px rgba(0,0,0,.12);
  --g:12px;
  --anim-up: 28px;   

}

@font-face {
    font-family: "Euclid Circular A";
    src: url("../font/EuclidCircularA-Medium.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    }

    /* Euclid Circular A - SemiBold */
    @font-face {
    font-family: "Euclid Circular A";
    src: url("../font/Euclid CircularA-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    }

    /* Baskerville (Italic, Regular) */
    @font-face {
    font-family: "Baskerville Custom";
    src: url("../font/baskervi.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
    }

    /* Baskerville Bold Italic */
    @font-face {
    font-family: "Baskerville Custom";
    src: url("../font/BaskervilleBoldItalicBT.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
    }



    *, *::before, *::after { box-sizing: border-box; }
    html, body { height: 100%; margin: 0; }
    body {
      background: var(--page-bg);
      color: var(--text);
      font-family: "Euclid Circular A", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    }

/* ===== NAVBAR ===== */
header.navbar {
  position: relative;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(8px, 2vw, 16px);
  padding: 12px calc(var(--side-gap) + env(safe-area-inset-right)) 12px calc(var(--side-gap) + env(safe-area-inset-left));
  background: transparent;
  transition: padding .25s ease, background-color .25s ease, box-shadow .25s ease;
  cursor: default;
}

.logo {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  pointer-events: none; /* Disable clicks on container */
}
.logo img {
  height: 60px;
  width: auto;
  display: block;
  cursor: pointer;
  transition: transform .2s ease;
  pointer-events: auto; /* Re-enable clicks only on image */
}
.logo img:hover {
  transform: scale(1.04);
}

body.scrolled header.navbar {
  background: rgba(255, 251, 245, .92);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
  backdrop-filter: saturate(1.2) blur(6px);
}

.actions { display: flex; align-items: center; gap: 10px; }

.book-btn {
  background: var(--theme);
  color: #fff; border: 0; border-radius: 999px;
  padding: 0 16px;
  font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  font-size: 12px; height: 44px; line-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .08s ease;
  text-decoration: none; white-space: nowrap;
  cursor: pointer;
}
.book-btn:hover { background: #b07d3f; }
.book-btn:active { transform: translateY(1px); }
.book-btn .ico { margin-right: 8px; font-size: 14px; }

.menu-btn {
  background: transparent; border: 0; width: 44px; height: 44px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border-radius: 8px;
}
.menu-btn:hover { background: rgba(0,0,0,.06); }
.menu-btn span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s ease; }

/* ===== Drawer ===== */
.drawer { position: fixed; inset: 0; display: none; z-index: 2000; }
.drawer.active { display: block; }
.overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); }

.panel {
  position: absolute; top: 0; right: 0; height: 100vh; width: min(92vw, var(--panel-w));
  background: var(--drawer-bg); color: var(--drawer-text);
  display: flex; flex-direction: column; transform: translateX(100%);
  transition: transform .3s ease-in-out; box-shadow: -22px 0 40px rgba(0,0,0,.25);
}
.drawer.active .panel { transform: translateX(0); }

.topbar { display: flex; justify-content: space-between; align-items: center; padding: var(--panel-pad); }
.topbar img { height: 48px; width: auto; display: block; cursor: pointer; }
.close { background: none; border: 0; color: #fff; font-size: 26px; cursor: pointer; line-height: 1; }

.scroll { flex: 1; overflow: auto; padding: 10px var(--panel-pad); }
.navlist { list-style: none; margin: 0; padding: 0; }
.navlist li { margin: 8px 0; }
.navlist a { color: #fff; text-decoration: none; font-weight: 600; font-size: clamp(15px, 2.8vw, 16px); display: block; padding: 14px 12px; border-radius: 8px; transition: padding-left .18s ease, background .18s ease; }
.navlist a:hover { background: var(--hover-bg); padding-left: 20px; }

.bottom { padding: 10px var(--panel-pad) 18px; }
.socials { display: flex; flex-wrap: wrap; gap: 18px; }
.socials a { color: #fff; font-size: 20px; text-decoration: none; }
.xhs { width: 20px; height: 20px; background: #fff; display: inline-block; -webkit-mask: url('../ContactUs-img/xhs_logo.png') center/contain no-repeat; mask: url('../ContactUs-img/xhs_logo.png') center/contain no-repeat; }

@media (max-width: 640px) {
  header.navbar { padding-left: calc(var(--side-gap) + env(safe-area-inset-left) + var(--logo-extra-gap-mobile)); }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Euclid Circular A', sans-serif;
  background-color: var(--bg-color);
  color: var(--theme-color);
  overflow-x: hidden;
  
}

/* ---------- NAVBAR ---------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background-color: var(--bg-color);
}

.logo img {
  height: 60px;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.book-btn {
  background-color: var(--theme-color);
  color: var(--bg-color);
  font-weight: 600;
  border: none;
  padding: 10px 24px;
  border-radius: 40px;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: 0.3s ease;
}

.book-btn:hover {
  opacity: 0.8;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 16px;
  cursor: pointer;
}

.menu-icon span {
  width: 25px;
  height: 2px;
  background-color: var(--theme-color);
  border-radius: 2px;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1); /* adjust opacity (0.3–0.6) for lighter/darker shadow */
  z-index: 1;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}

/* Smooth pan animation for hero banner */
.hero-img-pan {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center 70%;
  display: block;

  /* subtle movement */
  transform: scale(1.01);              /* small zoom in so edges don’t show */
  animation: hero-pan 15s ease-in-out infinite alternate;
  will-change: transform;
}

/* Keyframes: gentle pan left/right + tiny vertical shift */
@keyframes hero-pan {
  0% {
    transform: scale(1.06) translate3d(20px, 0, 0);     /* slightly to the right */
  }
  50% {
    transform: scale(1.06) translate3d(-20px, -6px, 0); /* drift left & a bit up */
  }
  100% {
    transform: scale(1.06) translate3d(20px, 0, 0);     /* back to the right */
  }
}

/* Disable or reduce on small screens / reduced motion */
@media (max-width: 860px) {
  .hero-img-pan {
    animation-duration: 20s; /* even slower on mobile, or set to none; */
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img-pan {
    animation: none;
    transform: none;
  }
}


/* caption now overlays the banner */
.hero-caption {
  position: absolute;
  bottom: 70%;             /* vertical placement inside image */
  left: 6%;
  right: 6%;
  color: white;
  z-index: 3;
  text-align: left;
}

.hero-main-tagline{
  font-family: 'Euclid Circular A', sans-serif;

}

.hero-tagline {
  font-family: 'Euclid Circular A', sans-serif;
  line-height: 1.4;
  font-weight: 200;
  font-size: clamp(30px, 4vw, 30px);
  color: white;
}

.hero-tagline span {
  color: var(--yellow);
}

/* optional: smaller text & more contrast on mobile */
@media (max-width: 860px) {
  .hero-caption {
    top: 10%;
    text-align: center;
  }
  .hero-tagline {
    font-size: clamp(18px, 4.5vw, 28px);
  }
  .hero-image img{
    object-position:30% 70%;
  }
}


/* ===== Highlights Bar ===== */
.highlights{
  background: var(--theme);
  padding: clamp(10px, 1.2vw, 14px) 5%;
  position: relative;
  z-index: 5; /* sits above the image edge */
}

.hi-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.6vw, 20px);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hi-item{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--yellow);
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: center;
  justify-content: center;
  font-family: "Baskerville Custom";
}

.hi-ico{
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(169,89,23,.08);
}
.hi-ico i{ font-size: 18px; color: var(--yellow); }

.hi-text{ line-height: 1.2; }
.hi-title{
  font-weight: 800;
  letter-spacing: .03em;
  font-size: clamp(15px, 0.8vw + 12px, 18px);
}

/* MOBILE — lock to 4 columns, no scroll */
@media (max-width: 900px){
  .highlights{ padding: 10px 5%; }

  .hi-wrap{
    display: grid;                      /* stay as grid */
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: center;
    text-align: center;
  }

  .hi-item{
    padding: 6px 4px;
    gap: 6px;
    border: 0;                          /* labels only */
  }

  .hi-ico{ width: 2rem; height: 2rem; }
  .hi-ico i{ font-size: 12px; }
  .hi-title{
    font-size: 12px;
    line-height: 1.0;
  }
}




/* ---------- ABOUT ---------- */
.about {
  background: var(--bg-color);
  padding: var(--side-gap);

}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 6vw, 96px);
  align-items: start;
}

.about-left { 
  display: flex; 
  flex-direction: column; 
  align-items: flex-start;
}

.about-right p{
  font-family:"Euclid Circular A",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

@media (max-width: 860px){
  .about-left { 
    font-size:clamp(40px,7vw,80px);
    margin-top: 3rem;
  }
  .about-right p{
    font-size: 14px;
  }
}

.about-eyebrow {
  color: var(--theme-color);
  text-transform: uppercase;
  font-weight: 1000;
  font-size: clamp(24px, 1.5vw + 20px, 30px);
  letter-spacing: 0.2em; /* strong tracking like the design */
  margin-bottom: clamp(18px, 2.4vw, 28px);
  font-family: "Baskerville Custom";
}

.about-logo {
  width: clamp(160px, 26vw, 280px);
  width: 20%;
  height: auto;
  object-fit: contain;
  display: block;
}

.about-right {
  max-width: 900px;
}

.about-copy {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.3;               /* airy spacing like the mock */
  letter-spacing: 0.06em;          /* slight tracking on body */
  word-spacing: 0.1em;
  margin-bottom: 1.2rem;
  text-align: justify;
  font-family: "Euclid Circular A";
}

/* ===== Destination Section ===== */
.destination {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}

.destination-image {
  position: relative;
  width: 100%;
}

.destination-image img {
  width: 100%;
  height: clamp(400px, 60vw, 720px);
  object-fit: cover;
  object-position: center 65%;
  display: block;
}
.destination-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust opacity between 0.35–0.55 */
  z-index: 2;
}
.destination-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--bg);
  z-index: 3; /* stays above overlay */
  padding: 0 10%;
  max-width: 800px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}


/* typography */
.destination-title {
  font-family: "Baskerville Custom", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 12px;
  color: var(--yellow);
}

.destination-subtitle {
  font-family: 'Euclid Circular A', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--yellow);
}

.destination-desc {
  font-family: 'Euclid Circular A', sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(255, 251, 245, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 860px) {
  .destination-overlay {
    padding: 0 8%;
  }
  .destination-title {
    font-size: clamp(34px, 9vw, 60px);
  }
  .destination-subtitle {
    margin-bottom: 14px;
  }
  .destination-desc {
    font-size: clamp(13px, 3.5vw, 16px);
  }
}





/* ---------- ACCOMMODATION ---------- */
.accommodation {
  background: var(--bg-color);
  padding: var(--side-gap);
  padding-top: 1rem;
  text-align: center;
}

.acc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.acc-title {
  color: var(--theme-color);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  text-align: left;
  line-height: 1.1;
}

.acc-subtitle {
  color: var(--theme-color);
  font-size: clamp(18px, 1.3vw + 12px, 20px);
  letter-spacing: 0.06em;
  max-width: 420px;
  text-align: right;
}

@media(max-width:900px){
  .acc-subtitle{
    font-size: 14px;
  }
}

.accommodation-slider {
  position: relative;
  margin-top: 10px;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
}

.accommodation-slider .swiper-slide{
  transition: transform .5s ease;
}

/* ---------- ACCOMMODATION CARD BEHAVIOR ---------- */
.acc-card{
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: clamp(240px, 36vw, 420px);
  /* default = inactive look */
  transform: scale(.93);
  filter: brightness(.85);
  transition: transform .5s ease, filter .5s ease, box-shadow .5s ease;
}

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

/* Expanded (Active) */
.acc-card.active {
  flex: 1.8;
  transform: scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

.acc-card.active img {
  filter: brightness(1);
}

/* Info text (title always visible, desc only in active) */
.acc-info{
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #fff;
  text-align: left;
}

.acc-name{
  font-weight: 700;
  font-style: italic;
  font-size: clamp(20px, 1vw + 16px, 30px);
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
  margin-bottom: 6px;
}

.acc-desc{
  max-width: 430px;
  line-height: 1.6;
  font-size: 0.95rem;
  opacity: 0;                 /* hidden for inactive */
  height: 0;
  overflow: hidden;
  transition: opacity .4s ease, height .4s ease;
}

.acc-card.active .acc-desc {
  display: block;
  animation: fadeIn 0.6s ease forwards;
}

/* --- ACTIVE STATE (handled by Swiper class) --- */
.accommodation-slider .swiper-slide-active .acc-card{
  transform: scale(1.03);
  filter: brightness(1);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.accommodation-slider .swiper-slide-active .acc-desc{
  opacity: 1;
  height: auto;               /* expands to natural height */
}

/* Fade-in effect */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ---------- ACCOMMODATION SLIDER NAVIGATION ---------- */
.acc-navigation{
  position: absolute;
  top: -52px;        /* sits in the header space like the design */
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 5;
}

.acc-btn{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--theme-color);
  color: var(--bg-color);
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.acc-btn:hover{ transform: scale(1.06); opacity: .92; }

.acc-btn i {
  color: var(--bg-color);
}


.acc-more {
  display: flex;
  justify-content: center;
}

/* ========== Accommodation: 8-card grid (no slider) ========== */
.accommodation {
  margin-top: 2rem;
}

.accommodation .acc-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
}

.accommodation .acc-title {
  font-family: 'Euclid Circular A', system-ui, sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  line-height: .95;
  letter-spacing: .04em;
  color: #a95917;
}

.accommodation .acc-subtitle {
  max-width: 38ch;
  text-align: right;
  color: #a95917;
  opacity: .9;
}

/* Grid */
.acc-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 28px;
}

@media (max-width: 1100px) {
  .acc-grid { grid-template-columns: repeat(3, minmax(220px, 1fr)); }
}
@media (max-width: 800px) {
  .accommodation .acc-header { grid-template-columns: 1fr; }
  .accommodation .acc-subtitle { text-align: left; }
  .acc-grid { grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 20px; }
}
@media (max-width: 520px) {
  .acc-grid { grid-template-columns: 1fr; }
}

/* Events tab: 4 columns on large screens */
.acc-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 800px) {
  .acc-grid.cols-4 {
  grid-template-columns: 1fr;
}
}




/* ===== Accommodation Tabs ===== */
.acc-tabs{
  display: inline-flex;
  gap: 10px;
  background: #f2e7d9;
  padding: 0.8rem;
  border-radius: 999px;
  margin: -6px 0 18px;
}
.acc-tab{
  appearance: none;
  border: 0;
  background: transparent;
  color: #7a4a1b;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
}

@media (max-width:800px){
  .acc-tabs{
    padding: 0.6rem;
  }
  .acc-tab{
    padding: 0.4rem;
    font-size: 13px;
  }
}

.acc-tab:is(:hover,:focus-visible){ background: rgba(169,89,23,.1); }
.acc-tab.is-active{
  background: #a95917;
  color: #fffbf5;
}

/* Hide cards when filtered */
.acc-card.is-hidden{ display: none !important; }

/* Empty message (for Events tab) */
.acc-empty{
  margin-top: 18px;
  color: var(--theme);
  text-align: center;
}


/* Card */
.acc-card {
  position: relative;
  isolation: isolate;
  display: block;
  height: clamp(220px, 26vw, 320px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,.08);
  background: #ddd;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
}
.acc-card::before {
  /* subtle dark gradient for text legibility */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%);
  transition: opacity .35s ease;
  opacity: .55;
  z-index: 0;
}
.acc-card:hover::before { opacity: .7; }

.acc-card.is-link { text-decoration: none; }

/* Meta block (title + desc) */
.acc-card__meta {
  position: absolute;
  inset-inline: 0; bottom: 0;
  padding: 16px 18px 18px;
  color: #fff;
  z-index: 1;
}

.acc-card__title {
  font-family: 'Euclid Circular A', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.1vw, 24px);
  margin: 0;
  letter-spacing: .02em;
}

/* Description is hidden until hover */
.acc-card__desc {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  max-height: 0;
  transform: translateY(6px);
  transition: opacity .28s ease, transform .28s ease, max-height .28s ease;
}

/* Hover reveal + slight zoom */
.acc-card:hover .acc-card__desc {
  opacity: 1;
  max-height: 140px;
  transform: translateY(0);
}
.acc-card:hover {
  transform: scale(1.015);
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Explore More button */
.acc-explore {
  text-align: center;
  margin-top: 28px;
}

.explore-btn {
  display: inline-block;
  background: #a95917;
  color: #fffbf5;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  transition: all .3s ease;
}
.explore-btn:hover {
  background: #7a3f10;
}




.more-btn {
  background: var(--theme-color);
  color: var(--bg-color);
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 32px;
}

.more-btn:hover {
  opacity: 0.85;
}

/* ---------- EVENTS ---------- */
.events {
  position: relative;
  background: url("../img/event.png") center center / cover no-repeat;
  height: 90vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.events-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 20%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8%;
  box-sizing: border-box;
}

.events-content {
  max-width: 500px;
  text-align: left;
  color: #fbf7ba; /* yellow tone for visibility */
  animation: fadeInUp 1s ease both;
  margin-right: 15rem;
}


.events-title {
  font-size: clamp(50px, 6vw, 70px);
  font-weight: 700;
  color: #fbf7ba;
  font-style: italic;
  margin-bottom: 16px;
  font-family: "Baskerville Custom";
}

.events-text {
  font-size: clamp(15px, 1vw + 10px, 20px);
  color: #fbf7ba;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 28px;
  text-align: justify;
}



.events-btn {
  background: var(--theme-color);
  color: var(--bg-color);
  font-weight: 600;
  border: none;
  padding: 12px 36px;
  border-radius: 30px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

.events-btn:hover {
  opacity: 0.85;
}

@media(max-width:960px){
  .events-content{
    margin-right: 0;
  }

  .events-text{
    margin-left: 2rem;
    margin-right: 2rem;
    font-size: 13px;
  }

  .events-title{
    font-size: 35px;
  }

  .events-btn{
    padding: 0.8rem;
    border-radius: 30px;
    font-size: 14px;
  }
}

/* ---------- ADVENTURE ---------- */
.adventure {
  background: var(--bg-color);
  padding: clamp(60px, 8vw, 110px) 5%;
}

.adv-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr; /* left title block + right list */
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
}

.adv-left {
  padding-top: 6px;
}

.adv-title {
  color: var(--theme-color);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: 0.2em; /* strong tracking like the mock */
  line-height: 1.35;
  text-transform: uppercase;
}

/* Right side accordion list */
.adv-right {
  width: 100%;
}

.adv-item {
  border-top: 2px solid rgba(169, 89, 23, 0.5);
}
.adv-item:last-child {
  border-bottom: 2px solid rgba(169, 89, 23, 0.5);
}

.adv-header {
  width: 100%;
  display: block;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 0;
  cursor: pointer;
}

.adv-name {
  color: var(--theme-color);
  font-weight: 800;
  letter-spacing: 0.28em;
  font-size: clamp(16px, 1.2vw + 10px, 20px);
  line-height: 1.4;
  text-transform: uppercase;
}

.adv-caption {
  margin-top: 6px;
  color: rgb(154, 154, 154);
  font-style: italic;
  letter-spacing: 0.05em;
  font-size: clamp(12px, 0.6vw + 10px, 16px);
}

/* Collapsible body */
.adv-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 420ms ease;
}

.adv-item.open .adv-body {
  max-height: 20vh;
  /* max-height set via JS to content height for smooth open */
}

.adv-body-inner {
  display: grid;
  grid-template-columns: 1fr 280px; /* text + image on the right */
  gap: 22px;
  align-items: start;
  padding: 10px 0 18px;
}

.adv-desc {
  color: var(--theme-color);
  letter-spacing: 0.06em;
  line-height: 1.9;
  font-size: clamp(13px, 0.6vw + 12px, 15px);
}

.adv-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

/* GLOBAL */
a{touch-action:manipulation}

/* FOOTER */
.site-footer{
  background:var(--page-bg);
  color:var(--text);
  padding:0 var(--side-gap);
  font-size:13px;
  line-height:1.65;
}

.footer-divider{
  height:2px;
  background:rgba(169,89,23,.22);
  margin:0 0 12px;
}

.footer-container{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:40px;
  padding:12px 0 22px;
  flex-wrap:wrap;
}

/* Left: logo */
.footer-logo img{ height:56px; width:auto; }

/* Center: columns rail */
.footer-center{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:120px;
  flex:1 1 520px;   /* flexible */
  /* NOTE: removed the min-width that caused overflow on phones */
  flex-wrap:wrap;
}

.footer-col{ text-align:left; min-width:180px; }

.footer-hd{
  font-weight:700;
  color:var(--theme);
  margin:2px 0 8px;
  font-size:12px;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.footer-list{ list-style:none; margin:0; padding:0; }
.footer-list li + li{ margin-top:6px; }
.footer-list a{
  color:var(--theme);
  text-decoration:none;
  font-weight:400;
  font-size:12px;
  letter-spacing:.06em;
}
.footer-list a:hover{ opacity:.85; text-decoration:underline; }

/* Socials */
.footer-socials{
  display:grid;
  grid-template-columns:repeat(3,30px);
  grid-auto-rows:30px;
  gap:10px 14px;
  justify-content:start;
  margin-top:4px;
}
.footer-socials a{
  display:grid;
  place-items:center;
  width:30px;height:30px;
  text-decoration:none;
}
.footer-socials i{ font-size:18px; color:var(--theme); }
.footer-socials .xhs{
  width:18px;height:18px;display:inline-block;background:var(--theme);
  -webkit-mask:url('../ContactUs-img/xhs_logo.png') center/contain no-repeat;
          mask:url('../ContactUs-img/xhs_logo.png') center/contain no-repeat;
}

/* Bottom bar — true full-bleed without overflow */
.footer-bottom{
  background:var(--theme);
  color:#fff;
  text-align:center;
  padding:12px 16px;
  font-size:clamp(9.5px, 2.4vw, 12px);
  line-height:1.45;
  letter-spacing:.03em;
  white-space:normal;
  word-break:break-word;

  /* full bleed that won't widen the layout */
  width:100dvw;                             /* device viewport width */
  margin-left:calc(50% - 50dvw);
  margin-right:calc(50% - 50dvw);
}

/* RESPONSIVE */
@media (max-width: 1024px){
  :root{ --side-gap:3rem; }
  .site-footer{ font-size:12.5px; }
  .footer-center{ gap:80px; }
}

@media (max-width: 820px){
  :root{ --side-gap:1.25rem; }

  .footer-container{
    gap:24px;
    padding:10px 0 18px;
  }

  .footer-logo img{ height:52px; }

  .footer-center{
    gap:0;
    flex:1 1 100%;
  }
  .footer-col{
    width:100%;
    max-width:360px;
    margin-bottom:16px;
  }

  .footer-socials{
    grid-template-columns:repeat(6,32px);
    grid-auto-rows:32px;
    gap:10px 12px;
  }

  .site-footer{ font-size:12px; }
}

@media (max-width: 480px){
  :root{ --side-gap:1rem; }
  .footer-logo img{ height:46px; }

  .footer-hd{ font-size:14px; font-weight:750; }
  .footer-col{ max-width:none; }
  .footer-list li + li{ margin-top:8px; }
  .footer-list a{
    display:inline-block;
    padding:.2rem 0;
    font-size:12px;
    letter-spacing:.05em;
    font-weight:400;
  }

  /* make socials compact but within the rail */
  .footer-socials{
    grid-template-columns:repeat(6,30px);
    grid-auto-rows:30px;
    gap:10px 10px;
  }

  .footer-bottom{
    font-size:10px;     /* smaller on phones */
    letter-spacing:.02em;
    padding:10px 12px;
  }
}

@media (max-width: 360px){
  :root{ --side-gap:.75rem; }
  .footer-logo img{ height:42px; }
  .footer-bottom{ font-size:8px; } /* tiny phones */
}



/* Mobile */
@media (max-width: 900px) {
  .adv-wrap {
    grid-template-columns: 1fr;
  }
  .adv-body-inner {
    grid-template-columns: 1fr;
  }
  .adv-img {
    height: 200px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .events {
    height: auto;
    padding: 80px 0;
  }

  .events-overlay {
    justify-content: center;
    padding-right: 0;
    text-align: center;
  }

  .events-content {
    text-align: center;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .acc-header {
    flex-direction: column;
    text-align: left;
    gap: 20px;
  }
  .acc-subtitle {
    text-align: left;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .experiences-gallery {
    flex-direction: column;
    align-items: center;
  }
  .exp-img {
    width: 90%;
    transform: skewY(-4deg);
  }
  .exp-img img {
    transform: skewY(4deg);
  }
}


/* Responsive */
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-left, .about-right {
    align-items: flex-start;
  }
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .book-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .hero-tagline {
    font-size: 1rem;
    padding: 0 10px;
  }
}


/* ===== Base ===== */
*{box-sizing:border-box}
html,body{height:100%}
html{ scroll-snap-type:none; scroll-behavior:smooth }
body{margin:0;background:var(--bg-color);color:#141414;font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;overflow-x:hidden}

/* ===== Slide panel ===== */
.slide{
  min-height:100vh;
  display:grid;
  grid-template-columns:1.1fr 1.4fr;
  gap:var(--gap);
  align-items:center;
  padding:clamp(40px,6vh,100px) var(--side);
  scroll-snap-align:start;
  opacity:0; transform:translateY(40px);
  transition:opacity 900ms ease, transform 900ms ease;
}
.slide.show{opacity:1; transform:none}

/* Left text */
.text{max-width:560px}
.count{font-weight:600; letter-spacing:.08em; color:var(--muted); margin-bottom:12px; font-size:14px}
h2{
  font-family:"Playfair Display",serif; font-style:italic; font-weight:700;
  font-size:clamp(52px,9vw,110px); line-height:1.02; margin:0 0 12px 0; color:#a95917;
}
.sub{ color:var(--muted); line-height:1.7; font-size:18px }

/* ===== Square gallery, 8 tiles ===== */
.gallery{
  aspect-ratio:1/1;
  width:100%;
  max-width:min(620px, 42vw);
  margin-inline:auto;

  display:grid;
  grid-template-columns:repeat(3, 1fr);
  grid-template-rows:repeat(4, 1fr);
  gap:var(--g);
}
.card{ position:relative; overflow:hidden; border-radius:var(--radius); box-shadow:var(--shadow); background:#ddd; cursor:pointer; }
.card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .5s; }
.card:hover img{ transform:scale(1.03) }

.gallery .card:nth-child(1){ grid-column:1; grid-row:1 / span 2; }
.gallery .card:nth-child(2){ grid-column:2; grid-row:1 / span 1; }
.gallery .card:nth-child(3){ grid-column:3; grid-row:1 / span 2; }
.gallery .card:nth-child(4){ grid-column:1; grid-row:3 / span 2; }
.gallery .card:nth-child(5){ grid-column:2; grid-row:2 / span 2; }
.gallery .card:nth-child(6){ grid-column:2; grid-row:4 / span 1; }
.gallery .card:nth-child(7){ grid-column:3; grid-row:3 / span 1; }
.gallery .card:nth-child(8){ grid-column:3; grid-row:4 / span 1; }

/* ===== Dots (desktop: vertical fixed on right) ===== */
.dot-nav{
  position:fixed; right:16px; top:50%;
  transform:translateY(-50%);
  display:flex; flex-direction:column; gap:10px; z-index:10;
}
.dot{ width:10px; height:10px; border-radius:50%; background:rgba(0,0,0,.2); transition:transform .25s, background-color .25s }
.dot.active{ background:rgba(0,0,0,.65); transform:scale(1.6) }

/* ===== Lightbox ===== */
.lightbox{
  position:fixed; inset:0; display:none; align-items:center; justify-content:center;
  background:rgba(0,0,0,.9); z-index:1000; padding:clamp(10px,4vw,40px);
}
.lightbox.open{ display:flex }
.lb-frame{
  position:relative; max-width:min(1000px,92vw); max-height:86vh;
  border-radius:24px; overflow:hidden; box-shadow:0 30px 80px rgba(0,0,0,.6); background:#111;
  transform-origin:center;
}
.lb-img{ display:block; width:auto; height:86vh; max-width:100%; object-fit:contain }
.lb-btn{
  position:absolute; display:grid; place-items:center; cursor:pointer;
  width:44px; height:44px; border-radius:999px; color:#fff;
  background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(4px); transition:background .2s, transform .2s;
}
.lb-btn:hover{ background:rgba(255,255,255,.22); transform:scale(1.04) }
.lb-close{ top:18px; right:18px }
.lb-prev, .lb-next{ top:calc(50% - 22px) }
.lb-prev{ left:18px }
.lb-next{ right:18px }

/* ======== ANIMATIONS ======== */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(var(--anim-up)); }
  to   { opacity:1; transform:none; }
}
@keyframes fadeUpSmall {
  from { opacity:0; transform:translateY(16px) scale(.98); }
  to   { opacity:1; transform:none; }
}
@keyframes zoomIn {
  from { opacity:0; transform:scale(.94); }
  to   { opacity:1; transform:scale(1); }
}
@keyframes pulseDot {
  0%{ transform:scale(1); }
  50%{ transform:scale(1.9); }
  100%{ transform:scale(1.6); }
}

/* Stagger the text + tiles when a slide becomes visible */
.slide .text > *{ opacity:0; transform:translateY(var(--anim-up)); }
.slide.show .text > *{
  animation: fadeUp .7s cubic-bezier(.21,.61,.35,1) forwards;
}
.slide.show .text > *:nth-child(1){ animation-delay:.02s; } /* count */
.slide.show .text > *:nth-child(2){ animation-delay:.10s; } /* h2   */
.slide.show .text > *:nth-child(3){ animation-delay:.22s; } /* copy */

.gallery .card{ opacity:0; transform:translateY(16px) scale(.98); }
.slide.show .gallery .card{
  animation: fadeUpSmall .6s ease-out forwards;
}
.slide.show .gallery .card:nth-child(1){ animation-delay:.16s }
.slide.show .gallery .card:nth-child(2){ animation-delay:.22s }
.slide.show .gallery .card:nth-child(3){ animation-delay:.28s }
.slide.show .gallery .card:nth-child(4){ animation-delay:.34s }
.slide.show .gallery .card:nth-child(5){ animation-delay:.40s }
.slide.show .gallery .card:nth-child(6){ animation-delay:.46s }
.slide.show .gallery .card:nth-child(7){ animation-delay:.52s }
.slide.show .gallery .card:nth-child(8){ animation-delay:.58s }

/* Animate active dot lightly */
.dot.active{ animation: pulseDot .35s ease-out; }

/* Lightbox zoom when opened */
.lightbox.open .lb-frame{ animation: zoomIn .22s ease-out both; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important }
}

/* ===== Responsive content tweaks ===== */
@media (max-width:1100px){
  .slide{ grid-template-columns:1fr; align-items:start }
  .text{ text-align:center; margin:0 auto }
  .gallery{ max-width:min(86vw, 640px); }
}
@media (max-width:560px){
  .gallery{ max-width:min(92vw, 520px); gap:10px; }
  h2{ font-size:clamp(42px,14vw,70px) }
}

/* ======== MOBILE MODE: horizontal slides + dots INSIDE slide bottom ======== */
@media (max-width:1100px){
  html{ scroll-snap-type:none; }
  body{
    overflow-x:hidden;      /* keep x hidden */
    overflow-y:auto;        /* re-enable page scroll */
  }

  .deck{
    min-height:100dvh;      /* full height is fine… */
    height:auto;            /* …but don’t hard-lock it */
    overflow-x:auto;        /* horizontal swipe inside */
    overflow-y:visible;     /* let the page scroll past */
    scroll-snap-type:x mandatory;
    overscroll-behavior-x: contain;  /* nicer swipe feel */
    display:flex;
  }

  .slide{
    position:relative;                 /* so dots can anchor to slide bottom */
    padding-bottom:70px;               /* room for dots */
    min-width:100vw;
    min-height:100dvh;
    scroll-snap-align:center;
    opacity:1; transform:none;
  }

  /* Dot strip becomes inline, centered, placed at slide bottom */
  .dot-nav{
    position:absolute;
    left:50%; transform:translateX(-50%);
    bottom:16px; top:auto; right:auto;

    display:flex; flex-direction:row; justify-content:center; align-items:center;
    gap:12px; padding:0 14px;
  }
  .dot{ width:8px; height:8px; }
  .dot.active{ transform:scale(1.8); }
}

/* MOBILE lightbox rounded popup */
@media (max-width:1100px){
  .lb-frame{
    border-radius:18px !important;
    overflow:hidden;
    background:#111;
    width:auto; height:auto;
    max-height:90vh; max-width:90vw;
    margin:auto;
    display:flex; align-items:center; justify-content:center;
  }
  .lb-img{
    width:100%; height:auto; max-height:90vh; object-fit:contain;
  }
  .lb-close{ top:10px; right:10px; }
  .lb-prev{ left:10px; }
  .lb-next{ right:10px; }
}

/* ===== Lightweight AOS replacement ===== */
[data-aos] {
  /* Nothing hidden by default — JS will add the prep class when ready */
}

.fx-prep {
  opacity: 0;
  transform: translateY(var(--fx-distance, 24px));
  will-change: transform, opacity;
  transition-property: transform, opacity;
  transition-duration: var(--fx-duration, 800ms);
  transition-timing-function: cubic-bezier(.2,.65,.2,1); /* close to AOS */
  transition-delay: var(--fx-delay, 0ms);
}

.fx-in {
  opacity: 1;
  transform: none;
}


  /* ====== FLOATING ACTION BUTTONS ====== */
  .fab-wrap{
    position:fixed;
    right:clamp(30px, 2vw, 20px);
    bottom:clamp(14px, 2vw, 20px);
    z-index:9999;
    display:flex; flex-direction:column; gap:14px;
    pointer-events:none;
  }
  .fab-btn{
    width:70px; height:70px; border-radius:50%;
    background:#3d2a1a;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 26px rgba(0,0,0,.25);
    transition:transform .18s ease, box-shadow .18s ease;
    cursor:pointer; pointer-events:auto; border:none; outline:none;
    text-decoration:none !important;
  }
  .fab-btn:hover{ transform:translateY(-2px); box-shadow:0 14px 34px rgba(0,0,0,.33); }

  .fab-btn, .fab-btn:hover, .fab-btn:focus, .fab-btn:active, .fab-btn:visited, .fab-btn *{
    text-decoration:none !important;
  }

  /* WhatsApp brand button */
  .fab-btn.whatsapp{ background:#25D366; }
  .fab-btn.whatsapp i{ font-size:30px; color:#fff; line-height:1; display:block; }

  @media (max-width:600px){
    .fab-btn{ width:50px; height:50px; }
    .fab-btn.whatsapp i{ font-size:22px; }
  }

  /* ===== Lightbox (global) ===== */
.lightbox{
  position: fixed; inset: 0; display: none;
  background: rgba(0,0,0,.85);
  z-index: 9999;
}
.lightbox.open{ display: grid; place-items: center; }
.lightbox img{
  max-width: min(92vw, 1400px);
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.lb-close,.lb-prev,.lb-next{
  position: absolute; border: 0; background: transparent; color: #fff;
  font-size: 34px; line-height: 1; cursor: pointer; padding: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.lb-close{ top: 14px; right: 16px; }
.lb-prev { left: 16px;  top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* Make adventure images indicate zoomability */
.adv-img{ cursor: zoom-in; }

