/* =============================================
   BUSSABAA THAI MASSAGE – style.css

   OBRAZKY – cesty v HTML / CSS (logo v index.html, hero pozadie nižšie #hero)
   ============================================= */

:root {
  --crimson:      #6B0F1A;
  --crimson-dark: #420a10;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-deep:    #B08E38;
  --gold-deep-mid:#CBB05A;
  --gold-pale:    #f5e6bb;
  --cream:        #FDF6E3;
  --dark:         #1a0a00;
  --text:         #2a1500;
  --text-light:   #7a5c3a;
  --white:        #ffffff;
  --shadow:       0 8px 40px rgba(107,15,26,0.18);
  --transition:   0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Cinzel', serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-ui:      'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text); overflow-x: hidden; }

/* NAV */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all var(--transition); }
#navbar.scrolled { background: rgba(26,10,0,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 1rem 2rem; display: flex; align-items: center; gap: 1.5rem; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.logo-ring {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--crimson-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-12%) scale(1.18);
  transform-origin: center center;
}
.nav-logo span { font-family: var(--font-display); color: var(--gold-light); font-size: 1.05rem; letter-spacing: 0.04em; line-height: 1.2; }
.nav-logo em { display: block; font-style: italic; font-size: 0.75em; opacity: 0.75; }
.nav-links { display: flex; list-style: none; gap: 0.25rem; margin-left: auto; }
.nav-links a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-ui);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after { content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%; height: 1px; background: var(--gold); transition: left 0.3s, right 0.3s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { left: 0.9rem; right: 0.9rem; }
.nav-contact-combo { display: inline-flex !important; align-items: center; gap: 0.35rem; }
.nav-contact-word { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.nav-contact-slash { color: var(--gold); font-weight: 700; text-decoration: none; }
.nav-links a.nav-link-diacritics,
.nav-mobile a.nav-link-diacritics {
  text-transform: none;
}
.nav-lang { position: relative; display: flex; flex-direction: column; align-items: flex-end; z-index: 1001; }
.lang-toggle { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); border-radius: 4px; padding: 0.3rem 0.45rem 0.3rem 0.5rem; cursor: pointer; display: flex; align-items: center; gap: 0.35rem; font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.3s; }
.lang-toggle:hover, .nav-lang.is-open .lang-toggle { border-color: var(--gold); color: var(--gold-light); background: rgba(201,168,76,0.12); }
.lang-toggle-inner { display: flex; align-items: center; gap: 0.3rem; }
.lang-flag-img { width: 22px; height: 15px; object-fit: cover; display: block; flex-shrink: 0; border-radius: 1px; }
.lang-chevron { flex-shrink: 0; opacity: 0.65; transition: transform 0.25s ease; }
.nav-lang.is-open .lang-chevron { transform: rotate(180deg); }
.lang-panel { position: absolute; top: calc(100% + 0.35rem); right: 0; display: flex; flex-direction: column; gap: 0.3rem; padding: 0.35rem; min-width: 100%; background: rgba(26,10,0,0.98); border: 1px solid rgba(201,168,76,0.28); border-radius: 6px; box-shadow: 0 10px 32px rgba(0,0,0,0.45); }
.lang-panel[hidden] { display: none !important; }
.lang-option { background: transparent; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.65); border-radius: 4px; padding: 0.35rem 0.55rem; cursor: pointer; display: flex; align-items: center; gap: 0.35rem; width: 100%; justify-content: flex-start; font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.25s; text-align: left; }
.lang-option:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,168,76,0.1); }
.lang-option.active { display: none; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold-light); border-radius: 1px; transition: transform 0.3s, opacity 0.3s; }
.nav-mobile { display: none; background: rgba(26,10,0,0.98); border-top: 1px solid rgba(201,168,76,0.2); }
.nav-mobile ul { list-style: none; }
.nav-mobile a {
  display: block;
  padding: 1rem 2rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile.open { display: block; }

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--crimson-dark);
  isolation: isolate;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/assets-ostatne/Bussaba-hero-backround.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(26,6,6,0.88) 0%, rgba(107,15,26,0.72) 50%, rgba(26,6,6,0.91) 100%); }
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.particle { position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; animation: floatUp linear infinite; opacity: 0; }
@keyframes floatUp { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: 0.6; } 90% { opacity: 0.3; } 100% { transform: translateY(-20vh) scale(1.5); opacity: 0; } }
.hero-content { position: relative; z-index: 3; text-align: center; padding: 2rem; max-width: 900px; }
.hero-badge { display: inline-block; margin-bottom: 1.5rem; font-family: var(--font-ui); font-size: 0.72rem; font-weight: 300; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.4); padding: 0.5rem 1.5rem; border-radius: 30px; animation: fadeDown 1s 0.3s both; }
.hero-title { display: flex; flex-direction: column; margin-bottom: 1.5rem; animation: fadeDown 1s 0.5s both; }
.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--gold-light);
  -webkit-text-stroke: 2px #8a6620;
  paint-order: stroke fill;
  text-shadow: 0 0 55px rgba(201, 168, 76, 0.5);
}
.hero-title-sub { font-family: var(--font-display); font-size: clamp(1.6rem,3.8vw,2.8rem); font-weight: 600; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-top: 0.3rem; }
.hero-slogan { font-family: var(--font-body); font-style: italic; font-size: clamp(1.25rem,2.6vw,1.65rem); font-weight: 500; line-height: 1.7; color: rgba(255,255,255,0.95); max-width: 720px; margin: 0 auto 2.5rem; animation: fadeDown 1s 0.7s both; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeDown 1s 0.9s both; }
@keyframes fadeDown { from { opacity:0; transform:translateY(-25px); } to { opacity:1; transform:translateY(0); } }

