/* ============================================================
   FRESH FIT — SECTIONS STYLESHEET
   Design: UI/UX Pro Max transformation
   Colors: #4CAF50 green · #0f0f0f dark · #f8f8f8 light
   ============================================================ */

/* ============ TEXTURE UTILITY CLASSES ============ */
.dark-section {
  background-color: var(--bg-dark);
  /* Subtle diagonal stripe — pure CSS, no base64 */
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 4px,
    rgba(255,255,255,0.015) 4px,
    rgba(255,255,255,0.015) 5px
  );
}
.dark-section .section-eyebrow { color: var(--accent); }
.dark-section .section-title { color: #fff; }
.dark-section .section-subtitle { color: rgba(255,255,255,0.58); }

.light-section {
  background-color: #ffffff;
  /* Subtle dot grid pattern */
  background-image: radial-gradient(
    rgba(0,0,0,0.04) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  position: relative;
}
.light-section > * { position: relative; z-index: 1; }

.green-section {
  /* Subtle diagonal stripe pre zelené sekcie */
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.04) 8px,
    rgba(255,255,255,0.04) 9px
  );
}

/* ============ PREČO MY — Dark + pattern ============ */
.why {
  background-color: var(--bg-dark);
}
.why .section-eyebrow { color: var(--accent); }
.why .section-title { color: #fff; }
.why .section-subtitle { color: rgba(255,255,255,0.58); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  position: relative;
  padding: 38px 30px;
  background: var(--bg-dark-card);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76,175,80,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  border-left-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(76,175,80,0.2), 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(76,175,80,0.08);
}
.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(76,175,80,0.14);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.why-icon svg { width: 24px; height: 24px; }
.why-stat {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.why-stat span { font-size: 0.6em; font-weight: 600; }
.why-label {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  line-height: 1.45;
  position: relative; z-index: 1;
}

@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }


/* ============ SLUŽBY — Light + Dot pattern ============ */
.services {
  background-color: #ffffff;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service {
  position: relative;
  padding: 36px 32px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 230px;
}
.service::before {
  content: attr(data-num);
  position: absolute;
  top: -20px; right: 6px;
  font-size: 110px; font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: rgba(76,175,80,0.06);
  line-height: 1; pointer-events: none; user-select: none;
}
.service:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--accent);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-light);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.service-icon svg { width: 24px; height: 24px; }
.service h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 700;
  line-height: 1.25; letter-spacing: -0.01em;
  margin-bottom: 10px; color: var(--text);
  position: relative; z-index: 1;
}
.service p {
  font-size: 15px; color: var(--muted);
  line-height: 1.65; flex: 1;
  position: relative; z-index: 1;
}

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }


/* ============ CENNÍK — White + dot pattern ============ */
.pricing {
  background-color: #ffffff;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.pricing-table {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto 180px;
  align-items: center;
  padding: 24px 36px;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: rgba(76,175,80,0.04); }
.price-row.featured {
  background: linear-gradient(90deg, rgba(76,175,80,0.07) 0%, rgba(76,175,80,0.02) 100%);
  position: relative; z-index: 1;
}
.price-row.featured:hover { background: rgba(76,175,80,0.1); }
.price-name {
  font-family: 'Poppins', sans-serif;
  font-size: 17px; font-weight: 600;
  color: var(--text); letter-spacing: -0.01em;
}
.price-name small {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--muted); font-weight: 400; margin-top: 3px;
}
.price-badge {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--accent);
  padding: 6px 14px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.price-badge.outline {
  color: var(--accent); background: transparent;
  border: 1.5px solid var(--accent);
}
.price-badge.bestseller {
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
  color: #fff;
  box-shadow: 0 4px 16px rgba(76,175,80,0.4);
  font-size: 10px;
  letter-spacing: 0.14em;
}
.price-value {
  font-family: 'Poppins', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--text); text-align: right;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.price-value span { color: var(--accent); }
.pricing-note {
  margin-top: 28px; text-align: center;
  font-size: 15px; color: var(--muted);
}
.pricing-note strong { color: var(--accent); font-weight: 700; }
.pricing-note small {
  display: block; margin-top: 6px;
  font-size: 12px; color: var(--muted); opacity: 0.8;
}

@media (max-width: 768px) {
  .price-row { grid-template-columns: 1fr auto; padding: 20px 22px; gap: 12px; }
  .price-row .price-value { grid-row: 2; grid-column: 1 / -1; text-align: left; font-size: 24px; }
}
@media (max-width: 480px) { .price-name { font-size: 15px; } }


