/* ================================================
   SILESIA SKILLS CENTER — pilot website
   Dark theme, brand colors (black + yellow)
   ================================================ */

:root {
  --bg: #0a0d14;              /* dark navy base — sladěno s fotkami */
  --bg-2: #0e131c;
  --bg-3: #131826;
  --bg-card: #161c2a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f5f7fb;            /* ice white */
  --text-muted: #9aa3b3;
  --text-dim: #6a7182;

  --accent: #ffd000;          /* žlutá z loga (hlavní brand) */
  --accent-2: #ffb800;
  --accent-soft: rgba(255, 208, 0, 0.12);
  --accent-hover: #ffe04a;

  --red: #e63946;             /* red accent z fotek */
  --red-soft: rgba(230, 57, 70, 0.12);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 0 1px rgba(255, 208, 0, 0.25), 0 25px 50px -15px rgba(255, 208, 0, 0.15);

  --container: 1240px;
  --header-h: 78px;

  --font-display: "Bebas Neue", "Oswald", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HEADER ============ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled { background: rgba(10, 10, 12, 0.95); }

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.brand img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(255, 208, 0, 0.15));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 17px;
  letter-spacing: 0.12em;
  color: var(--text);
}

.brand-text span {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--accent);
  margin-top: 4px;
}

/* main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.main-nav a.active { color: var(--accent); }

/* CTA button in header */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #0a0a0c;
  box-shadow: 0 10px 24px -8px rgba(255, 208, 0, 0.45);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(255, 208, 0, 0.55); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 16px 28px; font-size: 15px; }

/* mobile menu trigger */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.menu-toggle span::before { transform: translate(-50%, -8px); }
.menu-toggle span::after  { transform: translate(-50%, 8px); }

body.menu-open .menu-toggle span { background: transparent; }
body.menu-open .menu-toggle span::before { transform: translate(-50%, 0) rotate(45deg); }
body.menu-open .menu-toggle span::after  { transform: translate(-50%, 0) rotate(-45deg); }

/* ============ HERO ============ */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 100px;
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(255, 208, 0, 0.16), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(255, 208, 0, 0.07), transparent 60%),
    var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border: 1px solid rgba(255, 208, 0, 0.35);
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 208, 0, 0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 22px 0 18px;
  color: var(--text);
}

.hero h1 .yellow { color: var(--accent); }

.hero .lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 0 14px;
}

.hero .pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 8px 0 32px;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 14px;
  color: var(--text);
}
.hero .pillars span { color: var(--text-dim); }
.hero .pillars b { color: var(--accent); font-weight: 700; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* visual side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shield {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 30px 80px rgba(255, 208, 0, 0.25));
  animation: float 7s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  inset: 10% 10% 10% 10%;
  background: radial-gradient(circle at center, rgba(255, 208, 0, 0.35), transparent 70%);
  filter: blur(50px);
  z-index: -1;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* hero stats strip */
.hero-stats {
  margin-top: 70px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.hero-stats .stat .num {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.hero-stats .stat .label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============ SECTION DEFAULTS ============ */

.section {
  padding: 110px 0;
  position: relative;
}
.section.alt { background: var(--bg-2); }
.section.darker { background: #050507; }

.section-head {
  max-width: 760px;
  margin: 0 0 52px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--accent);
  margin-bottom: 14px;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
}

.section .lede {
  font-size: 17.5px;
  color: var(--text-muted);
  margin: 0;
  max-width: 700px;
}

/* ============ FEATURE GRID ============ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-3));
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { opacity: 1; }

.feature-card .icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}
.feature-card p { color: var(--text-muted); margin: 0; font-size: 15px; }

/* ============ SPLIT ROW (text + visual) ============ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }

.split h2 { margin-bottom: 20px; }

.split p { color: var(--text-muted); font-size: 17px; }

.bullet-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.bullet-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-size: 15.5px;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 2px;
  background: var(--accent);
}

/* visual block (placeholder hero card) */
.visual-card {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 208, 0, 0.35), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255, 208, 0, 0.18), transparent 60%),
    linear-gradient(135deg, #1a1a20, #0c0c10);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.visual-card .visual-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: 0.06em;
  color: var(--accent);
  text-align: center;
  text-shadow: 0 6px 30px rgba(255, 208, 0, 0.3);
  padding: 20px;
}
.visual-card .visual-sub {
  position: absolute;
  bottom: 22px; left: 22px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}

/* ============ ZONE CARDS (color-tinted feature blocks) ============ */

.zone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.zone-card {
  padding: 38px 34px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.zone-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.zone-card .num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 8px;
}
.zone-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.zone-card p { color: var(--text-muted); margin: 0; }

/* ============ PROGRAMS ============ */

.programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.program:hover { transform: translateY(-3px); border-color: var(--accent); background: var(--bg-card); }
.program .badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}
.program h3 { margin: 0; font-family: var(--font-display); font-size: 26px; letter-spacing: 0.04em; }
.program p { margin: 0; color: var(--text-muted); font-size: 15px; }