/* BUTTONS */
.btn-gold { display: inline-block; padding: 0.9rem 2.5rem; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%); background-size: 200%; color: var(--dark); font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; border: none; border-radius: 3px; cursor: pointer; transition: background-position 0.5s, transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 20px rgba(201,168,76,0.35); }
.btn-gold:hover { background-position: right center; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.55); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-ornament { color: var(--gold); font-size: 1.2rem; display: block; margin-bottom: 0.75rem; animation: spinGold 8s linear infinite; }
@keyframes spinGold { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
.section-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 600; color: var(--crimson-dark); letter-spacing: 0.04em; margin-bottom: 1rem; }
.section-line { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto; }
.section-sub { font-family: var(--font-body); font-style: italic; color: var(--text-light); font-size: 1.05rem; margin-top: 1rem; }

/* ABOUT */
#about { background: var(--cream); position: relative; overflow: hidden; }
.about-deco { position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%); pointer-events: none; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text p { font-size: 1.18rem; line-height: 1.9; margin-bottom: 1.2rem; }
.about-lead { font-size: 2rem !important; font-style: italic; color: var(--crimson) !important; margin-bottom: 1.8rem !important; }
.about-image-wrap { position: relative; }
.about-img { width: 100%; border-radius: 4px; box-shadow: var(--shadow); min-height: 350px; background: var(--crimson-dark); object-fit: cover; transition: transform 0.6s ease; }
.about-img:hover { transform: scale(1.02); }
.about-badge-float { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--crimson); border: 3px solid var(--gold); border-radius: 50%; width: 110px; height: 110px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 30px rgba(107,15,26,0.4); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
.about-badge-inner { text-align: center; color: var(--gold-light); }
.badge-num { display: block; font-size: 1.8rem; font-family: var(--font-display); }
.badge-txt { font-family: var(--font-ui); font-size: 0.55rem; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.4; }

.about-profiles-wrap {
  max-width: 920px;
  margin: 3.5rem auto 0;
}
.about-profiles-label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  text-align: center;
  margin: 0 0 1.35rem;
}
.about-profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.profile-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 6px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 6px 28px rgba(107, 15, 26, 0.1);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(107, 15, 26, 0.16);
}
.profile-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.profile-card-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: var(--crimson-dark);
  box-shadow: 0 4px 16px rgba(107, 15, 26, 0.2);
  flex-shrink: 0;
}
.profile-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.profile-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--crimson);
  letter-spacing: 0.06em;
  margin: 0;
}
.profile-card-prax,
.profile-card-spec {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.65rem;
  color: var(--text);
  text-align: left;
}
.profile-card-prax strong,
.profile-card-spec strong {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}
.profile-card-quote {
  margin: 0.75rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--crimson);
  text-align: center;
}
.profile-card-quote::before {
  content: none;
}

