/* =========================================================
   VANWAYS — Custom Stylesheet
   Stack: Bootstrap 5 + Custom CSS
   Fonts: Cormorant Garamond (headings) | Lato (body)
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS Custom Properties
   --------------------------------------------------------- */
:root {
  /* Barvy */
  --clr-beige:       #F5EFE6;   /* pozadí světlých sekcí */
  --clr-gold:        #C8893A;   /* zlatá — nadpisy, akcenty */
  --clr-gold-lt:     #D9A55A;   /* světlejší zlatá */
  --clr-btn-orange:  #C97B22;   /* tlačítka */
  --clr-btn-hover:   #A8611A;   /* hover tlačítek */
  --clr-motivate:    #7A5540;   /* motivační blok */
  --clr-dusty-blue:  #7B9EB8;   /* sekce specifikace */
  --clr-warm-brown:  #6B4C38;   /* sekce "Ještě váháte?" */
  --clr-amber:       #C4791A;   /* rezervační sekce */
  --clr-footer:      #5A3E2B;   /* footer */
  --clr-footer-bar:  #4A3020;   /* spodní lišta footeru */
  --clr-white:       #FFFFFF;
  --clr-text:        #2D2010;   /* tmavý text */
  --clr-text-lt:     rgba(255,255,255,0.75); /* světlý text na tmavém */
  --clr-dashed:      #8ABCCC;   /* přerušovaná cesta */
  --clr-dot:         #C97B22;   /* puntíky na cestě */

  /* Fonty */
  --font-heading: 'Cormorant SC', Georgia, serif;
  --font-body:    'Avenir', 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Ostatní */
  --radius-pill: 50px;
  --radius-md:   12px;
  --radius-sm:   8px;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.12);
  --transition:  0.28s ease;
}

/* ---------------------------------------------------------
   2. Reset & Base
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color var(--transition), opacity var(--transition); }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ---------------------------------------------------------
   3. Typografie
   --------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
}
h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
}
h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
}
h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
}
h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gold);
  text-align: center;
  margin-bottom: 0;
}
.section-title--white {
  color: var(--clr-white);
}
.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-gold);
  text-align: center;
  margin-top: 0.5rem;
}
.section-subtitle--white {
  color: rgba(255,255,255,0.9);
}

/* ---------------------------------------------------------
   4. Tlačítka
   --------------------------------------------------------- */
.btn-vw {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-white);
  background-color: var(--clr-btn-orange);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.75rem 2.2rem;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
}
.btn-vw:hover { background-color: var(--clr-btn-hover); color: var(--clr-white); transform: translateY(-2px); }

.btn-vw--white {
  background-color: var(--clr-white);
  color: var(--clr-btn-orange);
}
.btn-vw--white:hover { background-color: var(--clr-beige); color: var(--clr-btn-hover); }

.btn-vw--blue {
  background-color: var(--clr-dusty-blue);
  color: var(--clr-white);
}
.btn-vw--blue:hover { background-color: #6589a0; color: var(--clr-white); }

.btn-vw--dark {
  background-color: #4A3020;
  color: var(--clr-white);
}
.btn-vw--dark:hover { background-color: #3a2510; color: var(--clr-white); }

/* ---------------------------------------------------------
   5. Navbar
   --------------------------------------------------------- */
#mainNav {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: auto;
  max-width: 90vw;
}
.navbar-pill {
  background: rgba(245, 239, 230, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 0.55rem 2rem;
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.navbar-pill .nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clr-text);
  padding: 0.35rem 1rem;
  transition: color var(--transition);
}
.navbar-pill .nav-link:hover { color: var(--clr-gold); }
.navbar-pill .nav-link--member {
  color: var(--clr-btn-orange);
  border: 1.5px solid var(--clr-btn-orange);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.9rem;
  margin-left: 0.5rem;
  font-size: 0.72rem;
}
.navbar-pill .nav-link--member:hover {
  background: var(--clr-btn-orange);
  color: var(--clr-white);
}
/* Hamburger mobile — skrytý pokud je vidět celé menu */
.navbar-toggler-pill {
  display: none;
  background: rgba(245, 239, 230, 0.88);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.navbar-toggler-pill span {
  display: block; width: 22px; height: 2px; background: var(--clr-text); margin: 4px 0;
  transition: all var(--transition);
}
/* Mobile nav */
.navbar-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245, 239, 230, 0.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.navbar-mobile-menu.open { display: flex; }
.navbar-mobile-menu .nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text);
}
.navbar-mobile-menu .nav-link:hover { color: var(--clr-gold); }
.navbar-mobile-menu .nav-link--member {
  color: var(--clr-btn-orange);
  border: 2px solid var(--clr-btn-orange);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.5rem;
  margin-top: 0.5rem;
}
.navbar-mobile-menu .nav-link--member:hover {
  background: var(--clr-btn-orange);
  color: var(--clr-white);
}
.navbar-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--clr-text);
}