.program.featured {
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.1), transparent 80%), var(--bg-card);
  border-color: rgba(255, 208, 0, 0.35);
}

/* ============ PRICE GRID ============ */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
}
.price-card .name { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.06em; margin-bottom: 14px; }
.price-card .price { font-family: var(--font-display); font-size: 44px; line-height: 1; color: var(--accent); }
.price-card .price small { font-size: 14px; color: var(--text-muted); font-family: var(--font-body); margin-left: 4px; }
.price-card .desc { color: var(--text-muted); font-size: 14px; margin-top: 12px; }

/* ============ CALL TO ACTION SECTION ============ */

.cta-strip {
  position: relative;
  padding: 70px 50px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(255, 208, 0, 0.18), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(255, 208, 0, 0.1), transparent 60%),
    linear-gradient(180deg, #161618, #0c0c10);
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.cta-strip h2 { font-size: clamp(28px, 3.6vw, 46px); margin: 0 0 12px; }
.cta-strip p { color: var(--text-muted); margin: 0 0 24px; max-width: 600px; }

/* ============ FOOTER ============ */

.site-footer {
  background: #050507;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img { height: 60px; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 320px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--text);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--text-muted); font-size: 14.5px; transition: color 0.18s ease; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ============ INTERIOR PAGE HEAD ============ */

.page-hero {
  padding: calc(var(--header-h) + 70px) 0 60px;
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(255, 208, 0, 0.13), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  margin: 14px 0 16px;
}
.page-hero .lede { color: var(--text-muted); font-size: 18px; max-width: 700px; }

/* ============ RESERVATION & CONTACT ============ */

.reservio-frame {
  width: 100%;
  min-height: 720px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
}

/* Reservio CTA card — odkaz na oficiální rezervační systém */
.reservio-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-3) 100%);
  box-shadow: var(--shadow-lg);
}
.reservio-card::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.18), transparent 70%);
  pointer-events: none;
}
.reservio-card-inner {
  position: relative;
  padding: clamp(36px, 5vw, 60px);
  z-index: 1;
}
.reservio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 208, 0, 0.35);
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.reservio-badge svg { color: var(--accent); }
.reservio-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.reservio-card p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0 0 26px;
  max-width: 480px;
}
.reservio-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.reservio-note {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}
.reservio-note strong { color: var(--text-muted); font-weight: 500; }

.reservio-perks {
  list-style: none;
  margin: 0;
  padding: clamp(36px, 5vw, 60px);
  display: grid;
  gap: 18px;
  align-content: center;
  background: rgba(10, 13, 20, 0.5);
  border-left: 1px solid var(--border);
}
.reservio-perks li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.45;
}
.reservio-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}
.reservio-perks li strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

@media (max-width: 820px) {
  .reservio-card { grid-template-columns: 1fr; }
  .reservio-perks { border-left: 0; border-top: 1px solid var(--border); }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.contact-card {
  padding: 36px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-card h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.06em; margin: 0 0 18px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.contact-row:first-of-type { border-top: 0; }
.contact-row .label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); width: 90px; padding-top: 4px; }
.contact-row .val { color: var(--text); font-size: 16px; }
.contact-row .val a:hover { color: var(--accent); }

