/* ============================================================
   DUGG COFFEE — Main Stylesheet
   Brand: Deep Teal #136A7B | Cream #FFF7F3 | Olive #6C8B31
   Fonts: JT Douro-Sans (headings) | Roboto Mono (body)
   ============================================================ */

/* ---------- FONTS ---------- */
@font-face {
  font-family: 'JT Douro-Sans';
  src: url('../assets/fonts/JTDouro/JTDouro-Sans-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'JT Douro-Sans';
  src: url('../assets/fonts/JTDouro/JTDouro-Sans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'JT Douro-Sans';
  src: url('../assets/fonts/JTDouro/JTDouro-Sans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'JT Douro-Sans';
  src: url('../assets/fonts/JTDouro/JTDouro-Sans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'JT Douro-Sans';
  src: url('../assets/fonts/JTDouro/JTDouro-Sans-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto Mono';
  src: url('../assets/fonts/RobotoMono/RobotoMono-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 700;
  font-style: normal;
}

/* ---------- CSS VARIABLES ---------- */
:root {
  --teal-dark:    #136A7B;
  --teal-mid:     #1A8A9E;
  --teal-light:   #84C3CA;
  --cream:        #FFF7F3;
  --cream-dark:   #F5EDE7;
  --olive:        #6C8B31;
  --olive-light:  #8BAF3E;
  --gold:         #B0AA43;
  --charcoal:     #1A1A1A;
  --stone:        #4A4035;
  --white:        #FFFFFF;

  --font-heading: 'JT Douro-Sans', sans-serif;
  --font-body:    'Roboto Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-card: 0 8px 32px rgba(19,106,123,0.12);
  --shadow-hover: 0 20px 60px rgba(19,106,123,0.22);
}


/* ============================================================
   DECORATIVE FLOWER ELEMENTS
   ============================================================ */

/* Shared float keyframes — 3 variations for variety */
@keyframes deco-float-a {
  0%   { transform: translateY(0px)   rotate(var(--deco-rot, 0deg)); }
  50%  { transform: translateY(-14px) rotate(var(--deco-rot, 0deg)); }
  100% { transform: translateY(0px)   rotate(var(--deco-rot, 0deg)); }
}
@keyframes deco-float-b {
  0%   { transform: translateY(0px)   rotate(var(--deco-rot, 0deg)) scale(1); }
  40%  { transform: translateY(-10px) rotate(var(--deco-rot, 0deg)) scale(1.03); }
  100% { transform: translateY(0px)   rotate(var(--deco-rot, 0deg)) scale(1); }
}
@keyframes deco-float-c {
  0%   { transform: translateY(0px)   rotate(var(--deco-rot, 0deg)); }
  60%  { transform: translateY(-18px) rotate(var(--deco-rot, 0deg)); }
  100% { transform: translateY(0px)   rotate(var(--deco-rot, 0deg)); }
}

/* Base deco flower style */
.deco-flower {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

/* ---- HERO ---- */
/* Pink flower — slightly clips the "Y" in YOUR GREEN, smaller now */
.deco-flower--hero-tl {
  width: 105px;
  top: 210px;
  left: calc(50% - 385px);
  --deco-rot: -18deg;
  animation: deco-float-a 6s ease-in-out infinite;
  opacity: 1;
  z-index: 3;
}
/* Green leaf — behind "EN" of GREEN, smaller */
.deco-flower--hero-tr {
  width: 95px;
  top: 150px;
  right: calc(50% - 395px);
  --deco-rot: 40deg;
  animation: deco-float-b 7.5s ease-in-out infinite;
  animation-delay: -2s;
  opacity: 1;
  z-index: 1;
}
/* Bottom-right flower — HIDDEN */
.deco-flower--hero-br {
  display: none;
}

/* ---- ABOUT ---- */
/* Pink flower — bottom-right of image, in FRONT of image (z-index:3 > image z-index:1) */
.deco-flower--about-bl {
  width: 220px;
  bottom: -60px;
  left: auto;
  right: -60px;
  --deco-rot: 15deg;
  animation: deco-float-b 7s ease-in-out infinite;
  animation-delay: -1.5s;
  opacity: 1;
  z-index: 3;
}
/* Green leaf — behind image at top-left */
.deco-flower--about-tl {
  width: 240px;
  top: -30px;
  left: -90px;
  --deco-rot: 20deg;
  animation: deco-float-a 9s ease-in-out infinite;
  animation-delay: -3s;
  opacity: 1;
  z-index: 0;
}

/* ---- FACILITIES ---- */
/* Green leaf top-left — HIDDEN (taken out) */
.deco-flower--fac-tl {
  display: block;
  position: absolute;
  width: 250px;
  top: 390px;
  left: calc(50% - 480px);
  z-index: 1;
  opacity: 0.85;
  --deco-rot: 15deg;
  animation: deco-float-b 6s ease-in-out infinite;
}
/* Pink flower bottom-right — bigger, truly behind cards (z-index:1; cards given z-index:2) */
.deco-flower--fac-br {
  width: 320px;
  bottom: 80px;
  right: calc(50% - 430px);
  --deco-rot: -30deg;
  animation: deco-float-a 7s ease-in-out infinite;
  animation-delay: -5s;
  opacity: 1;
  z-index: 1;
}

/* ---- MENU ---- */
.deco-flower--menu-tr {
  display: none;
}
.deco-flower--menu-bl {
  width: 190px;
  bottom: 30px;
  left: 10px;
  --deco-rot: -20deg;
  animation: deco-float-c 9.5s ease-in-out infinite;
  animation-delay: -4s;
  opacity: 1;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-mid);
}

.label--light { color: var(--teal-light); }
.label--olive { color: var(--olive-light); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}
.btn--primary:hover {
  background: transparent;
  color: var(--teal-dark);
}

.btn--outline {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn--outline:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  /* Always has blur so logo & links are always readable */
  background: rgba(255,247,243,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(19,106,123,0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,247,243,0.97);
  box-shadow: 0 2px 24px rgba(19,106,123,0.1);
  padding: 14px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo: logotype only, no logomark */
.navbar__logo {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  text-decoration: none;
}

.navbar__logo img.logo-type {
  height: 36px;
  object-fit: contain;
}

/* Hide logomark — only logotype is used */
.navbar__logo img.logo-mark {
  display: none;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}

.navbar__nav a {
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal-dark);
  transition: width var(--transition);
}

.navbar__nav a:hover { color: var(--teal-dark); }
.navbar__nav a:hover::after { width: 100%; }

.navbar__cta {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================================
   HERO — Centered Layout (inspired by reference)
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding-top: 110px;
}

/* Supergraphic watermark background */
.hero__bg-graphic {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 100vw;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 32px 0;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.hero__label::before,
.hero__label::after {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--teal-mid);
}

.hero__heading {
  font-size: clamp(4rem, 8.5vw, 8rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.0;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.hero__heading-line2 {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--teal-dark);
  display: block;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--stone);
  margin: 0 auto 44px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

/* Floating photo strip — peeks from bottom */
.hero__photo-strip {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.hero__photo-strip-item {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
  flex: 1;
  height: 320px;
  /* Only animate flex — no height change = no jumping */
  transition: flex 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: var(--teal-dark);
  will-change: flex;
}

.hero__photo-strip-item:nth-child(2) {
  flex: 1.8;
  height: 420px;
}

/* Slideshow */
.slideshow {
  position: absolute;
  inset: 0;
  
}

.slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
  transform: scale(1);
}

.slideshow .slide.active {
  opacity: 1;
  transform: scale(1.05);
}

/* Hover — ONLY flex animates, heights stay fixed = smooth, no jump */
@media (min-width: 769px) {
  .hero__photo-strip:hover .hero__photo-strip-item {
    flex: 0.75;
  }
  .hero__photo-strip:hover .hero__photo-strip-item:nth-child(2) {
    flex: 1.5;
  }
  .hero__photo-strip .hero__photo-strip-item:hover {
    flex: 1.5 !important;
  }
  .hero__photo-strip .hero__photo-strip-item:nth-child(2):hover {
    flex: 2.2 !important;
  }
}

.hero__photo-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(19,106,123,0.9);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.hero__photo-strip-item:hover .hero__photo-label {
  opacity: 1;
  transform: translateY(0);
}


.hero__supergraphic {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 220px;
  opacity: 0.15;
  z-index: 2;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--teal-dark), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============================================================
   ABOUT / WHY SECTION
   ============================================================ */
.about {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-main {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border-radius: 48% 52% 36% 64% / 60% 40% 60% 40%;
  box-shadow: var(--shadow-hover);
}

.about__image-accent {
  position: absolute;
  bottom: -24px;
  right: -32px;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-card);
}


.about__content { }

.about__label { margin-bottom: 16px; }

.about__heading {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.about__heading em {
  font-style: normal;
  color: var(--teal-dark);
}

.about__text {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 44px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about__feature:hover {
  background: rgba(19,106,123,0.06);
  transform: translateX(4px);
}

.about__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.about__feature-text .ftitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.about__feature-text .fdesc {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.02em;
}

/* ============================================================
   FACILITIES
   ============================================================ */
.facilities {
  padding: 180px 0 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.facilities__bg-graphic {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 500px;
  opacity: 0.07;
  pointer-events: none;
}

.facilities__header {
  text-align: center;
  margin-bottom: 72px;
}

.facilities__label { margin-bottom: 16px; }

.facilities__heading {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.facilities__sub {
  font-size: 0.85rem;
  color: var(--stone);
  letter-spacing: 0.05em;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Nana Heritage Style Interactive Carousel */
.cf-stage {
  position: relative;
  height: 520px;
  overflow: visible;
  margin: 40px 0 60px;
  z-index: 2;
  width: 100%;
}
.cf-track {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.cf-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 320px;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  transition: transform .7s cubic-bezier(.22,1,.36,1), opacity .5s ease, filter .5s ease;
  will-change: transform;
}
@media (min-width: 768px) {
  .cf-card {
    width: 380px;
    height: 520px;
  }
}
.cf-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(26,26,26,0.1);
  background: rgba(26, 26, 26, 0.05);
  backdrop-filter: blur(8px);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
}
.cf-arrow:hover {
  background: rgba(26,26,26,0.1);
  transform: translateY(-50%) scale(1.05);
}
.cf-prev {
  left: 10px;
}
.cf-next {
  right: 10px;
}
@media (min-width: 768px) {
  .cf-prev { left: 40px; }
  .cf-next { right: 40px; }
}

.facility-card {
  
  background: var(--teal-dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  z-index: 2;
}

.facility-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  z-index: 1;
}

.facility-card:hover .facility-card__image,
.facility-card.active .facility-card__image {
  transform: scale(1.08);
}

.facility-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 50, 60, 0.95) 0%, rgba(10, 50, 60, 0.45) 45%, transparent 100%);
  z-index: 2;
  transition: background 0.5s ease;
}

.facility-card:hover .facility-card__overlay,
.facility-card.active .facility-card__overlay {
  background: rgba(10, 50, 60, 0.85);
}

.facility-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.facility-card__details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(20px);
}

.facility-card:hover .facility-card__details,
.facility-card.active .facility-card__details {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 20px;
}

.facility-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.facility-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}

.facility-card__info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.facility-card__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--teal-light);
  text-transform: uppercase;
}

.facility-card__btn {
  font-size: 0.75rem;
  padding: 12px 20px;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ============================================================
   MENU HIGHLIGHTS
   ============================================================ */
.menu {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.menu__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.menu__heading {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--charcoal);
}

.menu__heading span { color: var(--teal-dark); }

.menu__tabs {
  display: flex;
  gap: 8px;
  background: var(--cream-dark);
  padding: 6px;
  border-radius: 100px;
  margin-bottom: 48px;
}

.menu__tab {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--stone);
}

.menu__tab.active {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(19,106,123,0.3);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.menu-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
  gap: 12px;
}

.menu-item:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
  border-color: var(--teal-light);
}

.menu-item__name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
}

.menu-item__price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-dark);
  white-space: nowrap;
  background: rgba(19,106,123,0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

.menu-item--signature .menu-item__name::before {
  content: '★ ';
  color: var(--gold);
  font-size: 0.7rem;
}

.menu__panel { display: none; }
.menu__panel.active { display: block; }

.menu__visual {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.menu__visual-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu__visual-img:hover { transform: scale(1.03); }

/* ============================================================
   GALLERY / ATMOSPHERE
   ============================================================ */
.gallery {
  padding: 120px 0;
  background: var(--teal-dark);
  overflow: hidden;
  position: relative;
}

.gallery__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/logos/supergraphic-blue.png') center / cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.gallery__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.gallery .label {
  color: var(--teal-light);
  opacity: 1;
}

.gallery__heading {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.gallery__heading span { color: var(--white); }

.gallery__sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.gallery__strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.gallery__strip:active { cursor: grabbing; }

.gallery__strip::-webkit-scrollbar { height: 4px; }
.gallery__strip::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); border-radius: 4px; }
.gallery__strip::-webkit-scrollbar-thumb { background: var(--teal-light); border-radius: 4px; }

.gallery__item {
  flex: 0 0 340px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.gallery__item:hover { transform: scale(1.02); }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.08); }

.gallery__item-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(19,106,123,0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.booking__bg {
  position: absolute;
  inset: 0;
  background: url(\'../assets/logos/supergraphic-blue.png\') center / cover no-repeat;
  opacity: 0.04;
}

.booking__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.booking__label { margin-bottom: 16px; }

.booking__heading {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.05;
}

.booking__text {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}

.booking__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Booking Form Panel */
.booking__form-wrap {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-xl);
  padding: 44px;
}

.booking__form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.form-group select,
.form-group input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select option { background: var(--white); color: var(--charcoal); }

.form-group select:focus,
.form-group input:focus {
  border-color: var(--teal-light);
  background: var(--white);
}

.form-group input::placeholder { color: rgba(0,0,0,0.3); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.booking__form-note {
  font-size: 0.68rem;
  color: var(--stone);
  letter-spacing: 0.05em;
  margin-top: 14px;
  text-align: center;
}

/* Inline booking feedback — conflict errors / success confirmation */
.booking__status-msg {
  font-family: var(--font-body);
  font-size: 0.76rem;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin: 4px 0 0;
}
.booking__status-msg--error {
  background: rgba(176, 60, 60, 0.08);
  border: 1px solid rgba(176, 60, 60, 0.25);
  color: #A83A3A;
}
.booking__status-msg--success {
  background: rgba(19, 106, 123, 0.08);
  border: 1px solid rgba(19, 106, 123, 0.25);
  color: var(--teal-dark);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 120px 0;
  background: var(--cream);
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
}

.faq__left .faq__heading {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.1;
}

.faq__left .faq__heading span { color: var(--teal-dark); }

.faq__left p {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 32px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item.open {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-card);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.faq__question:hover { background: rgba(19,106,123,0.03); }

.faq__question span {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  padding-right: 16px;
}

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 0.85rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq__item.open .faq__icon {
  background: var(--teal-dark);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__item.open .faq__answer { max-height: 300px; }

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.85;
  font-weight: 300;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  padding: 120px 0;
  background: var(--cream-dark);
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/3;
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.location__label { margin-bottom: 16px; }

.location__heading {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.location__heading span { color: var(--teal-dark); }

.location__detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.location__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location__detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(19,106,123,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.location__detail-text .dtitle {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.location__detail-text .dval {
  font-size: 0.8rem;
  color: var(--stone);
  line-height: 1.6;
  font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  padding: 80px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.footer__brand img.ft-logo-mark {
  width: 48px;
  margin-bottom: 12px;
}

.footer__brand img.ft-logo-type {
  height: 18px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  font-weight: 300;
}

.footer__links a:hover { color: var(--teal-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

.footer__bottom span { color: var(--teal-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  /* Hero */
  .hero__photo-strip { gap: 12px; }

  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .about__image-wrap { max-width: 500px; margin: 0 auto; }

  .facilities__grid { grid-template-columns: 1fr 1fr; }

  .booking__inner { grid-template-columns: 1fr; }

  .faq__inner { grid-template-columns: 1fr; gap: 48px; }

  .location__inner { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }

  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .menu__visual { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Navbar */
  .navbar__nav { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  /* Hero */
  .hero { padding-top: 90px; }
  .hero__heading { font-size: 3rem; }
  .hero__heading-line2 { font-size: 2.2rem; }
  .hero__photo-strip {
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
  }
  .hero__photo-strip-item:nth-child(1),
  .hero__photo-strip-item:nth-child(3) { height: 200px; margin-top: 0; display: none; }
  .hero__photo-strip-item:nth-child(2) { height: 300px; border-radius: var(--radius-lg); }

  
  .menu__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .menu__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .booking__form-wrap { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
}


/* Overrides for Nana Heritage Style */
.cf-card.facility-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 320px;
  height: 480px;
}
@media (min-width: 768px) {
  .cf-card.facility-card {
    width: 380px;
    height: 520px;
  }
}





/* ============================================================
   PAGE TRANSITION — Unified Small-Flower Cover
   One overlay, one flower preset, used for both the "in" (leaving a
   page) and "out" (arriving at a page) transition on every page.
   Positions/animation are driven by GSAP in js/page-transition.js —
   this just sets up the static box each flower renders in.
   ============================================================ */
#pt-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
  background: transparent; /* the flowers themselves cover the page — no color wash */
}

.pt-bunga {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