/* Language switcher */
.navbar-pill .nav-link--lang {
  color: var(--clr-dusty-blue);
  border: 1.5px solid var(--clr-dusty-blue);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  margin-left: 0.35rem;
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.navbar-pill .nav-link--lang:hover {
  background: var(--clr-dusty-blue);
  color: var(--clr-white);
}
.navbar-mobile-menu .nav-link--lang {
  color: var(--clr-dusty-blue);
  border: 2px solid var(--clr-dusty-blue);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.5rem;
  margin-top: 0.5rem;
  font-weight: 800;
}
.navbar-mobile-menu .nav-link--lang:hover {
  background: var(--clr-dusty-blue);
  color: var(--clr-white);
}

/* ---------------------------------------------------------
   6. Hero
   --------------------------------------------------------- */
#hero {
  position: relative;
  min-height: 100vh;
  background-image: url('../images/hero.webp');
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(28,20,10,0.25) 0%,
    rgba(28,20,10,0.15) 50%,
    rgba(28,20,10,0.55) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 7rem;
}
/* Dekorativní cesta — SVG linka s tečkami */
.hero-route {
  position: absolute;
  left: 0; top: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
/* Logo — vycentrované v hero */
.hero-logo {
  position: absolute;
  top: 7rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  color: var(--clr-white);
}
.hero-logo svg { width: 70px; height: 70px; margin: 0 auto 0.5rem; }
.hero-logo-img {
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}
/* Desktop: logo_complete (logo + text vedle sebe) */
.hero-logo-desktop {
  max-width: 420px;
  display: block;
}
/* Mobile: samotné logo — skryté na desktopu */
.hero-logo-mobile {
  display: none;
  max-width: 100px;
}
/* Mobile: text pod logem — skrytý na desktopu */
.hero-logo-text-mobile {
  display: none;
  text-align: center;
  margin-top: 0.5rem;
}
.hero-logo-name {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--clr-white);
}
.hero-logo-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
/* Text dole */
.hero-bottom {
  margin-top: auto;
  padding: 0 5% 5rem;
}
.hero-title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
  max-width: 650px;
}
.hero-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}
.hero-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.9rem;
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------
   7. Motivační blok
   --------------------------------------------------------- */
#motivace {
  background-color: var(--clr-motivate);
  padding: 3.5rem 0;
}
.motivace-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.motivace-text strong { color: var(--clr-white); font-weight: 700; font-style: normal; }

/* ---------------------------------------------------------
   8. Pro koho je VANWAYS?
   --------------------------------------------------------- */
#proc {
  background-color: var(--clr-beige);
  padding: 5rem 0;
}
.proc-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.proc-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.16); }
.proc-card img {
  width: 100%; height: 240px; object-fit: cover;
}
.proc-card-body { padding: 1.5rem; }
.proc-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-gold);
  margin-bottom: 0.6rem;
}
.proc-card-text { font-size: 0.92rem; color: #5A4030; line-height: 1.65; }
.proc-closing {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--clr-gold);
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------------------------------------------------------
   9. Jak to funguje?
   --------------------------------------------------------- */
#jak {
  position: relative;
  min-height: 520px;
  background-image: url('../images/jak-to-funguje.webp');
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
}
#jak .overlay {
  position: absolute; inset: 0;
  background: rgba(28,20,10,0.52);
}
#jak .inner { position: relative; z-index: 2; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  position: relative;
  margin-top: 3rem;
}
/* Nepravidelná klikatá čára — SVG */
.steps-path {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.steps-path--desktop {
  top: -12px;
  left: 0;
  width: 100%;
  height: 100px;
}
.steps-path--mobile {
  display: none;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 76px; height: 76px;
  background: rgba(28,20,10,0.75);
  border: 3px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--clr-white);
}
.step-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--clr-white);
}

/* ---------------------------------------------------------
   10. Výbava karavanu
   --------------------------------------------------------- */