.map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  min-height: 380px;
  display: flex;
}
.map-card iframe {
  flex: 1 1 auto;
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  /* mapa je světlá — jemně přitlumíme jas aby ladila s tmavým webem */
  filter: saturate(0.9) brightness(0.94);
}
.map-card .map-link {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.map-card .map-link:hover { color: var(--accent); border-color: var(--accent); }

/* ============ UTIL ============ */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in { opacity: 1; transform: none; }

/* ============ PHOTO COMPONENTS ============ */

/* ===== HERO FULL-BLEED — fotka přes celou šířku, text na gradientu ===== */
.hero-fullbleed {
  position: relative;
  padding: 0;
  min-height: clamp(620px, 90vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-fullbleed::before { display: none; } /* zruší grid pattern z původního hero */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* primární čitelnost vlevo (text+CTA) */
    linear-gradient(90deg, rgba(10, 13, 20, 0.92) 0%, rgba(10, 13, 20, 0.7) 30%, rgba(10, 13, 20, 0.25) 55%, transparent 75%),
    /* spodní úvazek pro stats */
    linear-gradient(0deg, rgba(10, 13, 20, 0.85), transparent 35%);
}

.hero-fullbleed .container {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-content {
  max-width: 640px;
  padding: clamp(80px, 14vh, 140px) 0 40px;
}

.hero-fullbleed .hero-stats {
  margin-top: auto;
  margin-bottom: 32px;
  background: rgba(10, 13, 20, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
}

/* hero photo (right column of hero) — legacy, ponecháno pro případné jiné stranky */
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 80px -25px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 208, 0, 0.08);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 13, 20, 0.55), transparent 45%),
    linear-gradient(0deg, rgba(10, 13, 20, 0.45), transparent 50%);
  pointer-events: none;
}
.hero-photo .photo-badge {
  position: absolute;
  left: 18px; bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(10, 13, 20, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text);
  text-transform: uppercase;
  z-index: 2;
}
.hero-photo .photo-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.25);
}

/* photo-card — replaces visual-card with real photo */
.photo-card {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-3);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.photo-card:hover img { transform: scale(1.04); }
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 13, 20, 0.65));
  pointer-events: none;
}
.photo-card .photo-caption {
  position: absolute;
  left: 22px; bottom: 18px;
  z-index: 2;
}
.photo-card .photo-caption .tag {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--accent);
  margin-bottom: 4px;
}
.photo-card .photo-caption strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

/* image-band — wide horizontal image, used before/between sections */
.image-band {
  position: relative;
  margin-bottom: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21 / 9;
  background: var(--bg-3);
}
.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 13, 20, 0.78), rgba(10, 13, 20, 0.25) 45%, transparent 65%),
    linear-gradient(0deg, rgba(10, 13, 20, 0.55), transparent 50%);
  pointer-events: none;
}
.image-band .band-caption {
  position: absolute;
  left: clamp(24px, 4vw, 48px);
  bottom: clamp(24px, 4vw, 40px);
  right: 24px;
  max-width: 560px;
  z-index: 2;
}
.image-band .band-caption .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--accent);
  margin-bottom: 10px;
}
.image-band .band-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}
.image-band .band-caption p {
  margin: 0;
  color: rgba(245, 247, 251, 0.85);
  font-size: 15px;
  max-width: 520px;
}

/* zone-card with embedded image (for suchá příprava, střelecká zóna) */
.zone-card.with-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.zone-card.with-image .zone-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.zone-card.with-image .zone-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.zone-card.with-image:hover .zone-image img { transform: scale(1.04); }
.zone-card.with-image .zone-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(22, 28, 42, 0.9));
}
.zone-card.with-image .zone-body {
  padding: 28px 32px 36px;
}

/* CTA full-bleed — fotka přes celou šířku, text na levém gradientu */
.cta-fullbleed {
  position: relative;
  min-height: clamp(440px, 60vh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.cta-fullbleed .cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-fullbleed .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
.cta-fullbleed .cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 13, 20, 0.92) 0%, rgba(10, 13, 20, 0.65) 35%, rgba(10, 13, 20, 0.2) 60%, transparent 80%),
    radial-gradient(800px 400px at 0% 0%, rgba(255, 208, 0, 0.12), transparent 60%);
}
.cta-fullbleed .container {
  position: relative;
  z-index: 1;
}
.cta-fullbleed .cta-content {
  max-width: 580px;
  padding: clamp(70px, 12vh, 110px) 0;
}
.cta-fullbleed .cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 14px 0 16px;
}
.cta-fullbleed .cta-content p {
  color: rgba(245, 247, 251, 0.85);
  font-size: 17px;
  margin: 0 0 26px;
}