/* GALLERY */
#gallery { background: var(--cream); position: relative; overflow: hidden; padding-top: 2rem; }
.gallery-shell { position: relative; left: 50%; width: 100vw; margin-left: -50vw; padding: 0 2rem; display: flex; align-items: center; gap: 1.5rem; }
.gallery-track { flex: 1; min-width: 0; display: flex; gap: 1.5rem; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; padding: 0.5rem 0 1.25rem; scrollbar-width: none; cursor: grab; }
.gallery-track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-card {
  flex: 0 0 auto;
  width: min(82vw, 680px);
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.55);
  box-shadow: var(--shadow);
  scroll-snap-align: center;
  background: transparent;
}
.gallery-card img { width: 100%; height: 100%; display: block; object-fit: contain; user-select: none; pointer-events: none; transition: transform 0.6s ease; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-nav {
  flex: 0 0 48px;
  align-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-nav:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,168,76,0.5); }

/* Galéria na PC — užšie karty; pomer strán ako fotografie (žiadne bočné pásy pri contain) */
@media (min-width: 901px) {
  .gallery-card {
    width: min(46vw, 360px);
  }
  .gallery-card:hover img { transform: scale(1.02); }
}

/* WELLNESS STRIP (čaj + kokosový olej) */
.wellness-strip {
  background: var(--dark);
  background-image: radial-gradient(ellipse at 20% 50%, rgba(107, 15, 26, 0.4) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(107, 15, 26, 0.3) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
  padding: 2.75rem 0;
}
.wellness-strip-grid {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  gap: 2rem 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.wellness-strip-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.wellness-strip-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.wellness-strip-logo--tea {
  transform: translateY(-1.1rem);
}
.wellness-strip-logo--oil {
  transform: translateY(1.1rem);
}
.wellness-strip-logo img {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}
.wellness-strip-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.wellness-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--gold-light);
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.wellness-block p {
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.65rem;
}
.wellness-block p:last-child {
  margin-bottom: 0;
}
.wellness-block strong {
  color: var(--gold-light);
  font-weight: 600;
}
.wellness-block-sub {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1rem 0 0.55rem;
}
.wellness-tea-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem 1.25rem;
  margin: 0;
  padding: 0;
}
.wellness-tea-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.wellness-tea-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.wellness-tip {
  margin-top: 0.85rem !important;
  padding: 0.75rem 1rem;
  background: rgba(107, 15, 26, 0.45);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
.wellness-tip strong {
  color: var(--gold-light);
}
.wellness-block--oil {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
}

@media (min-width: 901px) {
  .wellness-strip-logos { gap: 3.25rem; }
  .wellness-strip-logo--oil { order: 1; }
  .wellness-strip-logo--tea { order: 2; }
  .wellness-strip-logo--oil { transform: translateY(-1.6rem); }
  .wellness-strip-logo--tea { transform: translateY(0.7rem); }
}

/* MASSAGES (popisy) */
#massages { background: var(--cream); position: relative; overflow: hidden; }
.massages-intro {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.massages-intro p {
  font-size: clamp(1.3rem, 3.2vw, 1.65rem);
  line-height: 1.75;
  color: var(--text);
}
.massages-intro strong {
  color: var(--crimson);
  font-weight: 600;
}
.massages-specialize {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
  text-align: center;
  margin-bottom: 2rem;
}
.massages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.massage-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(107, 15, 26, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.massage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107, 15, 26, 0.16);
}
.massage-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--crimson-dark);
}
.massage-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.massage-card:hover .massage-card-img img {
  transform: scale(1.04);
}
.massage-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
}
.massage-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--crimson);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.massage-card-body p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}
.massages-outro {
  max-width: 820px;
  margin: 3rem auto 0;
  text-align: center;
}
.massages-outro p {
  font-size: clamp(1.3rem, 3.2vw, 1.65rem);
  line-height: 1.75;
  margin-bottom: 1.15rem;
  color: var(--text);
}
.massages-outro a:not(.btn-gold) {
  color: var(--crimson);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.massages-outro a:not(.btn-gold):hover {
  color: var(--gold);
}
.massages-hours {
  font-style: italic;
  font-size: clamp(2rem, 5.5vw, 3rem);
  line-height: 1.45;
  color: var(--crimson) !important;
  margin-top: 2rem !important;
}
.massages-hours strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.massages-cta {
  margin-top: 1.75rem;
}

/* SERVICES */
#services { background: var(--dark); background-image: radial-gradient(ellipse at 20% 50%, rgba(107,15,26,0.4) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(107,15,26,0.3) 0%, transparent 60%); }
#services .section-title { color: var(--gold-light); }
#services .section-sub { color: rgba(255,255,255,0.5); }
.price-header-row { display: grid; grid-template-columns: 1fr 110px 110px 110px; padding: 0 1.5rem; margin-bottom: 0.5rem; }
.price-col-label { text-align: center; font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(201,168,76,0.3); }
.price-table { display: flex; flex-direction: column; }
.price-row { display: grid; grid-template-columns: 1fr 110px 110px 110px; align-items: center; padding: 0.9rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.3s, box-shadow 0.3s; opacity: 0; transform: translateX(-20px); }
.price-row.visible { opacity: 1; transform: translateX(0); transition: opacity 0.5s calc(var(--i) * 0.06s), transform 0.5s calc(var(--i) * 0.06s), background 0.3s, box-shadow 0.3s; }
.price-row:hover { background: rgba(201,168,76,0.06); box-shadow: inset 3px 0 0 var(--gold); }
.price-row.highlight { background: rgba(107,15,26,0.4); border-left: 3px solid var(--gold); }
.price-row.highlight .price-name { color: var(--gold-light); }
.price-name { font-family: var(--font-body); color: rgba(255,255,255,0.92); font-size: clamp(1.05rem, 1.9vw, 1.2rem); font-weight: 500; line-height: 1.45; }
.price-val { text-align: center; font-family: var(--font-display); color: var(--gold); font-size: 1rem; font-weight: 600; }
.price-dash { color: rgba(255,255,255,0.2); font-weight: 300; font-size: 0.9rem; }

/* RELAX PACKAGES (Gold & Diamond) */
#relax-packages {
  background: var(--dark);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 55%);
  position: relative;
  overflow: hidden;
}
#relax-packages .section-title { color: var(--gold-light); }
#relax-packages .section-sub { color: rgba(255, 255, 255, 0.6); }
.relax-packages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}
.relax-packages-cta {
  margin-top: 6rem;
  text-align: center;
}
.relax-offer {
  margin: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.relax-offer:hover {
  transform: translateY(-5px);
}
.relax-offer-inner {
  height: 100%;
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}
.relax-offer--gold .relax-offer-inner {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}
.relax-offer--gold:hover .relax-offer-inner {
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.5);
}
.relax-offer--diamond .relax-offer-inner {
  border: 2px solid var(--gold-deep);
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-deep-mid) 50%, var(--gold-deep) 100%);
  box-shadow: 0 8px 28px rgba(176, 142, 56, 0.4);
}
.relax-offer--diamond:hover .relax-offer-inner {
  box-shadow: 0 12px 36px rgba(176, 142, 56, 0.52);
}
.relax-offer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.relax-ornament {
  flex-shrink: 0;
  line-height: 0;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
}
.relax-title-plaque {
  position: relative;
  padding: 0.55rem 1rem;
  background: #5c0808;
  border: 2px solid #e8c050;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.relax-title-plaque::before,
.relax-title-plaque::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
}
.relax-title-plaque::before {
  top: -4px;
  left: -4px;
  border-top: 2px solid #e8c050;
  border-left: 2px solid #e8c050;
}
.relax-title-plaque::after {
  bottom: -4px;
  right: -4px;
  border-bottom: 2px solid #e8c050;
  border-right: 2px solid #e8c050;
}
.relax-offer-title {
  margin: 0;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.3;
  color: #fff5d6;
  letter-spacing: 0.03em;
}
.relax-price-pill {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 0.5rem 1.2rem;
  background: #5c0808;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  color: #fff5d6;
  line-height: 1.4;
}
.relax-price-pill strong {
  font-weight: 800;
}
.relax-menu {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  counter-reset: relax-menu;
  max-width: 36rem;
  text-align: left;
}
.relax-menu li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: clamp(0.92rem, 1.85vw, 1.08rem);
  font-weight: 600;
  line-height: 1.6;
  color: #3a0202;
  counter-increment: relax-menu;
  background: rgba(255, 252, 240, 0.48);
  border-radius: 8px;
  border-left: 4px solid #5c0808;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.relax-menu li:last-child {
  margin-bottom: 0;
}
.relax-menu li::before {
  content: counter(relax-menu);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  height: 1.85rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: #5c0808;
  color: #fff5d6;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* SPECIAL */
#special { background: var(--crimson-dark); position: relative; overflow: hidden; }
.special-bg-deco { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%), radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.05) 0%, transparent 60%); pointer-events: none; }
#special .section-title { color: var(--gold-light); }
.voucher-wrap { display: flex; flex-direction: column; align-items: center; gap: 6rem; max-width: 980px; margin: 0 auto; text-align: center; }
.voucher-img { width: 100%; max-width: 900px; border-radius: 8px; border: 3px solid var(--gold); box-shadow: 0 18px 60px rgba(0,0,0,0.45); }