/* ============ DOPLNKY VÝŽIVY — Light + premium cards ============ */
/* pozadie rieši trieda .light-section */
.suplementy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
  perspective: 1000px;
}
.suplementy-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1), box-shadow 0.45s ease, border-color 0.3s ease;
  will-change: transform;
}
.suplementy-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
  background: radial-gradient(360px circle at var(--mx,50%) var(--my,0%), rgba(76,175,80,0.13), transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}
.suplementy-card:hover::before { opacity: 1; }
.suplementy-card::after {
  content: ''; position: absolute; top: 0; left: -70%; width: 55%; height: 100%; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(76,175,80,0.06), transparent); transform: skewX(-18deg);
}
.suplementy-card:hover::after { animation: supl-sheen 0.9s ease; }
@keyframes supl-sheen { to { left: 140%; } }
.suplementy-card > * { position: relative; z-index: 1; }
.suplementy-card:hover { box-shadow: 0 22px 50px rgba(76,175,80,0.16); border-color: rgba(76,175,80,0.25); }
.suplementy-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(76,175,80,0.10); display: grid; place-items: center; color: var(--accent); }
.suplementy-icon svg { width: 24px; height: 24px; }
.suplementy-card h3 { font-family: 'Poppins', sans-serif; font-size: 19px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.suplementy-card p { font-size: 15px; color: #5a5a5a; line-height: 1.7; }
.suplementy-cta { text-align: center; margin-top: 8px; }
@media (max-width: 900px) { .suplementy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .suplementy-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .suplementy-card { transition: none; } }


/* ============ MULTISPORT — Green gradient + texture ============ */
.multisport {
  background-color: #1e6b1e;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 8px,
      rgba(255,255,255,0.04) 8px,
      rgba(255,255,255,0.04) 9px
    ),
    linear-gradient(135deg, #1a5c1a 0%, #2d8a2d 50%, #1e6b1e 100%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
.multisport::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.multisport-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  justify-content: center;
}
.multisport-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 28px;
  padding: 32px 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
}
.multisport-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.multisport-text { flex: 1; min-width: 280px; max-width: 500px; }
.multisport-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
}

@media (max-width: 760px) {
  .multisport-inner { flex-direction: column; gap: 40px; text-align: center; }
  .multisport-text { text-align: center; }
  .multisport-desc { font-size: 16px; }
}


/* ============ NAŠE PRIESTORY — Dark + diagonal pattern ============ */
.priestory {
  background-color: var(--bg-dark);
  padding: 110px 0;
}

.priestory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.priestory-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg-dark-card);
}
.priestory-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.priestory-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 50%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.priestory-overlay::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid var(--accent);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.priestory-item:hover img { transform: scale(1.05); }
.priestory-item:hover .priestory-overlay { opacity: 1; }
.priestory-item:hover .priestory-overlay::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 1000; padding: 60px 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92%, 1100px);
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; display: grid; place-items: center;
  color: #fff; transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }
.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; display: grid; place-items: center;
  color: #fff; transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover { background: rgba(76,175,80,0.4); transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { background: rgba(76,175,80,0.4); transform: translateY(-50%) scale(1.08); }

@media (max-width: 900px) { .priestory-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .priestory-grid { grid-template-columns: 1fr; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}


/* ============ NÁŠ TÍM — Light + dot pattern ============ */
.trainers {
  background-color: #ffffff;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trainer-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}
.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.trainer-img {
  height: 200px;
  background: linear-gradient(135deg, #111 0%, #1e2e1e 100%);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.trainer-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, transparent 50%);
}
.trainer-avatar {
  width: 92px; height: 92px; border-radius: 50%;
  background: rgba(76,175,80,0.14);
  border: 2px solid rgba(76,175,80,0.35);
  display: grid; place-items: center; color: var(--accent);
  position: relative; z-index: 1;
}
.trainer-avatar svg { width: 44px; height: 44px; }

/* Iniciálový avatar — moderná vizitka */
.trainer-initials {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, #162a1a 0%, #0d1a10 100%);
  border: 2.5px solid rgba(76,175,80,0.45);
  box-shadow: 0 0 0 7px rgba(76,175,80,0.08), inset 0 2px 14px rgba(76,175,80,0.18);
  display: grid; place-items: center;
  position: relative; z-index: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 32px; font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(76,175,80,0.55);
  user-select: none;
}

.trainer-body { padding: 22px 24px 26px; }
.trainer-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 5px;
}
.trainer-role {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0;
}
.trainer-body p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-top: 10px; }
.trainer-todo {
  color: #666;
  font-style: italic;
  font-size: 0.85em;
}

/* Kontakty trénerov */
.trainer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.trainer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.trainer-contact-link:hover { color: var(--accent); }
.trainer-contact-link svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent); }

