:root {
  --bg:#f6f1ea;
  --bg-2:#ffffff;
  --gold:#c79a35;
  --gold-soft:#e1c370;
  --text:#1b1f26;
  --muted:#6b6f79;
  --card:#ffffff;
  --focus: 0 0 0 3px rgba(199,154,53,.4);
  --radial: radial-gradient(1200px 600px at 15% -10%, rgba(199,154,53,.18), transparent 60%),
            radial-gradient(900px 500px at 110% 10%, rgba(196,153,120,.25), transparent 55%),
            linear-gradient(180deg, #fdf7f0 0%, #f4ebdf 35%, #f2f0f8 100%);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(240,228,210,.85), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease;
}

a:hover {
  color: var(--gold-soft);
  opacity: .98;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */

header.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--radial);
  overflow: hidden;
}

.glow {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  filter: blur(80px);
  background: conic-gradient(
    from 140deg at 50% 50%,
    rgba(199,154,53,.35),
    transparent 35%,
    rgba(255,255,255,.7),
    transparent 70%,
    rgba(199,154,53,.3)
  );
  opacity: .7;
  animation: spin 32s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 0 60px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(199,154,53,.4);
  box-shadow: 0 10px 26px rgba(175,138,72,.35);
  color: var(--muted);
}

.hero-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--gold));
  box-shadow: 0 0 10px rgba(199,154,53,.9);
}

.brand {
  font-family: "Poppins", Inter, sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  letter-spacing: .03em;
  color: #1d1a18;
  line-height: 1.1;
  text-shadow: 0 10px 25px rgba(189,147,92,.35);
}

.tag {
  margin-top: 6px;
  color: var(--muted);
  font-size: 17px;
  max-width: 700px;
}

.hero-badges {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
}

.hero-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(199,154,53,.3);
  color: #444;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-badge strong {
  color: #c28e29;
  font-weight: 600;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid rgba(199,154,53,.7);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    border-color .18s ease,
    color .18s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255,255,255,.92);
  color: #8a6b25;
}

.btn-primary {
  background: linear-gradient(135deg, #ffeac1, var(--gold));
  color: #221910;
  box-shadow: 0 10px 26px rgba(189,147,92,.55);
  border-color: rgba(187,142,70,.9);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(189,147,92,.65);
  background: linear-gradient(135deg, #fff0cf, var(--gold-soft));
}

.btn-ghost {
  background: rgba(255,255,255,.92);
  color: #8a6b25;
  border-color: rgba(199,154,53,.4);
}

.btn-ghost:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 23px rgba(189,147,92,.35);
}

.btn-small {
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: .08em;
}

.note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  opacity: .95;
}

.logo-hero {
  width: 170px;
  max-width: 32vw;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(176,134,82,.45));
  opacity: .98;
}

@media (min-width: 960px) {
  .logo-hero { width: 210px; }
}

/* Sticky top bar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,252,248,.9);
  backdrop-filter: saturate(130%) blur(12px);
  border-bottom: 1px solid rgba(199,154,53,.18);
}

.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 20px;
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2b2520;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--gold-soft));
  box-shadow:
    0 0 0 2px rgba(255,245,225,1) inset,
    0 0 8px rgba(199,154,53,.7);
}

.top-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  position: relative;
}

.nav-link.active {
  background: #fffaf0;
  border-color: rgba(199,154,53,.7);
  box-shadow: 0 10px 26px rgba(184,152,113,.45);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

/* Sections */

section {
  padding: 80px 0;
}

section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(244,238,230,.9));
}

h2.section-title {
  font-family: "Poppins", Inter, sans-serif;
  color: #2c241c;
  font-size: 24px;
  margin: 0 0 16px;
  letter-spacing: .12em;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

h2.section-title .icon {
  margin-right: 0;
  color: var(--gold);
}

p.lead {
  color: var(--muted);
  max-width: 800px;
  font-size: 15px;
  line-height: 1.7;
}

.small-note {
  margin-top: 18px;
  font-size: 14px;
}

/* O nás – info karty */

.onas-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.info-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,1), transparent 65%),
    linear-gradient(180deg, #ffffff, #f5ede3);
  border: 1px solid rgba(199,154,53,.22);
  box-shadow: 0 10px 26px rgba(184,152,113,.35);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #2b2520;
}

.info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.info-card li span {
  display: inline-block;
  margin-right: 6px;
}

.info-card li strong {
  color: #b27f1e;
}

/* Grid helpers */

.grid {
  display: grid;
  gap: 16px;
}

.g3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.g4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .g4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .g3, .g4 { grid-template-columns: 1fr; }
}

/* Cards */

.card {
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,1), transparent 65%),
    linear-gradient(145deg, #ffffff, #f4ece2);
  border: 1px solid rgba(199,154,53,.16);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(184,152,113,.35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(199,154,53,.35);
  box-shadow: 0 16px 40px rgba(184,152,113,.5);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: saturate(1.03);
}

.card-body {
  padding: 14px 16px;
}

.card-title {
  margin: 10px 0 6px;
  font-size: 16px;
}

.card-text {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--muted);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.card-price {
  color: #b27f1e;
  font-size: 15px;
}

.card-center {
  text-align: center;
  padding: 16px;
}

.qr-img {
  height: 240px;
  width: auto;
  margin: 8px auto 12px;
  filter: drop-shadow(0 10px 24px rgba(184,152,113,.7));
}

/* Chip */

.chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(199,154,53,.09);
  color: #8b6b29;
  font-size: 12px;
  border: 1px solid rgba(199,154,53,.22);
}

/* Pricing */

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 960px) {
  .price-grid { grid-template-columns: 1fr; }
}

