/* ============================================================
   MERCEDES-BENZ EXPERIENCE 2026
   ============================================================

   OBSAH:
   01. Fonty (@font-face)
   02. CSS proměnné (:root)
   03. Reset & base
   04. Typografie
   05. Navbar
   06. Hero slideshow
   07. Sekce — obecné utility
   08. Intro sekce
   09. Program timeline
   10. Trasa
   11. Registrace
   12. Formulář
   13. Vozidla
   14. Footer
   15. Responsive
   16. Aktivity
   17. Booking form (presunuté z inline + nové pre 2-krokový systém)
   ============================================================ */

/* ============================================================
   01. FONTY
   ============================================================ */

@font-face {
  font-family: "CorporateACon";
  src:
    url("../fonts/CorporateACon-Reg.woff") format("woff"),
    url("../fonts/CorporateACon-Reg.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CorporateA";
  src:
    url("../fonts/CorporateA-Regular.woff") format("woff"),
    url("../fonts/CorporateA-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CorporateS";
  src:
    url("../fonts/CorporateS-Regular.woff") format("woff"),
    url("../fonts/CorporateS-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CorporateS";
  src:
    url("../fonts/CorporateS-Bold.woff") format("woff"),
    url("../fonts/CorporateS-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   02. CSS PROMĚNNÉ
   ============================================================ */

:root {
  --font-title: "CorporateACon", "CorporateA", Georgia, serif;
  --font-body: "CorporateS", Arial, sans-serif;

  --color-black: #000000;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-muted: #888888;
  --color-border: #cccccc;
  --color-bg: #ffffff;
  --color-bg-light: #f5f5f5;
  --color-primary: #137ad3;

  --fs-h1: clamp(42px, 6vw, 76px);
  --fs-h2: clamp(32px, 5vw, 64px);
  --fs-h3: clamp(24px, 3.5vw, 40px);
  --fs-h4: clamp(20px, 2.5vw, 28px);
  --fs-body: 18px;
  --fs-small: 14px;
  --fs-nav: 15px;

  --transition: all 0.3s ease;
}

/* ============================================================
   03. RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ============================================================
   04. TYPOGRAFIE
   ============================================================ */

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-black);
}

h1 {
  font-size: var(--fs-h1);
  margin-bottom: 1rem;
}
h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}
h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.75rem;
}
h4 {
  font-size: var(--fs-h4);
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-text);
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 16px;
}

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--color-black);
  margin: 24px 0;
}

.text-muted-mb {
  color: var(--color-muted);
}

/* ============================================================
   05. NAVBAR
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-inline svg {
  width: 37px;
  height: 37px;
  display: block;
  overflow: visible;
}

.nav-brand {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--color-black);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--fs-nav);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-black);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-black);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: var(--transition);
}

/* ============================================================
   06. HERO SLIDESHOW
   ============================================================ */

.hero {
  margin-top: 70px;
  position: relative;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--color-bg-light);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

@media (min-width: 1200px) {
  .hero-slide img {
    object-position: center;
  }
}

.hero-slide.active {
  opacity: 1;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  font-family: var(--font-title);
  font-size: clamp(18px, 3vw, 28px);
  color: #999;
  letter-spacing: 0.1em;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--color-white);
  transform: scale(1.3);
}

/* Hero pre-click CTA button */
.hero-cta-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-date {
  font-family: var(--font-title);
  font-size: clamp(33px, 3.4vw, 87px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.hero-cta-btn {
  pointer-events: all;
  display: inline-block;
  background: rgba(0, 0, 0, 0.75);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 44px;
  /*border: 2px solid rgba(255, 255, 255, 0.7); */
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  backdrop-filter: blur(4px);
}

.hero-cta-btn:hover {
  background: var(--color-black);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* ============================================================
   07. SEKCE — OBECNÉ UTILITY
   ============================================================ */

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-light {
  background: var(--color-bg-light);
}

.section-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
  color: var(--color-white);
}

.section-dark .section-divider {
  background: var(--color-white);
}

.container-xl {
  max-width: 1280px;
}

/* ============================================================
   08. INTRO SEKCE
   ============================================================ */

.intro-section {
  padding: 100px 0;
}

.intro-lead {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  color: var(--color-black);
  margin-bottom: 32px;
}

.intro-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 640px;
}

/* ============================================================
   09. PROGRAM TIMELINE
   ============================================================ */

.program-timeline {
  position: relative;
  padding-left: 32px;
}

.program-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.program-day-block {
  margin-bottom: 36px;
}

.program-day-block:last-child {
  margin-bottom: 0;
}

.program-day-title {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 10px;
  padding-left: 32px;
}

.program-item {
  position: relative;
  padding: 0 0 10px 32px;
}

.program-item--tight {
  padding-bottom: 8px;
}

.program-item--tight:last-child {
  padding-bottom: 0;
}

.program-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-black);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 1px var(--color-black);
}