/* FAQ */
#faq { background: var(--cream); position: relative; overflow: hidden; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 1px solid rgba(107,15,26,0.12); border-left: 4px solid var(--gold); border-radius: 6px; background: rgba(255,255,255,0.45); box-shadow: 0 8px 28px rgba(107,15,26,0.08); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.55rem 1.8rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-display); color: var(--crimson-dark); font-size: 1.35rem; letter-spacing: 0.03em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex-shrink: 0; color: var(--gold); font-family: var(--font-display); font-size: 1.5rem; line-height: 1; transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.8rem 1.65rem; font-size: 1.3rem; line-height: 1.8; color: var(--text); }

/* CONTACT */
#contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid rgba(107,15,26,0.08); }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item strong { display: block; font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--crimson); margin-bottom: 0.25rem; }
.contact-item p { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; }
.contact-item a { color: var(--crimson); text-decoration: none; transition: color 0.3s; }
.contact-item a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 0.9rem; margin-top: 1.5rem; }
.social-btn { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(107,15,26,0.3); border-radius: 50%; text-decoration: none; color: var(--crimson); transition: all 0.3s; }
.social-btn svg { width: 24px; height: 24px; fill: currentColor; }
.social-btn:hover { background: var(--crimson); color: var(--gold-light); border-color: var(--crimson); }
.contact-visual { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; margin-top: -1.5rem; }
.contact-map { width: 100%; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); height: 280px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }
.contact-qr { width: 100%; display: flex; justify-content: center; }
.contact-qr img { width: min(100%, 260px); display: block; border-radius: 10px; border: 3px solid var(--gold); box-shadow: var(--shadow); }