@media (max-width: 1024px) { .trainers-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Mobile swipe — karty vedľa seba, swipe prstom ─── */
@media (max-width: 768px) {
  .trainers-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
    /* skryť scrollbar ale zachovať funkčnosť */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* presah mimo container pre edge karty */
    margin-left: calc(-1 * var(--side, 24px));
    margin-right: calc(-1 * var(--side, 24px));
    padding-left: var(--side, 24px);
    padding-right: var(--side, 24px);
  }
  .trainers-grid::-webkit-scrollbar { display: none; }
  .trainer-card {
    width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}


/* ============ VIBRAČNÁ PLOŠINA — Dark ============ */
.vibracna {
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.vibracna .container { position: relative; z-index: 1; }
.vibracna-logo-wm {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  width: 520px; height: 520px; object-fit: contain;
  opacity: 0.07; filter: grayscale(1) brightness(10);
  pointer-events: none; z-index: 0;
}
@media (max-width: 860px) { .vibracna-logo-wm { width: 300px; right: 10px; } }

.vibracna-showcase { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: stretch; margin-bottom: 48px; }
.vib-feat { position: relative; background: linear-gradient(135deg, #1a3a1a 0%, #0f2010 100%); border: 1px solid rgba(76,175,80,0.3); border-radius: 22px; padding: 46px 46px 40px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.4); display: flex; flex-direction: column; justify-content: center; }
.vib-bignum { position: absolute; top: -6px; right: 30px; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 200px; line-height: 1; color: rgba(255,255,255,0.05); pointer-events: none; user-select: none; }
.vib-featwrap { position: relative; z-index: 1; transition: opacity 0.35s ease, transform 0.35s ease; }
.vib-ic { width: 76px; height: 76px; border-radius: 20px; background: rgba(255,255,255,0.10); display: grid; place-items: center; color: var(--accent); margin-bottom: 26px; box-shadow: 0 0 38px rgba(76,175,80,0.18); }
.vib-ic svg { width: 35px; height: 35px; }
.vib-title { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: #fff; margin-bottom: 14px; }
.vib-desc { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.72); max-width: 400px; }
.vib-prog { position: relative; z-index: 1; margin-top: 34px; height: 3px; background: rgba(255,255,255,0.14); border-radius: 2px; overflow: hidden; }
.vib-prog span { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 2px; }
.vib-menu { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.vib-item { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: 14px; cursor: pointer; border: 1px solid transparent; background: none; width: 100%; text-align: left; font-family: inherit; transition: background 0.3s ease, border-color 0.3s ease; }
.vib-mi-ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.05); display: grid; place-items: center; color: rgba(255,255,255,0.4); flex-shrink: 0; transition: background 0.3s ease, color 0.3s ease; }
.vib-mi-ic svg { width: 20px; height: 20px; }
.vib-name { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.55); transition: color 0.3s ease; }
.vib-item:hover { background: rgba(255,255,255,0.03); }
.vib-item.active { background: rgba(76,175,80,0.08); border-color: rgba(76,175,80,0.25); }
.vib-item.active .vib-mi-ic { background: rgba(76,175,80,0.16); color: var(--accent); }
.vib-item.active .vib-name { color: #fff; }
.vibracna-cta { text-align: center; }
@media (max-width: 860px) { .vibracna-showcase { grid-template-columns: 1fr; gap: 24px; } .vib-feat { padding: 36px 30px; } }
@media (prefers-reduced-motion: reduce) { .vib-featwrap { transition: none; } }


/* ============ KOUČING — White ============ */
.koucing-teaser {
  background: #fff;
  padding: 110px 0;
}
.koucing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.koucing-text .section-subtitle { margin-bottom: 36px; }
.koucing-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.koucing-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.koucing-phone:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.koucing-more {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.koucing-more:hover { gap: 10px; }

/* Koučing card */
.koucing-card {
  background: var(--bg-dark);
  border-radius: 24px;
  padding: 44px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.koucing-card::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.koucing-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: rgba(76,175,80,0.15);
  border: 3px solid rgba(76,175,80,0.4);
  display: grid; place-items: center; color: var(--accent);
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.koucing-avatar svg { width: 52px; height: 52px; }
.koucing-name {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 700; color: #fff;
  margin-bottom: 6px; position: relative; z-index: 1;
}
.koucing-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
  position: relative; z-index: 1;
}
.koucing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative; z-index: 1;
}
.koucing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}
.koucing-features li svg { color: var(--accent); flex-shrink: 0; }

@media (max-width: 900px) {
  .koucing-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 560px) {
  .koucing-card { padding: 36px 28px; }
  .koucing-contacts { flex-direction: column; align-items: flex-start; gap: 14px; }
}


/* ============ FAQ — Dark + diagonal pattern ============ */
.faq {
  background-color: var(--bg-dark);
  margin-top: 0;
}
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-dark-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: rgba(76,175,80,0.25); }
.faq-item.open {
  border-color: rgba(76,175,80,0.4);
  box-shadow: 0 0 0 1px rgba(76,175,80,0.12);
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: 22px 28px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s ease;
}
.faq-item.open .faq-question { color: var(--accent); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(76,175,80,0.15); color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
  font-size: 22px; font-weight: 300; font-family: 'Inter', sans-serif;
  line-height: 1;
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.42s ease; padding: 0 28px;
}
.faq-answer p {
  font-size: 15px; color: rgba(255,255,255,0.62);
  line-height: 1.8; padding-bottom: 22px; margin: 0;
}
.faq-item.open .faq-answer { max-height: 400px; }

@media (max-width: 768px) {
  .faq-question { font-size: 15px; padding: 18px 22px; }
  .faq-answer { padding: 0 22px; }
}


/* ============ SOCIÁLNE SIETE — Green gradient + texture ============ */
.social-cta {
  background-color: #1e6b1e;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 8px,
      rgba(255,255,255,0.04) 8px,
      rgba(255,255,255,0.04) 9px
    ),
    linear-gradient(135deg, #1a5c1a 0%, #2d8a2d 60%, #1e6b1e 100%);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.social-cta::before {
  content: '';
  position: absolute; bottom: -100px; left: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.social-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.social-cta-text { flex: 1 1 320px; }
.social-cta-btns {
  display: flex; flex-direction: column; gap: 14px; flex-shrink: 0;
}
.social-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}
.social-btn:hover { transform: translateY(-3px); }
.social-btn-fb {
  background: #1877F2; color: #fff;
  box-shadow: 0 8px 28px rgba(24,119,242,0.35);
}
.social-btn-fb:hover { box-shadow: 0 14px 40px rgba(24,119,242,0.5); }
.social-btn-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(220,39,67,0.35);
}
.social-btn-ig:hover { box-shadow: 0 14px 40px rgba(220,39,67,0.5); }

