/* ============ PREČO MY ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  position: relative;
  padding: 36px 32px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 22px;
}
.why-icon svg { width: 26px; height: 26px; }
.why-stat {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 8px;
}
.why-label {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
}

/* ============ SLUŽBY ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  position: relative;
  padding: 36px 32px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transition-delay: calc(0.05s * var(--i, 0));
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--accent);
}
.service:hover .service-arrow {
  background: var(--accent);
  color: #fff;
  transform: translateX(4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 22px;
}
.service-icon svg { width: 24px; height: 24px; }
.service h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}
.service p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.service-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: all 0.25s ease;
  align-self: flex-start;
}
.service-arrow svg { width: 18px; height: 18px; }

/* ============ CENNÍK ============ */
.pricing-table {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto 200px;
  align-items: center;
  padding: 26px 36px;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: #FBFCFD; }
.price-row:hover { background: var(--accent-soft); }
.price-row.featured {
  background: linear-gradient(90deg, var(--accent-soft) 0%, rgba(239,247,220,0.3) 100%);
  box-shadow: 0 8px 20px rgba(127, 186, 0, 0.25);
  position: relative;
  z-index: 1;
}
.price-row.featured:hover { background: var(--accent-soft); }
.price-name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  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: 4px;
}
.price-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.price-badge.outline {
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
}
.price-value {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  text-align: right;
  letter-spacing: -0.02em;
}
.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: 600; }

/* ============ HODINY ============ */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hours-card {
  padding: 48px 44px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hours-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.hours-card .day {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hours-card .time {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 12px;
}
.hours-card .time span { color: var(--accent); margin: 0 8px; font-weight: 500; }
.hours-card .label {
  color: var(--muted);
  font-size: 15px;
}

/* ============ GALÉRIA ============ */
.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; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 1; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92%;
  max-height: 92vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: transform 0.2s ease;
}
.lightbox-close:hover { transform: scale(1.08); }

/* ============ KONTAKT ============ */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}
.contact-info {
  padding: 44px 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item .ci-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-item .ci-value {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}
.contact-item .ci-value a { transition: color 0.2s ease; }
.contact-item .ci-value a:hover { color: var(--accent); }

.contact-form {
  margin-top: 8px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #FAFBFC;
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { align-self: flex-start; margin-top: 4px; }
.form-status {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  min-height: 20px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 520px;
  background: var(--surface);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--surface-2);
  padding: 56px 0 36px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  color: var(--muted);
  font-size: 14px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.footer-social a:hover {
  color: #fff;
  background: var(--accent);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 22px; }
  section { padding: 80px 0; }
  .nav-menu {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .nav .btn-primary { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .section-head { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .price-row {
    grid-template-columns: 1fr auto;
    padding: 22px 24px;
    gap: 12px;
  }
  .price-row .price-badge { grid-row: 1; grid-column: 2; }
  .price-row .price-value { grid-row: 2; grid-column: 1 / -1; text-align: left; }
  .hours-grid { grid-template-columns: 1fr; }
  .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; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { padding: 32px 26px; }
  .contact-map { min-height: 360px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .price-value { font-size: 24px; }
  .price-name { font-size: 16px; }
  .hours-card { padding: 36px 28px; }
}

/* ============ DARK SERVICE CARDS ============ */
.service {
  background: linear-gradient(145deg, #0a2010 0%, #163316 100%);
  border: 1px solid rgba(127,186,0,0.12);
  border-left: 3px solid transparent;
  overflow: hidden;
}
.service::before {
  content: attr(data-num);
  position: absolute;
  top: -14px; right: 8px;
  font-size: 96px; font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: rgba(127,186,0,0.07);
  line-height: 1; pointer-events: none; user-select: none;
}
.service:hover {
  border-left-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 0 1px rgba(127,186,0,0.2);
  transform: translateY(-6px);
}
.service .service-icon {
  background: rgba(127,186,0,0.12);
  color: var(--accent);
}
.service h3 { color: #ffffff; }
.service p { color: rgba(255,255,255,0.62); }
.service-arrow { display: none; }

/* ============ SEKCIA PREČO MY — zelené pozadie ============ */
.why {
  background: linear-gradient(135deg, #eaf3de 0%, #f3f9ea 50%, #ffffff 100%);
}

/* ============ SEKCIA CENNÍK — jemné pozadie ============ */
.pricing {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ed 100%);
}

/* ============ SEKCIA HODINY — tmavé ============ */
.hours {
  background: #0a2010;
}
.hours .section-title { color: #ffffff; }
.hours .section-eyebrow { color: var(--accent); }
.hours .section-subtitle { color: rgba(255,255,255,0.6); }
.hours-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
}
.hours-card:hover {
  background: rgba(255,255,255,0.09);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.hours-card .day { color: var(--accent); }
.hours-card .time { color: #ffffff; }
.hours-card .label { color: rgba(255,255,255,0.55); }

/* ============ NEWS CARDS ============ */
.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: linear-gradient(135deg, #0a2010, #1a4a1a);
}
.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;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.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; }

/* ============ COMPETITION CARDS ============ */
.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: linear-gradient(135deg, #0a2010 0%, #163316 100%);
  padding: 22px 26px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.competition-icon {
  width: 46px; height: 46px;
  background: rgba(127,186,0,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; }

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

/* ============ RESPONSIVE — NOVÉ KARTY ============ */
@media (max-width: 900px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .competitions-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
}

a.news-card { color: inherit; text-decoration: none; }

.pricing-note small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.8;
}