/* FOOTER */
footer {
  background: var(--dark);
  padding: 3rem clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid rgba(201,168,76,0.15);
  overflow-x: clip;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.footer-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.35rem;
  justify-self: start;
  min-width: 0;
}
.footer-social { display: flex; gap: 0.9rem; }
.footer-social .social-btn { color: var(--gold-light); border-color: rgba(201,168,76,0.55); }
.footer-social .social-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-align: left;
}
.footer-contact-icon {
  font-size: 1.1rem;
  line-height: 1.4;
  flex-shrink: 0;
}
.footer-contact-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.footer-contact-item p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-brand { text-align: center; min-width: 0; }
.footer-company {
  justify-self: end;
  text-align: left;
  font-family: var(--font-ui);
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.72rem, 1.05vw, 0.82rem);
  letter-spacing: 0.04em;
  line-height: 1.65;
  max-width: 100%;
  min-width: 0;
}
.footer-company p { margin: 0 0 0.35rem; color: rgba(255,255,255,0.75); }
.footer-company p:last-child { margin-bottom: 0; }
.footer-company strong { color: var(--gold); font-weight: 700; }
.footer-company a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-company a:hover { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.footer-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  opacity: 0.85;
  background: var(--crimson-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-12%) scale(1.18);
  transform-origin: center center;
}
.footer-name { font-family: var(--font-display); color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.site-copyright {
  background: #120800;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 0.85rem clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}
.site-copyright p {
  margin: 0;
  font-family: var(--font-ui);
  color: rgba(255,255,255,0.32);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.35rem 0.5rem; margin-top: 0.85rem; }
.footer-legal-sep { color: rgba(201,168,76,0.45); font-size: 0.85rem; user-select: none; }
.footer-legal-link {
  background: none;
  border: none;
  padding: 0.15rem 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(232,201,122,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.25s;
}
.footer-legal-link:hover { color: var(--gold-light); }

/* LEGAL MODALS */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(10, 4, 0, 0.72);
  backdrop-filter: blur(6px);
}
.legal-modal-overlay[hidden] { display: none !important; }
.legal-modal {
  position: relative;
  width: min(100%, 640px);
  max-height: min(88vh, 720px);
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.legal-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(107,15,26,0.2);
  border-radius: 50%;
  background: var(--white);
  color: var(--crimson);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.legal-modal-close:hover {
  background: var(--crimson);
  color: var(--gold-light);
  border-color: var(--crimson);
}
.legal-modal-scroll {
  overflow-y: auto;
  padding: 2rem 1.75rem 1.75rem;
  -webkit-overflow-scrolling: touch;
}
.legal-modal-panel { color: var(--text); }
.legal-modal-panel[hidden] { display: none; }
.legal-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  color: var(--crimson);
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
  padding-right: 2rem;
}
.legal-modal-meta {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.legal-modal-operator {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(201,168,76,0.12);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}
.legal-modal-panel p,
.legal-modal-panel li {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.legal-modal-panel h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--crimson-dark);
  letter-spacing: 0.05em;
  margin: 1.25rem 0 0.5rem;
}
.legal-modal-panel ul {
  margin: 0 0 0.75rem 1.1rem;
  padding: 0;
}
.legal-modal-panel li { margin-bottom: 0.4rem; }
.legal-modal-panel a { color: var(--crimson); text-decoration: underline; text-underline-offset: 2px; }
.legal-modal-panel a:hover { color: var(--gold-deep); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* FOOTER – stredné šírky (901–1199 px): centrovanie ako na mobile */
@media (max-width: 1199px) and (min-width: 901px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 1.75rem;
  }
  .footer-aside { justify-self: center; align-items: center; }
  .footer-company {
    justify-self: center;
    text-align: left;
    display: inline-block;
    transform: none;
  }
}

/* FOOTER – široká obrazovka: jemný posun doprava bez orezania */
@media (min-width: 1200px) {
  .footer-company { transform: translateX(0.75rem); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-lang { display: flex; }
  .nav-hamburger { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-profiles-wrap { margin-top: 2.5rem; }
  .about-profiles { grid-template-columns: 1fr; gap: 1.5rem; max-width: 360px; margin-left: auto; margin-right: auto; }
  .massages-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 400px; }
  .massages-intro p { font-size: clamp(1.2rem, 3.5vw, 1.5rem); }
  .wellness-strip { padding: 2.5rem 0; }
  .wellness-strip-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .wellness-strip-logos {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .wellness-strip-logo--tea,
  .wellness-strip-logo--oil {
    transform: none;
  }
  .wellness-strip-logo img { max-width: 195px; }
  .wellness-tea-list { grid-template-columns: 1fr; }
  .profile-card-avatar { width: 80px; height: 80px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-aside { justify-self: center; align-items: center; }
  .footer-company { justify-self: center; text-align: left; display: inline-block; transform: none; }
  .about-badge-float { width: 80px; height: 80px; bottom: -1rem; left: -0.5rem; }
  .about-badge-inner { transform: scale(0.9); }
  .badge-num { font-size: 1.35rem; }
  .badge-txt { font-size: 0.5rem; letter-spacing: 0.04em; line-height: 1.2; }
  .price-row, .price-header-row { grid-template-columns: 1fr 80px 80px 80px; }
  .price-col-label, .price-val { font-size: 0.82rem; }
  .contact-map { height: 300px; }

  /* Galéria (mobil / tablet): vždy jeden celý obrázok v strede, žiadne orezanie bokov */
  .gallery-shell {
    align-items: center;
    gap: 0.5rem;
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
  }
  .gallery-track {
    gap: 0;
    scroll-padding: 0;
    overscroll-behavior-x: contain;
    touch-action: pan-x pinch-zoom;
  }
  .gallery-track .gallery-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
    min-width: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    box-sizing: border-box;
  }
}

/* Hero CTA na mobile / úzkych displejoch — rovnaká šírka, kompaktnejší rozmer */
@media (max-width: 768px) {
  #hero {
    min-height: 100svh;
    min-height: -webkit-fill-available;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: min(92vw, 15.5rem);
    margin-left: auto;
    margin-right: auto;
    gap: 1.25rem;
  }
  .hero-cta .btn-gold {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 0.95rem 1.3rem;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 600px) {
  .price-row, .price-header-row { grid-template-columns: 1fr 65px 65px 65px; padding: 0.85rem 0.75rem; }
  .price-name { font-size: 1rem; line-height: 1.4; }
  .gallery-shell { gap: 0.65rem; padding: 0 0.75rem; }
  .gallery-nav { flex-basis: 40px; width: 40px; height: 40px; font-size: 1.6rem; }
  section { padding: 4rem 0; }
  .wellness-strip { padding: 2rem 0; }
  .wellness-strip-logo img { max-width: 195px; }
  .relax-packages-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 520px; }
  .relax-offer-inner { padding: 1.5rem 1rem 1.25rem; }
  .relax-ornament svg { width: 28px; height: 28px; }
  .relax-title-plaque { padding: 0.45rem 0.7rem; }
}
