:root {
  --bg: #f7f4ef;
  --bg-soft: #fcfaf7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #161616;
  --muted: #6b6b6b;
  --line: rgba(255, 255, 255, 0.32);
  --brown: #8b5a32;
  --brown-dark: #6f4728;
  --gold: #d8ab73;
  --gold-strong: #c38a56;
  --green-dark: #12351e;
  --shadow-soft: 0 10px 30px rgba(22, 22, 22, 0.06);
  --shadow-hover: 0 18px 44px rgba(22, 22, 22, 0.12);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.95), transparent 30%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(92%, 1280px);
  margin: 0 auto;
}

/* GLOBAL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  animation: heroSlideDown 1.7s var(--ease) forwards;
  transform: translateY(-70px) scale(1.05);
  will-change: transform;
}

@keyframes heroSlideDown {
  from {
    transform: translateY(-70px) scale(1.07);
  }
  to {
    transform: translateY(0) scale(1.02);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.20)),
    linear-gradient(to right, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
  z-index: 1;
}

/* NAV */
.overlay-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  padding: 24px 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-links a {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.transparent-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.transparent-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.16);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--gold-strong);
  padding: 0 4px;
}

.profile-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1a24f, #b57d4c);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

/* HERO TEXT */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 95px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  margin-bottom: 28px;
  max-width: 640px;
}

.hero-script,
.hero-bold,
.main-title,
.showcase-copy h2,
.footer-brand h3,
.pool-banner h2,
.stay-body h3 {
  font-family: "Cormorant Garamond", serif;
}

.hero-script {
  font-size: clamp(4.7rem, 9vw, 7rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
}

.hero-bold {
  font-size: clamp(4.4rem, 8vw, 6.3rem);
  font-weight: 700;
  color: #fff;
}

.hero-subtext {
  max-width: 560px;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn,
.pill-btn,
.outline-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
}

.hero-btn::after,
.pill-btn::after,
.outline-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.18) 45%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
}

.hero-btn:hover::after,
.pill-btn:hover::after,
.outline-btn:hover::after {
  transform: translateX(120%);
}

.hero-btn,
.pill-btn {
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 13px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}
.hero-buttons .hero-btn {
  background: rgba(255,255,255,0.12);
}
.hero-btn:hover,
.pill-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.16);
}

.secondary-btn {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.18);
}

/* GENERAL */
.section-kicker {
  text-align: center;
  color: #c9a06f;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.main-title {
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  margin-bottom: 22px;
  color: #1b1b1b;
}

.main-title span {
  font-style: italic;
  font-weight: 500;
}

.center-text {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 34px;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

/* AMENITIES */
.amenities-section {
  padding: 90px 0;
  background: #f6f2ed;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.amenity-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,255,255,0.8);
}

.amenity-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 16px;
}

.blue { background: #eef3ff; color: #5b86ff; }
.gold { background: #fff5e8; color: #d89a38; }
.green { background: #edf9f0; color: #3db571; }
.red { background: #fff1f3; color: #ec6674; }
.purple { background: #f5efff; color: #9568ff; }
.gray { background: #f1f3f6; color: #748092; }

.amenity-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.amenity-card p {
  color: #707070;
  font-size: 14px;
  line-height: 1.7;
}

/* SHOWCASE */
.showcase {
  padding: 88px 0;
}

/* HIRAYA */
.showcase-hiraya {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(214, 164, 109, 0.20), transparent 30%),
    linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  padding: 96px 0;
  overflow: hidden;
}

.showcase-hiraya::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  filter: blur(30px);
  top: -120px;
  right: -80px;
}

.showcase-hiraya::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(241, 197, 139, 0.12);
  filter: blur(40px);
  bottom: -120px;
  left: -60px;
}

.hiraya-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 58px;
  align-items: center;
}

.showcase-hiraya .showcase-copy {
  max-width: 430px;
  color: #fff;
}

.showcase-hiraya .mini-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #f1c58b;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.showcase-hiraya .showcase-copy h2 {
  font-size: 4rem;
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: 22px;
  color: #fff;
}

.showcase-hiraya .showcase-copy h2 span {
  color: var(--gold);
  font-style: italic;
}

.showcase-hiraya .showcase-copy p {
  max-width: 430px;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 26px;
}

/* HIRAYA GALLERY */
.view-menu-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;

  color: #fff;

  /* ✅ GREEN GRADIENT (like your sample) */
  background: linear-gradient(135deg, #1e5732, #218f42);

  /* ✅ SAME BORDER + SHADOW STYLE */
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);

  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
}

/* ✅ SHINE EFFECT (THIS WAS MISSING) */
.view-menu-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.18) 45%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
}

.view-menu-btn:hover::after {
  transform: translateX(120%);
}