#vybava {
  background-color: var(--clr-beige);
  padding: 5rem 0 0;
}
.vybava-icons {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.vybava-icon-item { text-align: center; }
.vybava-icon-item svg, .vybava-icon-item i {
  font-size: 2.8rem;
  color: var(--clr-gold);
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}
.vybava-icon-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-gold);
  margin-bottom: 0.4rem;
}
.vybava-icon-text { font-size: 0.88rem; color: #5A4030; line-height: 1.65; }

/* Slider */
.vybava-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}
.vybava-slides {
  display: flex;
  transition: transform 0.45s ease;
}
.vybava-slide {
  min-width: 33.3333%;
  padding: 0 4px;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .vybava-slide { min-width: 50%; }
}
@media (max-width: 575px) {
  .vybava-slide { min-width: 100%; }
}
.vybava-slide img {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.vybava-slide-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.vybava-slide-link:hover img {
  transform: scale(1.04);
  transition: transform .35s ease;
}
.vybava-slide-link img {
  transition: transform .35s ease;
}
.vybava-slide-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 32, 16, 0);
  transition: background .3s;
  pointer-events: none;
}
.vybava-slide-zoom i {
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity .3s, transform .3s;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.vybava-slide-link:hover .vybava-slide-zoom {
  background: rgba(45, 32, 16, 0.3);
}
.vybava-slide-link:hover .vybava-slide-zoom i {
  opacity: 1;
  transform: scale(1);
}
.vybava-slider-counter {
  position: absolute;
  bottom: 12px;
  right: 16px;
  background: rgba(45, 32, 16, 0.6);
  color: #fff;
  font-size: 0.82rem;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 5;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 3;
}
.gallery-lightbox-close:hover {
  background: rgba(255,255,255,0.25);
  transform: rotate(90deg);
}
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 3;
}
.gallery-lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
}
.gallery-lightbox-prev { left: 20px; }
.gallery-lightbox-next { right: 20px; }
.gallery-lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-lightbox.is-open .gallery-lightbox-content img {
  transform: scale(1);
}
.gallery-lightbox-counter {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 12px;
  letter-spacing: 0.1em;
}
@media (max-width: 575px) {
  .gallery-lightbox-nav { width: 40px; height: 40px; font-size: 1.1rem; }
  .gallery-lightbox-prev { left: 8px; }
  .gallery-lightbox-next { right: 8px; }
  .gallery-lightbox-content img { max-width: 95vw; }
}

.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text);
  transition: background var(--transition);
}
.slider-btn:hover { background: var(--clr-white); }
.slider-btn--prev { left: 1rem; }
.slider-btn--next { right: 1rem; }
.vybava-cta {
  text-align: center;
  padding: 2rem 0;
}

/* Technické specifikace */
#specs {
  background-color: var(--clr-dusty-blue);
  padding: 3.5rem 0;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.5rem 3rem;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--clr-white);
  font-size: 0.9rem;
}
.spec-item i {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}

/* ---------------------------------------------------------
   11. Cena pronájmu
   --------------------------------------------------------- */
#cena {
  background-color: var(--clr-beige);
  padding: 5rem 0;
}
.cena-cards {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 3rem 0 2rem;
  position: relative;
}
/* Nepravidelná klikatá čára za kartami — SVG */
.cena-path {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 60px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.price-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
  width: 240px;
  transition: transform var(--transition);
}
.price-card:hover { transform: translateY(-4px); }
.price-card--peak {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(200,137,58,0.3);
}
.price-card--peak:hover { transform: scale(1.06) translateY(-4px); }
.price-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  display: block;
}
.price-season {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.price-season--offpeak { color: var(--clr-text); }
.price-season--peak    { color: var(--clr-gold); }
.price-season--winter  { color: var(--clr-dusty-blue); }
.price-divider {
  border: none;
  height: 1px;
  margin: 0.75rem 0;
}
.price-divider--offpeak { background: #ccc; }
.price-divider--peak    { background: var(--clr-gold); }
.price-divider--winter  { background: var(--clr-dusty-blue); }
.price-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.2rem;
}
.price-period {
  font-size: 0.8rem;
  color: #888;
}
.cena-note {
  text-align: center;
  font-size: 0.82rem;
  color: #7A5A3A;
  margin-top: 1.5rem;
  line-height: 1.7;
}
.cena-note strong { color: var(--clr-gold); }

/* ---------------------------------------------------------
   12. Příběhy cestovatelů
   --------------------------------------------------------- */
#pribehy {
  position: relative;
  min-height: 540px;
  background-image: url('../images/jak-to-funguje.webp');
  background-size: cover;
  background-position: center bottom;
  padding: 5rem 0;
}
#pribehy .overlay {
  position: absolute; inset: 0;
  background: rgba(28,15,5,0.58);
}
#pribehy .inner { position: relative; z-index: 2; }
/* Review karusel */
.review-carousel {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin: 2.5rem 0;
}
.review-track-wrapper {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.review-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}
.review-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  flex: 0 0 auto;
  box-sizing: border-box;
}
.review-btn {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-white);
  font-size: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
  z-index: 5;
  align-self: center;
}
.review-btn:hover { background: rgba(255,255,255,0.35); }
.review-author {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.review-author span { color: var(--clr-dashed); }
.review-author em {
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.review-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
}

/* ---------------------------------------------------------
   13. Ještě váháte?
   --------------------------------------------------------- */
#vahate {
  background-color: var(--clr-warm-brown);
  padding: 5rem 0;
}
.vahate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 4rem;
  max-width: 820px;
  margin: 2.5rem auto 0;
}
.vahate-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.vahate-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--clr-dashed);
}
.vahate-title i { font-size: 1.1rem; }
.vahate-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1.75rem;
  line-height: 1.6;
}