@media (max-width: 768px) {
  .social-cta-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
  .social-cta-btns { width: 100%; }
  .social-btn { justify-content: center; }
}


/* ============ LOGO WATERMARK STAMPS — jemné, rozhádzané po sekciách ============ */
.logo-stamp {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.03;
  filter: grayscale(1) brightness(10); /* biele logo na tmavom/zelenom pozadí */
}
.logo-stamp--dark { filter: grayscale(1) brightness(0); opacity: 0.04; } /* tmavé logo na svetlom */
/* obsah nad watermarkom */
.pricing > .container,
.multisport > .container,
.faq > .container { position: relative; z-index: 1; }
.pricing, .multisport, .faq { overflow: hidden; }
/* polohy a veľkosti — striedané */
.stamp-pricing { left: -40px; bottom: -70px; width: clamp(300px, 40vw, 520px); height: auto; }
.stamp-multisport { left: 24px; top: 50%; transform: translateY(-50%); width: clamp(240px, 30vw, 380px); height: auto; }
.stamp-faq { right: 28px; top: 36px; width: clamp(230px, 26vw, 320px); height: auto; }
@media (max-width: 760px) {
  .stamp-pricing { width: 260px; left: -50px; bottom: -50px; }
  .stamp-multisport { width: 200px; opacity: 0.04; }
  .stamp-faq { width: 190px; right: -10px; }
}

/* ============ KONTAKT — kompaktný layout: hlavička → info 2×2 + logo → mapa ============ */
.contact {
  background-color: var(--bg-dark);
  /* výšku určuje obsah (žiadny min-height); kompaktný padding */
  padding: clamp(48px, 7vh, 80px) 0;
}
/* Hlavička: primeraný nadpis + krátky popis */
.contact-head { max-width: 720px; margin-bottom: clamp(26px, 4vh, 42px); }
.contact-title { font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.12; margin-bottom: 14px; }
.contact-lead { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0; }

/* Info ako zvislý zoznam kompaktných kariet (ikona vľavo) */
.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 15px 18px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.contact-info-card:hover { border-color: rgba(76,175,80,0.3); background: rgba(255,255,255,0.07); }
.contact-icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(76,175,80,0.14);
  display: grid; place-items: center;
  color: var(--accent); flex-shrink: 0;
}
.contact-icon svg { width: 19px; height: 19px; }
.ci-text { min-width: 0; }
.ci-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 4px;
}
.ci-value {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 600;
  color: #fff; line-height: 1.35;
}
.ci-value a { transition: color 0.2s ease; }
.ci-value a:hover { color: var(--accent); }
.contact-info-card .open-badge { margin-top: 8px; font-size: 11px; padding: 4px 10px; }

