/* ============================================================
   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;
}

.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; } }


/* ============ SUPLEMENTY — Dark + 45deg stripe ============ */
.suplementy {
  background-color: var(--bg-dark);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.04) 8px,
    rgba(255,255,255,0.04) 9px
  );
}
.suplementy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}
.suplementy-card {
  background: var(--bg-dark-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.suplementy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76,175,80,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 28px rgba(76,175,80,0.07);
}
.suplementy-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(76,175,80,0.14);
  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: #fff; letter-spacing: -0.01em;
}
.suplementy-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  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; } }


/* ============ 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);
}

.vibracna-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.vibracna-card {
  background: var(--bg-dark-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.vibracna-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76,175,80,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 28px rgba(76,175,80,0.07);
}
.vibracna-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(76,175,80,0.14);
  display: grid; place-items: center;
  color: var(--accent);
  margin: 0 auto 20px;
}
.vibracna-icon svg { width: 26px; height: 26px; }
.vibracna-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px; font-weight: 700;
  color: #fff; letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.vibracna-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.vibracna-cta {
  text-align: center;
}
@media (max-width: 1024px) { .vibracna-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vibracna-grid { grid-template-columns: 1fr; } }


/* ============ 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);
}
.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; }
}


/* ============ KONTAKT — Dark + diagonal pattern ============ */
.contact {
  background-color: var(--bg-dark);
}

/* Centrovaná karta s kontaktnými údajmi */
.contact-card-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.contact-card {
  max-width: 600px;
  width: 100%;
  padding: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 18px;
}
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(76,175,80,0.14);
  display: grid; place-items: center;
  color: var(--accent); flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-item .ci-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 5px;
}
.contact-item .ci-value {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 600;
  color: #fff; line-height: 1.5;
}
.contact-item .ci-value a { transition: color 0.2s ease; }
.contact-item .ci-value a:hover { color: var(--accent); }

/* Mapa */
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 640px) {
  .contact-card { padding: 32px 24px; gap: 22px; }
  .contact-map { height: 280px; }
}
@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; }
}


/* ============ 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;
  }
}