/* ---------------------------------------------------------
   14. Rezervace termínu
   --------------------------------------------------------- */
#rezervace {
  background-color: var(--clr-amber);
  padding: 5rem 0;
}
#rezervace .section-title { color: var(--clr-white); letter-spacing: 0.1em; }
#rezervace .section-subtitle { color: rgba(255,255,255,0.9); }
.rezervace-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}
/* Formulář */
.form-vw {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-vw input,
.form-vw select,
.form-vw textarea {
  width: 100%;
  background: rgba(245,239,230,0.88);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--clr-text);
  outline: none;
  transition: background var(--transition), box-shadow var(--transition);
}
.form-vw input:focus,
.form-vw select:focus,
.form-vw textarea:focus {
  background: rgba(245,239,230,1);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}
.form-vw input::placeholder,
.form-vw textarea::placeholder { color: rgba(90,60,20,0.55); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-vw textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1.5;
}
/* Formulář — error alert */
.form-alert {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.form-alert--error {
  background: rgba(180, 40, 40, 0.22);
  border: 1px solid rgba(255, 120, 120, 0.45);
  color: #ffe4e4;
}

/* ── Úspěšné odeslání — výrazný bílý banner ─────────────────── */
.form-success {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(60, 35, 10, 0.2);
  margin-bottom: 1rem;
  animation: vwSuccessIn .45s ease both;
}
@keyframes vwSuccessIn {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-success__icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8893A 0%, #C4791A 100%);
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(196, 121, 26, 0.38);
}
.form-success__title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: #5A3E2B;
  margin: 0 0 0.65rem;
  letter-spacing: 0.02em;
}
.form-success__text {
  font-size: 0.94rem;
  color: #5A3E2B;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.form-success__text strong { color: #C4791A; }
.form-success__sub {
  font-size: 0.8rem;
  color: rgba(90, 62, 43, 0.62);
  margin: 0;
  line-height: 1.5;
}
/* Kalendář wrapper — karta má vlastní styly, jen mezera nahoře */
.calendar-wrapper {
  padding-top: 0;
}
.calendar-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.7);
  padding: 3rem 1rem;
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.7;
}
.calendar-placeholder i {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 0.75rem;
}

/* CAPTCHA — obrázková verze ── */
.captcha-row {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.captcha-label {
  font-size: .82rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
}
.captcha-img-row {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.captcha-img {
  display: block;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(200,137,58,0.5);
  height: 54px;
  width: auto;
}
.captcha-refresh {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  width: 36px; height: 36px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
  line-height: 1;
}
.captcha-refresh:hover { background: rgba(255,255,255,0.3); }
.captcha-row input {
  width: 100%;
  background: rgba(245,239,230,0.88);
  border: none;
  border-radius: var(--radius-sm);
  padding: .75rem 1.1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--clr-text);
  outline: none;
  letter-spacing: .1em;
  transition: background var(--transition), box-shadow var(--transition);
}
.captcha-row input:focus {
  background: rgba(245,239,230,1);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}

/* Readonly date fields */
.form-vw input[readonly] {
  cursor: pointer;
  background: rgba(245,239,230,0.65);
}
.form-vw input[readonly]:focus {
  box-shadow: none;
}

/* ---------------------------------------------------------
   14b. Blog — sekce na hlavní stránce
   --------------------------------------------------------- */
#blog {
  background-color: #fff;
  padding: 5rem 0;
}
/* Vlnový oddělovač nad blogem */
.section-wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  background: var(--clr-beige);
  position: relative;
  margin: 0;
  line-height: 0;
}
.section-wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-home-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.blog-home-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  width: 340px;
  max-width: 100%;
}
.blog-home-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.16);
}
.blog-home-card-img-wrap {
  display: block;
  overflow: hidden;
}
.blog-home-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blog-home-card:hover .blog-home-card-img {
  transform: scale(1.05);
}
.blog-home-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e0d5c5 0%, #F5EFE6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 2.5rem;
}
.blog-home-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-home-card-date {
  font-size: .75rem;
  color: #888;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.blog-home-card-date i { color: var(--clr-gold); margin-right: .25rem; }
.blog-home-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-gold);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.blog-home-card-title a { color: inherit; transition: color var(--transition); }
.blog-home-card-title a:hover { color: var(--clr-btn-orange); }
.blog-home-card-text {
  font-size: .88rem;
  color: #5A4030;
  line-height: 1.65;
  flex: 1;
  margin-bottom: .75rem;
}
.blog-home-card-link {
  font-weight: 700;
  font-size: .78rem;
  color: var(--clr-btn-orange);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: color var(--transition);
}
.blog-home-card-link:hover { color: var(--clr-btn-hover); }
.blog-home-card-link i { font-size: .7rem; }