/* Mapa — pravý stĺpec, rovnaká výška ako info (stretch) */
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: clamp(320px, 44vh, 460px);
  height: 100%;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

@media (max-width: 760px) {
  .contact-map { min-height: 300px; }
}
@media (max-width: 560px) {
  .contact-form-wrap { padding: 26px 22px; }
  .contact-info { padding: 26px 22px; }
}


/* ============ FOOTER ============ */
.footer {
  background: #0f0f0f;
  padding: 64px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { display: flex; flex-direction: column; gap: 0; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-nav ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color 0.2s ease;
  display: block; padding: 4px 0;
}
.footer-nav ul li a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; align-items: center; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover {
  color: #fff; background: var(--accent);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.35); }
.footer-credit { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-credit a { color: var(--accent); font-weight: 600; transition: color 0.2s ease; }
.footer-credit a:hover { color: var(--accent-dark); }
.footer-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  font-family: inherit;
  transition: color 0.2s ease;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.12);
  text-underline-offset: 3px;
}
.footer-cookie-btn:hover { color: rgba(255,255,255,0.55); }

@media (max-width: 768px) {
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-nav ul { gap: 4px 16px; }
}


/* ═══════════════════════════════
   OZNAMY — split reveal
═══════════════════════════════ */
.oznam-section {
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  overflow: hidden;
}
.oznam-split {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 440px;
}

/* Obrázková strana */
.oznam-split__img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#0a1a0a 0%,#162616 50%,#0f0f0f 100%);
}
.oznam-logo-default {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  max-width: 240px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
.oznam-split__img-inner {
  position: absolute;
  inset: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.77,0,0.175,1);
}
.oznam-split__img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transform: scale(1.06);
  transition: transform 1.4s ease;
}
/* Textová strana */
.oznam-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  background: var(--bg-dark-mid, #1a1a1a);
  border-left: 1px solid rgba(255,255,255,0.05);
}
/* Animácie textu */
.oznam-tag,
.oznam-date,
.oznam-title,
.oznam-text {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* Triggrovanie cez .is-visible */
.oznam-split.is-visible .oznam-split__img-inner {
  clip-path: inset(0 0% 0 0);
}
.oznam-split.is-visible .oznam-split__img-inner img {
  transform: scale(1);
}
.oznam-split.is-visible .oznam-tag {
  opacity:1; transform:none; transition-delay:0.25s;
}
.oznam-split.is-visible .oznam-date {
  opacity:1; transform:none; transition-delay:0.4s;
}
.oznam-split.is-visible .oznam-title {
  opacity:1; transform:none; transition-delay:0.52s;
}
.oznam-split.is-visible .oznam-text {
  opacity:1; transform:none; transition-delay:0.65s;
}
/* Styles pre tagy */
.oznam-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.oznam-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:0.5;transform:scale(1.4);}
}
.oznam-date {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.oznam-title {
  font-size: clamp(24px,2.8vw,40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.oznam-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 400px;
}
/* Mobil */
@media (max-width: 768px) {
  .oznam-split { grid-template-columns: 1fr; }
  .oznam-split__img { height: 260px; }
  .oznam-split__img-inner {
    clip-path: inset(0 0 100% 0);
  }
  .oznam-split.is-visible .oznam-split__img-inner {
    clip-path: inset(0 0 0% 0);
  }
  .oznam-split__body {
    padding: 40px 28px;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
}
@media (prefers-reduced-motion: reduce) {
  .oznam-split__img-inner { clip-path: none !important; }
  .oznam-tag,.oznam-date,.oznam-title,.oznam-text {
    opacity:1 !important; transform:none !important;
  }
}

/* ============ NEWS CARDS (novinky.html) ============ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column; cursor: pointer;
}
.news-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.news-card-img { height: 200px; position: relative; overflow: hidden; background: #111; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.news-card:hover .news-card-img img { transform: scale(1.07); }
.news-card-date {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.news-card-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.news-card-body h3 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.35; }
.news-card-body p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.news-card-link { font-size: 13px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s ease; }
.news-card:hover .news-card-link { gap: 10px; }
a.news-card { color: inherit; text-decoration: none; }

@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }


/* ============ GALLERY (galeria.html) ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 210px; gap: 18px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover { transform: scale(1.015); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .caption {
  position: absolute; bottom: 18px; left: 22px; z-index: 2;
  color: #fff; font-weight: 600; font-size: 15px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .caption { opacity: 1; transform: none; }
.gallery-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 3; }
.gallery-item:nth-child(3) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 1; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 4; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}


/* ============ COMPETITION CARDS (sutaze.html) ============ */
.competitions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.competition-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.competition-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.competition-header { background: #111; padding: 22px 26px 18px; display: flex; align-items: center; justify-content: space-between; }
.competition-icon { width: 46px; height: 46px; background: rgba(76,175,80,0.15); border-radius: 12px; display: grid; place-items: center; color: var(--accent); }
.competition-icon svg { width: 22px; height: 22px; }
.competition-status { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 13px; border-radius: 999px; }
.competition-status.active { background: var(--accent); color: #fff; }
.competition-status.past { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.15); }
.competition-body { padding: 22px 26px 6px; }
.competition-date { font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.competition-body h3 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.competition-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.competition-footer { padding: 16px 26px 24px; }
@media (max-width: 900px) { .competitions-grid { grid-template-columns: 1fr; } }


/* ============ HOURS SECTION (zachovaná) ============ */
.hours { background: #0a1a0a; }
.hours .section-title { color: #fff; }
.hours .section-eyebrow { color: var(--accent); }
.hours .section-subtitle { color: rgba(255,255,255,0.6); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hours-card {
  padding: 48px 44px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hours-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.hours-card .day { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.hours-card .time { font-family: 'Poppins', sans-serif; font-size: clamp(36px,5vw,58px); font-weight: 700; line-height: 1; letter-spacing: -0.025em; color: #fff; margin-bottom: 12px; }
.hours-card .time span { color: var(--accent); margin: 0 8px; font-weight: 500; }
.hours-card .label { color: rgba(255,255,255,0.55); font-size: 15px; }
@media (max-width: 768px) { .hours-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .hours-card { padding: 36px 28px; } }


/* ============ SUBPAGE BACK BUTTON ============ */
.subpage-back { margin-top: 52px; margin-bottom: 36px; }


/* ============ MOBILE PERFORMANCE — sekcie ============ */
/* Na mobile vypneme drahé repeating-gradient a radial-gradient patterny —
   sú krásne na desktope ale spôsobujú prekreslenie pri každom scrolle na mobile. */
@media (max-width: 860px) {
  /* Textúrové patterny — vypnúť, solid farba zostáva */
  .dark-section  { background-image: none; }
  .light-section { background-image: none; }
  .green-section { background-image: none; }
  .services      { background-image: none; }
  .pricing       { background-image: none; }
  .suplementy    { background-image: none; }

  /* Multisport a Social CTA — zjednodušiť na solid gradient bez textúry */
  .multisport {
    background-image: linear-gradient(135deg, #1a5c1a 0%, #2d8a2d 50%, #1e6b1e 100%);
  }
  .social-cta {
    background-image: linear-gradient(135deg, #1a5c1a 0%, #2d8a2d 60%, #1e6b1e 100%);
  }

  /* Multisport badge — vypnúť backdrop-filter */
  .multisport-badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,0.16);
  }

  /* Hover efekty na kartách — vypnúť transform na touch zariadeniach
     (hover stav sa "zasekáva" po tap na iOS, transform zbytočne drží layer) */
  .why-card:hover,
  .service:hover,
  .suplementy-card:hover,
  .vibracna-card:hover,
  .trainer-card:hover {
    transform: none;
  }

  /* Priestory — hover zoom na obrázkoch vypnúť (zbytočný composite layer) */
  .priestory-item:hover img {
    transform: none;
  }
}

/* ═══════════════════════════════
   NOVINKY — featured section
═══════════════════════════════ */
.news-feature {
  padding: 120px 0;
  background: var(--bg-dark, #0f0f0f);
  overflow: hidden;
}
.news-feature__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* Vizuálna strana */
.news-feature__visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}
.news-feature__img-wrap {
  width: 100%;
  height: 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0s;
}
.news-feature__img-wrap.revealed {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.77,0,0.175,1);
}
.news-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.news-feature__img-wrap.revealed .news-feature__img {
  transform: scale(1);
}
.news-feature__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2a1a 0%, #0f1a0f 100%);
  position: absolute;
  inset: 0;
}
.news-feature__img-placeholder span {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  letter-spacing: -2px;
  text-transform: uppercase;
}
.news-feature__img[src]:not([src=""]) ~ .news-feature__img-placeholder {
  display: none;
}
/* Textová strana */
.news-feature__content {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0s, transform 0s;
}
.news-feature__content.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
.news-feature__tag-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.news-feature__line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent, #4CAF50);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0s;
}
.news-feature__content.visible .news-feature__line {
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.77,0,0.175,1) 0.5s;
}
.news-feature__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent, #4CAF50);
  opacity: 0;
  transition: opacity 0s;
}
.news-feature__content.visible .news-feature__label {
  opacity: 1;
  transition: opacity 0.4s ease 0.6s;
}
.news-feature__date {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.news-feature__title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}
.news-feature__excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  max-width: 480px;
}
.news-feature__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: var(--accent, #4CAF50);
  color: #000;
  transition: background 0.2s, transform 0.2s;
}
.news-feature__cta:hover {
  background: #5dc960;
  transform: translateX(4px);
}
/* Magnetic CTA effect */
.news-feature__cta svg {
  transition: transform 0.2s;
}
.news-feature__cta:hover svg {
  transform: translateX(4px);
}
/* MOBILE */
@media (max-width: 768px) {
  .news-feature { padding: 80px 0; }
  .news-feature__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .news-feature__visual { aspect-ratio: 16/9; }
  .news-feature__title { font-size: 28px; }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .news-feature__img-wrap { clip-path: none !important; }
  .news-feature__img { transform: none !important; }
  .news-feature__content { opacity: 1 !important; transform: none !important; }
  .news-feature__line { transform: scaleX(1) !important; }
  .news-feature__label { opacity: 1 !important; }
}

/* ============ MARQUEE STRIP ============ */
.marquee-strip {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 20px 0;
  user-select: none;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  /* animation-name + animation-duration nastavuje JS (konštantná rýchlosť 60 px/s) */
}
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.mi {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0 32px;
  white-space: nowrap;
}
.mi em {
  color: var(--accent);
  font-style: normal;
  padding-left: 32px;
}
@media (max-width: 768px) {
  .marquee-strip { padding: 16px 0; }
  .mi { font-size: 12px; padding: 0 20px; }
  .mi em { padding-left: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
}

/* ============ DARČEKOVÁ POUKÁŽKA ============ */
.poukazky-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-bottom:54px; }
.poukazka-card { perspective:1100px; }
.poukazka-card-inner {
  position:relative; background:linear-gradient(160deg,#212121,#141414);
  border:1px solid rgba(255,255,255,0.07); border-radius:20px; padding:30px 30px 26px;
  transform-style:preserve-3d;
  transition:transform 0.5s cubic-bezier(.22,.61,.36,1), box-shadow 0.5s ease, border-color 0.5s ease;
  box-shadow:0 18px 44px rgba(0,0,0,0.45); overflow:hidden; will-change:transform;
}
.poukazka-card-inner::before {
  content:''; position:absolute; inset:0; border-radius:20px; pointer-events:none;
  background:radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(76,175,80,0.20), transparent 60%);
  opacity:0; transition:opacity 0.4s ease;
}
.poukazka-card:hover .poukazka-card-inner::before { opacity:1; }
.poukazka-card-inner::after {
  content:''; position:absolute; top:0; left:-70%; width:55%; height:100%; pointer-events:none;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,0.08), transparent); transform:skewX(-18deg);
}
.poukazka-card:hover .poukazka-card-inner::after { animation:pc-sheen 0.9s ease; }
@keyframes pc-sheen { to { left:140%; } }
.poukazka-card:hover .poukazka-card-inner { box-shadow:0 30px 60px rgba(0,0,0,0.5); }
.pc-top { display:flex; align-items:center; gap:11px; margin-bottom:24px; position:relative; z-index:1; }
.pc-logo { height:30px; width:auto; display:block; }
.pc-kicker { font-size:11px; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.5); }
.pc-value { font-family:'Poppins',sans-serif; font-weight:800; font-size:62px; line-height:1; letter-spacing:-0.03em; color:#fff; position:relative; z-index:1; }
.pc-value span { color:var(--accent); font-size:0.46em; margin-left:5px; vertical-align:6px; }
.pc-perf { border:none; border-top:1.5px dashed rgba(255,255,255,0.13); margin:20px 0 14px; }
.pc-benefit { font-size:16px; font-weight:600; color:#fff; position:relative; z-index:1; }
.pc-for { display:inline-block; margin-top:11px; font-size:11px; font-weight:600; letter-spacing:0.04em; color:rgba(255,255,255,0.55); border:1px solid rgba(255,255,255,0.14); padding:5px 11px; border-radius:999px; position:relative; z-index:1; }
.pc-foot { margin-top:16px; font-size:11px; letter-spacing:0.08em; color:rgba(255,255,255,0.30); text-transform:uppercase; position:relative; z-index:1; }
.poukazka-card.is-best .poukazka-card-inner { border-color:rgba(76,175,80,0.42); box-shadow:0 24px 64px rgba(76,175,80,0.20), 0 18px 44px rgba(0,0,0,0.5); }
.poukazka-card.is-best { position: relative; }
.poukazka-card.is-best::after {
  content: ''; position: absolute; inset: -14px; border-radius: 30px; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(76,175,80,0.55), transparent 70%);
  filter: blur(26px); opacity: 0.35;
  animation: best-glow 3.4s ease-in-out infinite;
}
@keyframes best-glow { 0%, 100% { opacity: 0.30; } 50% { opacity: 0.68; } }
@media (prefers-reduced-motion: reduce) { .poukazka-card.is-best::after { animation: none; } }
.poukazka-card.is-best .pc-for { color:#9be29e; border-color:rgba(76,175,80,0.4); }
.poukazka-badge { position:absolute; top:15px; right:15px; background:var(--accent); color:#0f0f0f; font-size:10px; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; padding:6px 12px; border-radius:999px; z-index:2; }
.poukazky-cta { display:flex; flex-direction:column; align-items:center; gap:14px; text-align:center; }
.poukazky-note { font-size:14px; color:rgba(255,255,255,0.45); }
@media (max-width:860px) { .poukazky-grid { grid-template-columns:1fr; max-width:430px; margin-left:auto; margin-right:auto; } }
@media (prefers-reduced-motion:reduce) { .poukazka-card-inner { transition:none !important; } }

/* ============ TRÉNERI / NÁŠ TÍM ============ */
.treneri-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); gap:28px; }
.trener-card { perspective:1100px; }
.trener-card-inner {
  position:relative; height:100%; display:flex; flex-direction:column; align-items:center; text-align:center;
  background:linear-gradient(160deg,#212121,#141414);
  border:1px solid rgba(255,255,255,0.07); border-radius:20px; padding:28px 26px;
  transform-style:preserve-3d;
  transition:transform 0.5s cubic-bezier(.22,.61,.36,1), box-shadow 0.5s ease, border-color 0.5s ease;
  box-shadow:0 18px 44px rgba(0,0,0,0.45); overflow:hidden; will-change:transform;
}
.trener-card-inner::before {
  content:''; position:absolute; inset:0; border-radius:20px; pointer-events:none;
  background:radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(76,175,80,0.20), transparent 60%);
  opacity:0; transition:opacity 0.4s ease;
}
.trener-card:hover .trener-card-inner::before { opacity:1; }
.trener-card-inner::after {
  content:''; position:absolute; top:0; left:-70%; width:55%; height:100%; pointer-events:none;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,0.08), transparent); transform:skewX(-18deg);
}
.trener-card:hover .trener-card-inner::after { animation:pc-sheen 0.9s ease; }
.trener-card:hover .trener-card-inner { box-shadow:0 30px 60px rgba(0,0,0,0.5); border-color:rgba(76,175,80,0.25); }
.trener-foto {
  width:100%; max-width:200px; aspect-ratio:4/5; object-fit:cover; object-position:center top;
  border-radius:16px; display:block; margin-bottom:18px; position:relative; z-index:1;
  background:rgba(255,255,255,0.04);
}
.trener-foto--empty { background:linear-gradient(160deg,#2a2a2a,#1a1a1a); }
.trener-meno { font-family:'Poppins',sans-serif; font-size:19px; font-weight:700; color:#fff; letter-spacing:-0.01em; position:relative; z-index:1; }
.trener-rola {
  display:inline-block; margin-top:9px; font-size:11px; font-weight:600; letter-spacing:0.04em;
  color:#9be29e; border:1px solid rgba(76,175,80,0.4); padding:5px 11px; border-radius:999px;
  position:relative; z-index:1;
}
.trener-popis { margin-top:14px; font-size:14px; line-height:1.65; color:rgba(255,255,255,0.55); position:relative; z-index:1; }
.trener-contact { display:flex; flex-wrap:wrap; justify-content:center; gap:8px 16px; margin-top:16px; position:relative; z-index:1; }
.trener-contact-link {
  display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:600;
  color:var(--accent); text-decoration:none; transition:color 0.25s ease, opacity 0.25s ease;
}
.trener-contact-link:hover { color:#9be29e; }
.trener-contact-ic { width:15px; height:15px; flex-shrink:0; }
@media (prefers-reduced-motion:reduce) { .trener-contact-link { transition:none; } }
@media (max-width:560px) { .treneri-grid { grid-template-columns:1fr; max-width:360px; margin-left:auto; margin-right:auto; } }
@media (prefers-reduced-motion:reduce) { .trener-card-inner { transition:none !important; } }

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: transparent; z-index: 1100; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0%; background: var(--accent); box-shadow: 0 0 10px rgba(76,175,80,0.5); transition: width 0.1s linear; }
