/* ============================================================
   MYA.SK — Nový dizajn 2026
   Téma: Svetlá letná · Nunito + DM Sans · Modrá & Tyrkys
   ============================================================ */

/* ── Google Fonts sú načítané v <head> každého HTML súboru ── */

/* ── 1. CSS PREMENNÉ ── */
:root {
  --c-primary:      #0c8ab8;
  --c-primary-deep: #0a6d91;
  --c-accent:       #22c4e8;
  --c-accent-hover: #19b0d2;
  --c-warm:         #f97316;
  --c-warm-dark:    #ea6c0a;

  --c-bg:        #ffffff;
  --c-bg2:       #f0f9ff;
  --c-bg3:       #e0f2fe;
  --c-bg-dark:   #0c1a24;

  --c-text:      #0c1a24;
  --c-text2:     #3d5a6e;
  --c-text3:     #6b8fa0;
  --c-text-inv:  rgba(255,255,255,0.9);
  --c-text-inv2: rgba(255,255,255,0.65);

  --c-border:    rgba(12,138,184,0.14);
  --c-border2:   rgba(12,26,36,0.08);

  --ff-display:  'Nunito', sans-serif;
  --ff-body:     'DM Sans', sans-serif;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-full: 100px;

  --shadow-sm:   0 2px 12px rgba(12,138,184,0.10);
  --shadow-md:   0 8px 32px rgba(12,138,184,0.14);
  --shadow-lg:   0 20px 60px rgba(12,26,36,0.15);

  --nav-h:       72px;
  --max-w:       1160px;
  --trans:       0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--ff-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover { color: var(--c-primary-deep); }
ul { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }
input, select, textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  outline: none;
}

/* ── 3. TYPOGRAFIA ── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
h1 { font-size: clamp(38px, 6vw, 72px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p  { font-size: 15px; color: var(--c-text2); line-height: 1.75; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--c-accent);
  flex-shrink: 0;
}
.section-tag.tag-left::after { display: none; }
.section-tag.tag-left::before { display: none; }
.section-tag.tag-left {
  padding-left: 0;
  letter-spacing: 0.14em;
}
.section-tag.tag-left::before {
  display: block;
  width: 22px;
}

/* ── 4. LAYOUT HELPERY ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* Pills strip — atrakcie */
.atr-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.atr-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--c-bg);
  border-radius: var(--radius-full);
  border: 1px solid var(--c-border);
  font-size: 13px;
  white-space: nowrap;
}
.section-lg { padding: 100px 0; }
.text-center { text-align: center; }
.text-center .section-tag { justify-content: center; }

/* ── 5. GOMBÍKY ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(34,196,232,0.38);
}
.btn-primary:hover {
  background: var(--c-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(34,196,232,0.45);
}
.btn-secondary {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-primary);
  color: #fff;
}
.btn-lg {
  padding: 16px 38px;
  font-size: 15px;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ── 6. NAVIGÁCIA ── */