.program-item:last-child {
  padding-bottom: 0;
}

.program-time {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--color-black);
  margin-bottom: 4px;
}

.program-desc {
  font-size: 16px;
  color: var(--color-muted);
  margin: 0;
}

/* ============================================================
   10. TRASA
   ============================================================ */

.trasa-map-placeholder {
  background: var(--color-bg-light);
  aspect-ratio: 16 / 6;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--color-muted);
}

.trasa-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.trasa-point:last-child {
  border-bottom: none;
}

.trasa-num {
  font-family: var(--font-title);
  font-size: 48px;
  line-height: 1;
  color: var(--color-border);
  min-width: 56px;
}

.trasa-info h4 {
  margin-bottom: 4px;
}

.trasa-info p {
  margin: 0;
  font-size: 16px;
  color: var(--color-muted);
}

/* ============================================================
   11. REGISTRACE
   ============================================================ */

.reg-section {
  padding: 100px 0;
}

.reg-qr-box {
  text-align: center;
  padding: 60px 40px;
  background: var(--color-bg-light);
}

.reg-qr-box .qr-placeholder {
  width: 180px;
  height: 180px;
  background: var(--color-border);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--color-muted);
}

.reg-qr-label {
  font-family: var(--font-title);
  font-size: clamp(20px, 3vw, 32px);
  color: var(--color-black);
  margin-bottom: 12px;
}

.reg-qr-subtitle {
  font-size: 15px;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.reg-dates {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.reg-date-pill {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--color-black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   12. FORMULÁŘ
   ============================================================ */

.reg-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.reg-form-title {
  text-align: center;
  margin-bottom: 8px;
}

.reg-form-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--color-muted);
  margin-bottom: 40px;
}

.form-label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 6px;
}

.form-control {
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-black);
  background: var(--color-white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--color-black);
}

select.form-control {
  cursor: pointer;
}

.form-check-label {
  font-size: 14px;
  color: var(--color-text);
}

.form-check-input {
  border-radius: 0;
  border-color: var(--color-border);
}

.form-check-input:checked {
  background-color: var(--color-black);
  border-color: var(--color-black);
}

.btn-mb-submit {
  display: block;
  width: 100%;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 32px;
}

.btn-mb-submit:hover {
  background: #222222;
}

.button {
  display: block;
  width: 100%;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 0;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 32px;
  text-align: center;
}

.button160 {
  width: 160px;
}

.button:hover {
  background: #222222;
}

.form-success {
  background: #e8f5e9;
  border-left: 3px solid #2e7d32;
  padding: 16px 20px;
  font-size: 16px;
  color: #1b5e20;
  margin-bottom: 24px;
}

.form-error {
  background: #fdecea;
  border-left: 3px solid #c62828;
  padding: 16px 20px;
  font-size: 16px;
  color: #b71c1c;
  margin-bottom: 24px;
}

/* Stránka bez parametra */
.no-access-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 60px 20px;
}

.no-access-wrap p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 12px;
}

/* ============================================================
   17. BOOKING FORM — 2-krokový systém (presunuté z inline + nové)
   ============================================================ */

/* Indikátor krokov */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.step-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: var(--transition);
}

.step-dot.active {
  background: var(--color-black);
  color: var(--color-white);
}

.step-dot.done {
  background: #2e7d32;
  color: var(--color-white);
}

.step-line {
  width: 60px;
  height: 1px;
  background: var(--color-border);
}

/* Jazda bloky */
.jazda-block {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 24px 16px;
  margin-bottom: 16px;
  position: relative;
}

.jazda-block .jazda-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.jazda-block .jazda-title {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
}

.jazda-block .btn-remove-jazda {
  background: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.78rem;
  color: #888;
  cursor: pointer;
  padding: 2px 10px;
  transition: all 0.2s;
}

.jazda-block .btn-remove-jazda:hover {
  border-color: #999;
  color: #333;
}

.btn-add-jazda {
  background: #111;
  border: none;
  border-radius: 6px;
  padding: 11px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.btn-add-jazda:hover {
  background: #333;
}

.btn-add-jazda:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.jazdy-counter {
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 12px;
}

.jazdy-counter span {
  font-weight: 700;
  color: #111;
}

.obed-note {
  font-size: 0.78rem;
  color: #999;
  margin-top: 4px;
}

.slot-type-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.slot-type-badge.t1 {
  background: #111;
  color: #fff;
}

.slot-type-badge.t2 {
  background: #e8e0d0;
  color: #555;
}

/* Oznam o výbere modelu */
.model-info-notice {
  background: #f0f4f8;
  border-left: 3px solid #137ad3;
  padding: 14px 18px;
  font-size: 14px;
  color: #333;
  margin: 20px 0;
  line-height: 1.55;
}

/* Uzamknuté polia — krok 2 */
.locked-field {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  padding: 10px 14px;
  font-size: 15px;
  color: #555;
  border-radius: 4px;
}

/* ============================================================
   13. VOZIDLA
   ============================================================ */

.vehicle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.vehicle-row:last-child {
  border-bottom: none;
}

.vehicle-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-light);
}