.cat {
  position: relative;
  padding: 20px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,1), transparent 65%),
    linear-gradient(180deg, #ffffff, #f5ede3);
  border: 1px solid rgba(199,154,53,.25);
  box-shadow: 0 10px 26px rgba(184,152,113,.35);
}

.cat h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.2;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #2b2520;
}

.plist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(199,154,53,.25);
  padding-bottom: 8px;
}

.row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.label {
  color: #3c3530;
  font-size: 14px;
}

.val {
  white-space: nowrap;
  font-weight: 800;
  color: #b27f1e;
  font-size: 14px;
}

/* Map */

.map-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(199,154,53,.22);
  box-shadow: 0 14px 32px rgba(184,152,113,.5);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: contrast(105%) brightness(1.02);
}

.map-pin {
  position: absolute;
  left: 18px;
  top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,252,248,.95);
  backdrop-filter: blur(4px);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(199,154,53,.45);
  font-size: 14px;
  color: #3a3129;
}

.map-pin svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* Reviews */

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 960px) {
  .reviews { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .reviews { grid-template-columns: 1fr; }
}

.review {
  padding: 18px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,1), transparent 65%),
    linear-gradient(160deg,#ffffff,#f4ece2);
  border: 1px solid rgba(199,154,53,.22);
  box-shadow: 0 10px 26px rgba(184,152,113,.35);
  font-size: 14px;
}

.review p {
  margin: 8px 0 6px;
}

.review small {
  color: var(--muted);
  font-size: 12px;
}

.stars {
  letter-spacing: 1px;
  color: #c28e29;
  font-size: 15px;
}

/* Before–After (Pred–Po) */

#pred-po .ba {
  max-width: 980px;
  margin: 0 auto;
}

.ba-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(199,154,53,.3);
  box-shadow: 0 14px 32px rgba(184,152,113,.55);
  margin-bottom: 18px;
  touch-action: none;
  --center: 50%;
  background: #000;
}

.ba-img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.ba-top {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  background: transparent;
  outline: none;
  cursor: ew-resize;
  opacity: 0;
}

.ba-item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--center);
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,.9);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0,0,0,.6);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--center);
  transform: translate(-50%, -50%);
  padding: .35rem .7rem;
  background: rgba(255,252,248,.94);
  color: #2b2520;
  border: 1px solid rgba(199,154,53,.4);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
  white-space: nowrap;
  font-size: 13px;
}

/* FAB */

.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.fab a {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#ffeac1,var(--gold));
  color: #221910;
  border: 1px solid rgba(187,142,70,.9);
  box-shadow: 0 10px 26px rgba(184,152,113,.6);
  transition: transform .15s, box-shadow .15s, background .15s;
}

.fab a:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 40px rgba(184,152,113,.7);
}

/* Animácie pri vstupe */

.fade-up {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp .8s ease forwards;
  animation-play-state: paused;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .32s; }
.delay-4 { animation-delay: .42s; }

/* Ikony */

.icon {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  vertical-align: -0.18em;
}

/* Rezervácia */

#rezervacia {
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
}

#rezervacia .rez-lead {
  max-width: 620px;
  margin: 0 auto 1.2rem;
  font-size: 15px;
  color: var(--muted);
  text-align: center;
}

#rezervacia .rez-notice {
  background: linear-gradient(135deg, #ffe8e0, #fff6f2);
  border: 1px solid #ffb199;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  color: #7b2600;
  text-align: center;
  margin: 0 auto 18px;
  max-width: 640px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

#rezervacia .rez-notice strong {
  font-weight: 800;
}

#rezervacia .rez-card {
  padding: 24px 22px;
  max-width: 780px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(199,154,53,.16);
  background:
    radial-gradient(circle at top left,#ffffff 0,#fbf6ec 40%,#f7f2ff 100%);
  box-shadow: 0 18px 45px rgba(15,18,30,.12);
}

#rezervacia .rez-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

#rezervacia label {
  display: block;
  margin: 4px 0 6px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .01em;
}

#rezervacia input,
#rezervacia select,
#rezervacia textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(199,154,53,.25);
  background: #ffffff;
  color: #1b1f26;
  font-size: 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .12s ease;
}

#rezervacia input:focus,
#rezervacia select:focus,
#rezervacia textarea:focus {
  border-color: rgba(199,154,53,.9);
  box-shadow: 0 0 0 1px rgba(199,154,53,.35);
  transform: translateY(-1px);
}

#rezervacia textarea {
  resize: vertical;
  min-height: 110px;
}

#rezervacia .rez-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 8px;
}

#rezervacia #stav {
  margin-left: 4px;
  color: var(--muted);
  font-size: 12px;
}

.hp-field {
  display: none;
}

/* Footer */

footer {
  background: #f7f2ea;
  border-top: 1px solid rgba(199,154,53,.18);
  margin-top: 20px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 0 28px;
  font-size: 13px;
  color: var(--muted);
}

.footer-col h3,
.footer-col h4 {
  margin: 0 0 6px;
  color: #2c241c;
}

.footer-col p {
  margin: 2px 0;
}

.footer-copy {
  margin-top: 8px;
  opacity: .9;
}

/* Responsívne úpravy */

@media (max-width: 800px) {
  .topbar .inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-links {
    justify-content: flex-start;
  }

  header.hero {
    min-height: 82vh;
  }

  #rezervacia .rez-card {
    padding: 18px 16px;
  }

  #rezervacia .rez-grid {
    grid-template-columns: 1fr;
  }

  .onas-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .btn {
    padding: 11px 16px;
    font-size: 13px;
  }

  .cta-row {
    gap: 10px;
  }

  .ba-img {
    height: 320px;
  }
}

/* Preferuje znížený pohyb */

@media (prefers-reduced-motion: reduce) {
  .glow {
    animation: none;
  }

  .fade-up {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
