/* Spa Elysium — Main Stylesheet */
/* Do not modify CSS variables */

:root {
  --bg: #0A0A0A;
  --bg-alt: #060606;
  --bg2: #111111;
  --bg3: #181818;
  --text: #F0F0F0;
  --muted: #777777;
  --border: #1E1E1E;
  --green: #2D7A3A;
  --green2: #3D9E4A;
  --green3: #4DB85A;
  --wa: #25D366;
  --gold: #B8A06A;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  padding-top: 114px;
  padding-bottom: 60px;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.mt-10 { margin-top: 10px; }
.full-width { display: block; width: 100%; box-sizing: border-box; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--green); color: #fff;
  padding: 14px 32px; font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  transition: background 0.3s; text-align: center;
}
.btn-primary:hover { background: var(--green2); color: #fff; }

.btn-outline {
  display: inline-block; background: transparent;
  border: 1px solid var(--green); color: var(--green);
  padding: 14px 32px; font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 2px; cursor: pointer;
  transition: background 0.3s, color 0.3s; text-align: center;
}
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-wa {
  display: inline-block; background: var(--wa); color: #fff;
  padding: 14px 32px; font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  transition: background 0.3s; text-align: center;
}
.btn-wa:hover { background: #1DA851; color: #fff; }

.btn-sm { padding: 9px 20px !important; font-size: 12px !important; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}
@keyframes pulse-opacity {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── TOP BAR ── */
.top-bar {
  position: fixed; top: 0; left: 0; width: 100%; height: 44px; z-index: 1000;
  background: #060606; border-bottom: 1px solid #1A1A1A;
  display: flex; align-items: center; justify-content: center;
}
.top-bar-inner {
  display: flex; align-items: center; gap: 20px;
  font-family: 'Inter', sans-serif; font-size: 12px;
}
.top-item { transition: opacity 0.2s; }
.top-item:hover { opacity: 0.8; }
.top-divider { color: #222; user-select: none; }
.hide-mobile { /* shown desktop, hidden mobile via responsive.css */ }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 44px; left: 0; width: 100%; z-index: 999;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1A1A1A;
  transition: border-color 0.3s;
}
.navbar.scrolled { border-bottom: 1px solid var(--green); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-name {
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 18px;
  color: #fff; letter-spacing: 2px; line-height: 1.2;
}
.nav-tag { font-family: 'Inter', sans-serif; font-size: 9px; color: #555; letter-spacing: 2px; margin-top: 2px; }
.nav-links {
  display: flex; list-style: none; align-items: center;
  gap: 28px; margin: 0; padding: 0;
}
.nav-links a {
  font-family: 'Inter', sans-serif; font-size: 12px; color: #777;
  letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta { padding: 10px 22px !important; font-size: 12px !important; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 22px; padding: 4px;
}
.mobile-menu {
  display: none; flex-direction: column;
  background: #060606; border-top: 1px solid #111;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 16px 24px; font-family: 'Inter', sans-serif;
  font-size: 13px; color: #777; letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 1px solid #111; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--green); }

/* ── SECTION COMMON ── */
.section-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 11px; color: var(--green);
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px;
}
.eyebrow-bar { width: 40px; height: 2px; background: var(--green); margin-bottom: 24px; }
.section-h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 42px;
  font-weight: 400; color: var(--text); margin: 0 0 24px; line-height: 1.2;
}
.section-subtext {
  font-family: 'Inter', sans-serif; font-size: 14px; color: #555;
  max-width: 500px; margin: 16px auto 0; line-height: 1.8;
}
.section-header { text-align: center; margin-bottom: 48px; }
.cta-row-center {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-top: 40px;
}

/* ── FLOATING BUBBLES ── */
.float-wa {
  position: fixed; bottom: 88px; right: 28px; z-index: 8000;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3); cursor: pointer;
  transition: transform 0.2s; text-decoration: none;
}
.float-wa:hover { transform: scale(1.1); }
.float-call {
  position: fixed; bottom: 160px; right: 28px; z-index: 8000;
  width: 52px; height: 52px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  cursor: pointer; transition: transform 0.2s;
  box-shadow: 0 4px 14px rgba(45,122,58,0.3); text-decoration: none;
}
.float-call:hover { transform: scale(1.1); }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 168px; right: 28px; z-index: 7999;
  width: 42px; height: 42px; border-radius: 50%;
  background: #111; border: 1px solid #1A1A1A;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 18px; cursor: pointer;
  transition: border-color 0.2s, opacity 0.3s; opacity: 0; pointer-events: none;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { border-color: var(--green); }

/* ── STICKY STRIP ── */
.sticky-strip {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9998;
  background: #060606; border-top: 1px solid var(--green); padding: 11px 0;
  opacity: 0; transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s; pointer-events: none;
}
.sticky-strip.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.sticky-inner > span {
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text);
}
.sticky-btns { display: flex; gap: 12px; }

/* ── MOBILE BOTTOM BAR ── */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999;
  background: #060606; border-top: 1px solid #1A1A1A; flex-direction: column;
}
.mobile-bar-strip {
  background: #071008; font-family: 'Inter', sans-serif;
  font-size: 10px; color: var(--green); text-align: center;
  padding: 5px; letter-spacing: 1px;
}
.mobile-bar-links {
  display: flex; padding: 10px 0;
}
.mobile-bar-links a {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; padding: 4px 0; gap: 3px;
}

/* ── EXIT POPUP ── */
.exit-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.88);
  z-index: 99999; display: none; align-items: center; justify-content: center;
}
.exit-card {
  background: #0D0D0D; border: 1px solid var(--green);
  padding: 40px 36px; max-width: 440px; width: 90%;
  border-radius: 4px; text-align: center; position: relative;
}
.exit-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; font-size: 20px; color: #444;
  cursor: pointer; transition: color 0.2s;
}
.exit-close:hover { color: var(--green); }
.exit-logo { display: flex; justify-content: center; margin-bottom: 14px; }
.exit-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--text); margin-bottom: 8px; }
.exit-sub { font-family: 'Inter', sans-serif; font-size: 13px; color: #555; margin-bottom: 24px; }
.exit-note { font-family: 'Inter', sans-serif; font-size: 11px; color: #333; margin-top: 12px; }