/* program card with image (for výkonnostní program) */
.program.with-image {
  padding: 0;
  overflow: hidden;
}
.program.with-image .program-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.program.with-image .program-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.program.with-image:hover .program-image img { transform: scale(1.04); }
.program.with-image .program-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* partners CTA — replaces feature-grid for partneři section */
.partner-cta {
  position: relative;
  padding: 60px 50px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-3));
  border: 1px solid var(--border-strong);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  overflow: hidden;
}
.partner-cta::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.15), transparent 70%);
  pointer-events: none;
}
.partner-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 12px 0 14px;
}
.partner-cta p { color: var(--text-muted); margin: 0 0 22px; font-size: 16px; }
.partner-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.partner-option {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--text);
}
.partner-option strong { display: block; color: var(--accent); font-family: var(--font-display); letter-spacing: 0.08em; font-size: 14px; margin-bottom: 4px; }

.partner-cta-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: rgba(10, 13, 20, 0.5);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}
.partner-cta-side .label {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
}
.partner-cta-side .big {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.partner-cta-side .big a:hover { color: var(--accent); }

/* ============ RESPONSIVE ============ */

@media (max-width: 1080px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .programs, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* full-bleed hero/CTA — výraznější levý overlay */
  .hero-fullbleed .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(10, 13, 20, 0.95) 0%, rgba(10, 13, 20, 0.78) 45%, rgba(10, 13, 20, 0.45) 70%, rgba(10, 13, 20, 0.2)),
      linear-gradient(0deg, rgba(10, 13, 20, 0.85), transparent 35%);
  }
  .cta-fullbleed .cta-bg::after {
    background:
      linear-gradient(90deg, rgba(10, 13, 20, 0.95) 0%, rgba(10, 13, 20, 0.78) 45%, rgba(10, 13, 20, 0.45) 70%, rgba(10, 13, 20, 0.2));
  }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  body.menu-open .main-nav { transform: translateX(0); }
  .main-nav a {
    padding: 16px 18px;
    font-size: 17px;
    border-radius: 12px;
  }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-cta { display: none; }
}

@media (max-width: 1080px) {
  .partner-cta { grid-template-columns: 1fr; gap: 30px; padding: 40px 32px; }
}

@media (max-width: 820px) {
  .partner-options { grid-template-columns: 1fr; }
  .cta-strip.with-photo .cta-content { padding: 50px 30px; }
  .cta-strip.with-photo > .cta-bg::after {
    background:
      linear-gradient(0deg, rgba(10, 13, 20, 0.95), rgba(10, 13, 20, 0.7)),
      radial-gradient(800px 400px at 100% 0%, rgba(255, 208, 0, 0.18), transparent 60%);
  }
  /* na mobilu: caption pod obrázkem, ne přes něj — čitelnost > efekt */
  .image-band {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
  }
  .image-band img { aspect-ratio: 16 / 10; height: auto; }
  .image-band::after { display: none; }
  .image-band .band-caption {
    position: static;
    padding: 22px 24px 26px;
    max-width: none;
  }
  .image-band .band-caption h3 { color: var(--text); text-shadow: none; font-size: 26px; }
  .image-band .band-caption p { color: var(--text-muted); }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > :first-child { order: initial; }
  .zone-grid, .feature-grid, .programs, .price-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; padding: 20px; }
  .hero-stats .stat .num { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-strip { padding: 40px 26px; }
  /* image-band aspect-ratio nastavuje větší breakpoint (820px),
     na mobilu už je rozložení image + caption v sloupci */
  .hero-photo { aspect-ratio: 4 / 3; }
  .photo-card { aspect-ratio: 4 / 3; }
  .programs > .program.featured.with-image[style] { grid-column: span 1 !important; }
}