/* ✅ HOVER EFFECT (same as your buttons) */
.view-menu-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.16);
}
.hiraya-gallery {
  display: grid;
  grid-template-columns: 225px 225px;
  grid-template-rows: 120px 120px 120px;
  gap: 12px;
  justify-content: end;
}

.hiraya-card,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.14);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
  isolation: isolate;
}

.hiraya-card:hover,
.gallery-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.hiraya-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
}

.hiraya-card:hover img,
.gallery-card:hover img {
  transform: scale(1.08) translateY(-4px);
  filter: saturate(1.05) contrast(1.04);
}

.hiraya-card::before,
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.00) 20%,
    rgba(255,255,255,0.12) 45%,
    rgba(255,255,255,0.00) 70%
  );
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease);
}

.hiraya-card:hover::before,
.gallery-card:hover::before {
  transform: translateX(120%);
}

.hiraya-card::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.38), rgba(0,0,0,0.05));
}

.hiraya-card-1 {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.hiraya-card-2 {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.hiraya-card-3 {
  grid-column: 1;
  grid-row: 3;
}

.hiraya-card-4 {
  grid-column: 2;
  grid-row: 3;
}

.gallery-tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* TRABI */
.showcase-trabi {
  background: #f3f3f3;
}

.center-block {
  text-align: center;
}

.trabi-title span {
  color: #325132;
}

.trabi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
  margin-top: 28px;
}

.gallery-card {
  height: 280px;
}

.text-link {
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 600;
}

/* POOL BANNER */
.pool-banner {
  position: relative;
  background: #121a20; /* main color */
  padding: 110px 0;
}

.pool-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 26, 32, 0.45),
    rgba(18, 26, 32, 0.55)
  );
}

.pool-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
}

.mini-label.light {
  display: inline-block;
  color: #f3d29a;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.pool-banner h2 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.05;
}

.pool-banner h2 span {
  color: #e2b56f;
  font-style: italic;
  font-weight: 700;
}

.pool-banner p {
  max-width: 760px;
  margin: 0 auto 22px;
  line-height: 1.8;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.pool-schedule {
  margin-top: 12px;
}

.pool-schedule p {
  margin-bottom: 6px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}
.pool-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
}

/* STAY */
.stay-section {
  padding: 80px 0 90px;
  background: #efefef;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.stay-card {
  overflow: hidden;
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.stay-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.stay-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.stay-card:hover img {
  transform: scale(1.05);
}

.stay-body {
  padding: 22px 26px 26px;
  position: relative;
  z-index: 1;
}

.stay-body h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.stay-body p {
  text-align: center;
  color: #606060;
  line-height: 1.75;
  font-size: 14px;
  margin-bottom: 12px;
}

.outline-btn {
  height: 46px;
  border: 1px solid #dddddd;
  background: #f5f5f5;
  color: #777;
}

.outline-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.10);
}

.full-btn {
  width: 100%;
}

/* VISIT */
.visit-section {
  background: #f7f3ee;
  padding: 80px 0 0;
}

.visit-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  padding-bottom: 80px;
}

.visit-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.visit-info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.visit-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1e7d7;
  color: #b6853c;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.visit-info-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.visit-info-card p {
  color: #4f4f4f;
  line-height: 1.7;
  font-size: 14px;
}

.visit-info-card span {
  color: #7f7f7f;
  font-size: 13px;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(90deg, #12351e 0%, #345944 100%);
  color: #fff;
  padding: 54px 0 22px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
}

.footer-brand h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-links a,
.footer-contact p {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.8;
}

.footer-brand p {
  max-width: 400px;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
}

.footer-links h4,
.footer-contact h4 {
  color: #e6c584;
  margin-bottom: 14px;
  font-size: 15px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 28px;
  padding-top: 16px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hiraya-layout,
  .visit-content,
  .stay-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .amenities-grid,
  .trabi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hiraya-gallery {
    justify-content: start;
  }

  .showcase-hiraya .showcase-copy {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 660px;
  }

  .nav-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-logo {
    width: 100%;
    align-items: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .amenities-grid,
  .trabi-grid,
  .stay-grid {
    grid-template-columns: 1fr;
  }

  .hiraya-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: 100%;
  }

  .hiraya-card-1,
  .hiraya-card-2,
  .hiraya-card-3,
  .hiraya-card-4 {
    grid-column: auto;
    grid-row: auto;
    height: 220px;
  }

  .showcase-hiraya .showcase-copy h2 {
    font-size: 3rem;
  }

  .visit-map iframe {
    height: 280px;
  }

  .stay-card img,
  .gallery-card {
    height: 220px;
  }
}
.nav-links a.active {
  color: #8d6b3f;
  font-weight: 700;
}