/* Nav je VŽDY biely — jednoduchý, spoľahlivý, bez JS závislostí */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--c-border), 0 4px 20px rgba(12,26,36,0.06);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.03em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--c-primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text2);
  text-decoration: none;
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover { color: var(--c-text); background: var(--c-bg2); }
.nav-links a.nav-active { color: var(--c-primary); font-weight: 600; }
.nav-cta {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: var(--c-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(34,196,232,0.35);
  margin-left: 8px;
  white-space: nowrap;
  transition: background var(--trans), transform var(--trans);
}
.nav-cta:hover {
  background: var(--c-accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Hamburger — CSS checkbox hack, BEZ JS ── */
#nav-check { display: none; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
/* Checked stav — X */
#nav-check:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-check:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
#nav-check:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--c-border2);
  box-shadow: 0 8px 32px rgba(12,26,36,0.12);
  z-index: 998;
  padding: 8px 16px 20px;
}
#nav-check:checked ~ .nav-mobile { display: block; }
.nav-mobile a {
  display: block;
  padding: 13px 12px;
  color: var(--c-text2);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--c-border2);
}
.nav-mobile a.nav-active { color: var(--c-primary); font-weight: 700; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:active { color: var(--c-primary); }

/* ── 7. HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-h) 24px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    #0a2235 0%,
    #0c4870 28%,
    #0e7aa8 55%,
    #1fb8dc 80%,
    #7ddff2 100%
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 35%,
    rgba(34,196,232,0.18) 0%,
    transparent 65%
  );
}
/* Ripple vlny */
.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  animation: ripple-expand 7s ease-out infinite;
  pointer-events: none;
}
.ripple-1 { width: 350px; height: 350px; top: 38%; left: 28%; animation-delay: 0s; }
.ripple-2 { width: 580px; height: 580px; top: 26%; left: 18%; animation-delay: 2.3s; }
.ripple-3 { width: 220px; height: 220px; top: 50%; left: 58%; animation-delay: 4.6s; }
.ripple-4 { width: 460px; height: 460px; top: 42%; left: 48%; animation-delay: 1.5s; opacity: 0.6; }
@keyframes ripple-expand {
  0%   { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Hero vlny na spodku */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
}
.hero-waves svg {
  display: block;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding-bottom: 200px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 22px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--c-accent);
}
.hero h1 {
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Chips */
.hero-chips {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  transition: var(--trans);
}
.chip:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.chip-icon { font-size: 14px; }

/* ── 8. INFO STRIP ── */
.info-strip {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.info-strip .container {
  display: flex;
  justify-content: center;
}
.info-items {
  display: flex;
  width: 100%;
  max-width: 860px;
}
.info-item {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--c-border);
  transition: background var(--trans);
}
.info-item:last-child { border-right: none; }
.info-item:hover { background: var(--c-bg3); }
.info-num {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.info-label {
  font-size: 11.5px;
  color: var(--c-text3);
  margin-top: 5px;
  line-height: 1.3;
}

/* ── 9. FEATURES SEKCIA ── */
.features-section { background: var(--c-bg); }
.features-intro {
  max-width: 540px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.feat-card {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  transition: var(--trans);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34,196,232,0.3);
}
.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--c-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  transition: var(--trans);
}
.feat-card:hover .feat-icon {
  background: var(--c-accent);
  transform: scale(1.08);
}
.feat-title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 7px;
}
.feat-desc {
  font-size: 13.5px;
  color: var(--c-text2);
  line-height: 1.6;
}

/* Vybavenie zoznam */
.amenities-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.amenity {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border2);
  font-size: 13.5px;
  color: var(--c-text2);
}
.amenity:nth-last-child(-n+2) { border-bottom: none; }
.amenity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── 10. CENNÍK ── */
.price-section { background: var(--c-bg2); }
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.price-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--trans);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  background: linear-gradient(145deg, #0c2d45 0%, #0f5880 55%, #1480a8 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 16px 56px rgba(12,45,69,0.32);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-warm);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(249,115,22,0.4);
}
.price-season-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 6px;
}
.price-card.featured .price-season-label { color: rgba(255,255,255,0.55); }
.price-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}
.price-card.featured .price-title { color: #fff; }
.price-dates {
  font-size: 12px;
  color: var(--c-text3);
  margin-bottom: 20px;
  line-height: 1.5;
}
.price-card.featured .price-dates { color: rgba(255,255,255,0.5); }
.price-rows { border-top: 1px solid var(--c-border); }
.price-card.featured .price-rows { border-color: rgba(255,255,255,0.14); }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
}
.price-card.featured .price-row { border-color: rgba(255,255,255,0.1); }
.price-row:last-child { border-bottom: none; }
.price-persons {
  font-size: 13px;
  color: var(--c-text2);
}
.price-card.featured .price-persons { color: rgba(255,255,255,0.65); }
.price-eur {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}
.price-card.featured .price-eur { color: #fff; }
.price-note {
  font-size: 11px;
  color: var(--c-text3);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}
.price-card.featured .price-note { color: rgba(255,255,255,0.42); border-color: rgba(255,255,255,0.1); }

/* ── 11. REZERVAČNÝ FORMULÁR ── */
.form-section { background: var(--c-bg); }
.form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.form-intro { margin-bottom: 40px; text-align: center; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.span-2 { grid-column: 1 / -1; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  background: var(--c-bg2);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--c-text);
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--c-text3); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--c-accent);
  background: var(--c-bg);
  box-shadow: 0 0 0 3px rgba(34,196,232,0.14);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b8fa0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 110px; }

.form-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--c-bg2);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  cursor: pointer;
}
.form-gdpr input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--c-border);
  border-radius: 4px;
  appearance: none;
  background: var(--c-bg);
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: var(--trans);
}
.form-gdpr input[type="checkbox"]:checked {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.form-gdpr input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.gdpr-text {
  font-size: 12.5px;
  color: var(--c-text2);
  line-height: 1.5;
}
.gdpr-text a { color: var(--c-primary); font-weight: 500; }

.form-submit-wrap { margin-top: 8px; }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  box-shadow: 0 6px 24px rgba(34,196,232,0.35);
}
.btn-submit:hover {
  background: var(--c-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(34,196,232,0.45);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Form správy */
.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}
.form-msg.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.form-msg.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ── 12. KONTAKT ── */
.contact-section { background: var(--c-bg2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border2);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--c-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-text-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text3);
  line-height: 1;
  margin-bottom: 3px;
}
.contact-text-val {
  font-size: 14px;
  color: var(--c-text);
  font-weight: 500;
}
.contact-text-val a { color: var(--c-primary); }
.contact-text-val a:hover { color: var(--c-primary-deep); }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text2);
  transition: var(--trans);
}
.social-link:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