.vehicle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vehicle-row:hover .vehicle-img-wrap img {
  transform: scale(1.03);
}

.vehicle-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--color-muted);
}

.vehicle-content {
  padding: 60px 64px;
}

.vehicle-row.reverse .vehicle-img-wrap {
  order: 2;
}

.vehicle-row.reverse .vehicle-content {
  order: 1;
}

.vehicle-label {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.vehicle-name {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  color: var(--color-black);
  margin-bottom: 24px;
}

.vehicle-desc {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
}

.vehicle-specs {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vehicle-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.vehicle-specs li span:last-child {
  font-weight: 700;
  color: var(--color-black);
}

.vehicles-heading {
  margin-bottom: 60px;
}

/* ============================================================
   14. FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 60px 0 40px;
}

.footer-brand {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.footer-contact-label {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.footer-contact-val {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.footer-contact-val a {
  color: var(--color-white);
  transition: var(--transition);
}

.footer-contact-val a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0 24px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-logo img {
  width: 36px;
  opacity: 0.5;
  filter: invert(1);
}

/* ============================================================
   15. RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
  .vehicle-content {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px 20px;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-logo-inline img {
    width: 32px;
    height: 32px;
  }

  .nav-brand {
    font-size: 16px;
  }

  .hero {
    height: 55vh;
    min-height: 300px;
  }

  .hero-cta-btn {
    font-size: 12px;
    padding: 13px 28px;
  }

  .section,
  .reg-section,
  .intro-section {
    padding: 60px 0;
  }

  .vehicle-row {
    grid-template-columns: 1fr;
  }

  .vehicle-row.reverse .vehicle-img-wrap,
  .vehicle-row.reverse .vehicle-content {
    order: unset;
  }

  .vehicle-content {
    padding: 40px 24px;
  }

  .reg-qr-box {
    padding: 40px 24px;
  }
}

/* ============================================================
   16. AKTIVITY
   ============================================================ */

.activities-strip {
  padding: 60px 0;
}

.activities-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.25em;
  letter-spacing: -0.02em;
}

.activities-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .activities-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.activities-col-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
  opacity: 0.6;
}

.activities-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.activities-col-grid .activity-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
}

.activities-col-grid .activity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.activities-col-grid .activity-item img:hover {
  transform: scale(1.04);
}

/* ============================================================
   18. HERO VIZUALY — 3 vedľa seba
   ============================================================ */

.hero-visuals-strip {
  width: 100%;
  overflow: hidden;
}

.hero-visuals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.hero-visual-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.hero-visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-visual-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .hero-visuals-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual-item {
    aspect-ratio: 16 / 7;
  }
}

/* ============================================================
   19. TERMINY STRIP (sivá lista s termínmi a odpočtom)
   ============================================================ */

.terminy-strip {
  background: #4a4a4a;
  padding: 0;
  position: sticky;
  top: 70px;
  z-index: 900;
  border-bottom: 1px solid #3a3a3a;
}

.terminy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.terminy-inner-centered {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 0;
}

.terminy-reg-wrap {
  display: flex;
  justify-content: center;
}

.terminy-date-time {
  font-size: 11px;
  opacity: 0.65;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}

.terminy-dates-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.terminy-date-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 16px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}

.terminy-date-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.terminy-date-label {
  opacity: 0.9;
}