/* ---------------------------------------------------------
   15. Footer
   --------------------------------------------------------- */
.footer {
  background-color: var(--clr-footer);
  padding: 3rem 0 0;
  color: rgba(255,255,255,0.75);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
}
.footer-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.footer-value i { color: var(--clr-gold); margin-right: 0.4rem; }
.footer-value a { color: rgba(255,255,255,0.9); }
.footer-value a:hover { color: var(--clr-gold); }
.footer-map {
  margin-top: 0.25rem;
}
.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: var(--radius-sm);
}
.footer-map-link {
  display: inline-block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
  transition: color var(--transition);
}
.footer-map-link:hover { color: var(--clr-gold); }

/* Footer contact persons */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.footer-contact-row > i {
  font-size: 1.35rem;
  color: #8abccc;
}
.footer-contact-row > i.footer-contact-icon--female {
  color: #d4a0c0;
}
.footer-contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.footer-contact-phone:hover { color: var(--clr-gold); }
.footer-contact-phone i {
  font-size: 0.75rem;
  color: var(--clr-gold);
}
.footer-contact-extra {
  margin-top: 0.7rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* Social links in footer */
.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,137,58,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform .25s, border-color .25s, color .25s, background .25s, box-shadow .25s;
}
.footer-social-link:hover {
  transform: scale(1.12);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.footer-social-link--ig:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.footer-social-link--fb:hover {
  background: #1877F2;
}

.footer-bar {
  background-color: var(--clr-footer-bar);
  padding: 1rem 0;
  text-align: center;
}
.footer-bar-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.footer-bar-text strong { color: var(--clr-gold); }

/* ---------------------------------------------------------
   16. Reveal animace
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------
   17. Responzivita
   --------------------------------------------------------- */
@media (max-width: 991.98px) {
  .steps-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .steps-path--desktop { display: none; }
  .steps-path--mobile { display: none; }
  .specs-grid { grid-template-columns: repeat(2,1fr); }
  .rezervace-grid { grid-template-columns: 1fr; }
  .vybava-icons { grid-template-columns: 1fr; text-align: left; }
  .vybava-icon-item { display: flex; align-items: flex-start; gap: 1rem; text-align: left; }
  .vybava-icon-item i { margin-bottom: 0; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 767.98px) {
  h1 { font-size: 30px; }
  h2 { font-size: 30px; }
  h3 { font-size: 18px; }
  h4 { font-size: 16px; }

  #mainNav { top: 1rem; }
  .navbar-pill { display: none; }
  .navbar-toggler-pill { display: block; }

  .hero-logo { top: 30%; left: 50%; transform: translate(-50%, -50%); right: auto; }
  .hero-logo-desktop { display: none; }
  .hero-logo-mobile { display: block; }
  .hero-logo-text-mobile { display: block; }
  .hero-logo-name { font-size: 2rem; }
  .hero-title { font-size: 1.4rem; }

  .vybava-icons { grid-template-columns: 1fr; }
  .cena-cards { flex-direction: column; align-items: center; }
  .cena-path { display: none; }
  .price-card--peak { transform: scale(1); }

  .vahate-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .footer-cols { grid-template-columns: 1fr; text-align: center; }
  .footer-contact-row { justify-content: center; }
  .footer-contact-phone { margin-left: 0.4rem; }
  .footer-social { justify-content: center; }

  .review-card { padding: 1rem; }
  .review-text { font-size: 0.8rem; line-height: 1.6; }
  .review-author { font-size: 0.8rem; }

  .proc-card img { height: 200px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-grid { grid-template-columns: 1fr; justify-items: center; }
  .spec-item { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .section-title { font-size: 1.6rem; }
  #hero { background-attachment: scroll; }
}