/* Mapa a počasie */
.map-weather-wrap { display: flex; flex-direction: column; gap: 16px; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  aspect-ratio: 4/3;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.weather-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

/* ── 13. POČASIE & WIDGET ── */
.weatherwidget-io {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ── 14. FOOTER ── */
.site-footer {
  background: var(--c-bg-dark);
  color: rgba(255,255,255,0.45);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.footer-logo:hover { color: #fff; }
.footer-logo span { color: var(--c-accent); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.footer-links a {
  color: rgba(255,255,255,0.38);
  font-size: 12.5px;
  padding: 4px 10px;
  border-radius: 6px;
  transition: var(--trans);
}
.footer-links a:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── 15. GALÉRIA (izby.html) ── */
.gallery-section { background: var(--c-bg); }
.room-type { margin-bottom: 64px; }
.room-type:last-child { margin-bottom: 0; }
.room-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border2);
}
.room-meta { font-size: 13px; color: var(--c-text3); margin-top: 4px; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.photo-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--c-bg3);
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-item:hover img { transform: scale(1.06); }
.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,26,36,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.photo-item:hover .photo-overlay { background: rgba(12,26,36,0.28); }
.photo-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--trans);
}
.photo-item:hover .photo-zoom-icon { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,20,28,0.95);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  z-index: 10000;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); color: #fff; }
.lightbox-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.5);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* ── 16. STRÁNKY — hero hlavičky ── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 72px;
  overflow: hidden;
  background: linear-gradient(160deg, #0a2235 0%, #0c4870 40%, #1080a8 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.68); max-width: 500px; }
.page-hero-ripple {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ── 17. KARTY pre atrakcie/kupalisko ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.attraction-card {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
}
.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.attr-img {
  height: 200px;
  overflow: hidden;
}
.attr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.attraction-card:hover .attr-img img { transform: scale(1.06); }
.attr-body { padding: 20px 22px; }
.attr-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 6px;
}
.attr-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.attr-desc {
  font-size: 13px;
  color: var(--c-text2);
  line-height: 1.55;
}

/* ── 18. VIDEO stránka ── */
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  aspect-ratio: 16/9;
  background: var(--c-bg-dark);
  margin-top: 32px;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── 19. PODMIENKY stránky ── */
.prose-section { background: var(--c-bg); }
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 22px;
  margin: 40px 0 14px;
  color: var(--c-text);
  padding-top: 24px;
  border-top: 1px solid var(--c-border2);
}
.prose h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.prose h3 { font-size: 17px; margin: 24px 0 10px; }
.prose p, .prose li { font-size: 14.5px; color: var(--c-text2); line-height: 1.8; margin-bottom: 14px; }
.prose ul { padding-left: 20px; }
.prose ul li { list-style: disc; padding-left: 6px; }
.prose a { color: var(--c-primary); font-weight: 500; }
.prose a:hover { color: var(--c-primary-deep); }

/* ── 20. ANIMÁCIE ── */
/* Obsah je VŽDY viditeľný — fade-up je len vizuálny bonus keď JS funguje */
.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── Responsive two-col grid ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-bg3);
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}
.sport-item {
  padding: 10px 14px;
  background: var(--c-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  font-size: 13px;
  color: var(--c-text2);
}

/* ── 21. UTILITY ── */
.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ── 22. RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .price-cards { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  label.nav-toggle { display: flex; }

  .hero { min-height: 100svh; }
  .hero-sub { font-size: 15px; }
  .hero-chips { gap: 7px; }
  .chip { font-size: 11.5px; padding: 7px 12px; }

  .info-items { flex-wrap: wrap; }
  .info-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--c-border);
  }
  .info-item:nth-child(odd) { border-right: 1px solid var(--c-border); }
  .info-item:nth-last-child(-n+2):nth-child(odd) { border-bottom: none; }

  .features-grid { grid-template-columns: 1fr; }
  .amenities-list { grid-template-columns: 1fr; }
  .amenity:last-child { border-bottom: none; }

  .price-cards { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: 1; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

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

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

  /* Responsive gridy pre podstránky */
  .two-col { grid-template-columns: 1fr !important; gap: 20px !important; }
  .two-col-img { aspect-ratio: 16/9; }
  .sport-grid { grid-template-columns: 1fr 1fr; gap: 6px !important; }
  
  /* Hero - viac priestoru pre chips */
  .hero-content { padding-bottom: 240px; }
  .hero-chips { gap: 8px; padding: 0 16px; }
  .chip { font-size: 12px; padding: 7px 14px; }
  
  /* Atrakcie detail karty */
  .attr-full-card { grid-template-columns: 1fr !important; gap: 20px !important; padding: 40px 0 !important; }
  .attr-full-card.reverse { direction: ltr !important; }
  .attr-full-img { aspect-ratio: 16/9; }

  /* Page hero — menší padding na mobile */
  .page-hero { padding: calc(var(--nav-h) + 32px) 0 36px; }
  .section-sm { padding: 24px 0; }

  /* Pills — 2 stĺpce na mobile */
  .atr-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .atr-pill { font-size: 12px; padding: 8px 12px; justify-content: center; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .photo-grid { grid-template-columns: 1fr; }
  .price-cards { max-width: 100%; }
  .room-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