.terminy-count {
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.terminy-count.full {
  background: rgba(200, 50, 50, 0.35);
  color: #ffaaaa;
}

.terminy-full-tag {
  margin-left: 4px;
  font-size: 10px;
  opacity: 0.8;
  text-transform: uppercase;
}

.terminy-reg-btn {
  display: inline-block;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}

.terminy-reg-btn:hover {
  background: #222;
  color: #fff;
}

@media (max-width: 768px) {
  .terminy-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
  }

  .terminy-reg-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   23. ZÁUJEM O INÝ TERMÍN — blok vo vnútri reg-section
   ============================================================ */

.interest-wrap {
  text-align: center;
  padding: 56px 20px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.interest-label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.interest-text {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 28px;
}

.interest-wrap .button160 {
  margin: 0 auto;
  display: block;
}

.trasa-text {
  max-width: 680px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
}

/* ============================================================
   21. SLOT PICKER — výber termínu/modelu/času v 1 kroku
   ============================================================ */

.slot-picker {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.slot-date-block {
  border: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
}

.slot-date-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #f8f8f8;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}

.slot-date-btn:hover:not(.disabled-slot) {
  background: #efefef;
}

.slot-date-btn.active {
  background: var(--color-black);
  color: var(--color-white);
}

.slot-date-btn.active .slot-date-count {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.slot-date-btn.disabled-slot {
  opacity: 0.5;
  cursor: not-allowed;
}

.slot-date-name {
  font-size: 15px;
  font-weight: 700;
}

.slot-date-count {
  font-size: 13px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.07);
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.slot-date-count.full {
  background: rgba(200, 50, 50, 0.12);
  color: #c00;
}

.slot-full-label {
  margin-left: 5px;
  font-size: 10px;
  text-transform: uppercase;
}

.slot-models-wrap {
  padding: 20px 20px 16px;
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.slot-pick-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.slot-models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

@media (min-width: 600px) {
  .slot-models-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.slot-model-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: #f5f5f5;
  border: 1px solid var(--color-border);
  padding: 12px 14px;
  font-family: var(--font-body);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
  text-align: left;
}

.slot-model-btn:hover:not(.disabled-slot) {
  background: #e8e8e8;
  border-color: #aaa;
}

.slot-model-btn.active {
  background: var(--color-black);
  border-color: var(--color-black);
  color: #fff;
}

.slot-model-btn.active .slot-model-count {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.slot-model-btn.disabled-slot {
  opacity: 0.45;
  cursor: not-allowed;
}

.slot-model-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.slot-model-count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.07);
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.slot-times-wrap {
  border-top: 1px solid #e8e8e8;
  padding-top: 16px;
  margin-top: 4px;
}

.slot-times-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-time-btn {
  background: #f0f0f0;
  border: 1px solid var(--color-border);
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.slot-time-btn:hover {
  background: #e0e0e0;
  border-color: #999;
}

.slot-time-btn.active {
  background: var(--color-black);
  border-color: var(--color-black);
  color: #fff;
}

/* Zhrnutie výberu */
.slot-summary {
  background: #f0f4f8;
  border-left: 3px solid var(--color-black);
  padding: 14px 18px;
  margin: 8px 0 0;
}

.slot-summary-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.slot-summary-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.slot-summary-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
  flex: 1;
}

.slot-summary-change {
  background: none;
  border: 1px solid var(--color-border);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--color-muted);
  transition: all 0.2s;
}

.slot-summary-change:hover {
  border-color: var(--color-black);
  color: var(--color-black);
}

@media (max-width: 768px) {
  .slot-models-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   22. HERO-VISUALS — nový hero (3 fotky, žiadny slideshow)
   ============================================================ */

.hero-visuals {
  margin-top: 70px; /* výška navbaru */
  width: 100%;
  overflow: hidden;
}

.hero-visuals .hero-visuals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
}

.hero-visuals .hero-visual-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.hero-visuals .hero-visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.hero-visuals .hero-visual-item:hover img {
  transform: scale(1.04);
}

/* Stredná fotka — tmavý overlay pre čitateľnosť textu */
.hero-visuals .hero-visual-center::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

/* CTA blok — cez stred prostrednej fotky */
.hero-visuals-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 90%;
  pointer-events: none;
}

.hero-visuals-cta .hero-date {
  font-family: var(--font-title);
  font-size: clamp(22px, 3vw, 56px);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.hero-visuals-cta .hero-cta-btn {
  pointer-events: all;
}

@media (max-width: 768px) {
  .hero-visuals .hero-visuals-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-visuals .hero-visual-item {
    aspect-ratio: 16 / 7;
  }
  /* Na mobile zobraz CTA len na 1. fotke (stredná sa nestackuje do stredu) */
  .hero-visuals .hero-visual-center::after {
    background: rgba(0, 0, 0, 0.42);
  }
  .hero-visuals-cta .hero-date {
    font-size: clamp(26px, 7vw, 40px);
  }
  .hero-panel-cta-text {
    font-size: 12px !important;
  }
  .hero-panel-cta-btn {
    font-size: 10px !important;
    padding: 10px 16px !important;
  }
}

@media (max-width: 480px) {
  .hero-visuals .hero-visuals-grid {
    grid-template-columns: 1fr;
  }
  .hero-visuals .hero-visual-item {
    aspect-ratio: 16 / 9;
  }
}

/* 4. panel — tmavý overlay + CTA */
.hero-visual-cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-panel-cta {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 16px 36px;
  text-align: center;
  gap: 16px;
}

.hero-panel-cta-text {
  font-family: var(--font-body);
  font-size: clamp(11px, 1.1vw, 15px);
  color: #ffffff;
  line-height: 1.55;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-panel-cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-body);
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
}

.hero-panel-cta-btn:hover {
  background: #000000;
  color: #ffffff;
}
