/* =========================
   :root – základní proměnné
========================= */
:root {
  --bg: #000;
  --text: #fff;
  --accent: #f4b512;
  --accent-second: #b26008;
}

/* =========================
   Globální reset
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 120px;
  /* pro sticky header */
  scroll-behavior: smooth;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

footer a {
  color: var(--accent-second) !important;
}

/* =========================
   Header
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--accent);
}

.logo img {
  max-height: 100px;
  width: auto;
  display: block;
}

/* Navigation */
.nav {
  position: relative;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-list a:hover {
  color: var(--accent);
}

.nav-list a:hover::after {
  width: 100%;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }


  /* menu full-screen width */
  .nav-list {
    position: fixed;
    /* fixní vůči oknu */
    top: 100px;
    /* pod header, uprav podle výšky headeru */
    left: 0;
    width: 100vw;
    /* celé okno */
    background: var(--bg);
    border-top: none;
    border-radius: 0;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem;

    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 999;
    /* aby bylo nad vším */
  }

  .nav-list.active {
    max-height: 500px;
    /* nebo víc podle počtu položek */
    padding: 1rem 1.5rem;
  }

  .nav-list li a {
    padding: 0.5rem 0;
  }
}





/* =========================
   Hero banner
========================= */
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =========================
   Info sections (žluté)
========================= */
.info-section {
  background: var(--accent);
  color: #000;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.info-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  gap: 0.25rem;
}

.info-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.info-title {
  font-size: clamp(2.1rem, 3.9vw, 2.9rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: -20px;
}

.info-text {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

/* Social icons */
.socials {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.socials a svg {
  width: 64px;
  height: 64px;
  fill: #000;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.socials a:hover svg {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* CTA button */
.cta-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* =========================
   Info sections (černé)
========================= */
.info-section.black-bg {
  background: var(--bg);
  color: var(--text);
  text-align: left;
  padding: clamp(3rem, 6vw, 5rem) 1rem;
}

.info-section.black-bg .container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.info-section.black-bg .info-eyebrow,
.info-section.black-bg .info-title {
  text-shadow: none;
  text-align: center;
  /* eyebrow + title zůstává na středu */
  margin-bottom: 0.5rem;
  margin-top: -20px;
}

.info-left {
  text-align: left;
  max-width: 1140px;
  width: 100%;
  margin-top: 20px;
}

.info-section.black-bg h3.info-text {
  text-align: left;
  text-shadow: none;
}

/* Text-muted */
.text-muted {
  color: #ccc;
  font-size: 1.0rem;
}

/* =========================
   Paralaxní sekce s bublinami
========================= */
.parallax-section {
  position: relative;
  min-height: 720px;
  /* minimální výška */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  /* bílý text */
  padding: 3rem 1rem;
  background-image: url("/assets/images/bg-cenik.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* paralax efekt */
}

/* tmavý overlay pro lepší čitelnost textu */
.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 0;
}

/* =========================
   Obsah sekce
========================= */
.parallax-section .container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.parallax-section .container.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
  /* mezera mezi textem a bublinami */
}

/* Titulky a text */
.parallax-section .info-title {
  font-size: clamp(2.1rem, 3.9vw, 2.9rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.parallax-section .info-text {
  font-size: 1.3rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* H3 v této sekci - permanentky, jednorázový vstup */
#cenik-sluzeb h3.info-title {
  font-size: 2rem;
  margin-top: 30px;
  margin-bottom: 0.3rem;
  /* blíže bublinám */
}

#cenik-sluzeb h4 {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 0.3rem;
  /* blíže bublinám */
}

/* =========================
   Bubble grid
========================= */
.bubble-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  z-index: 1;
}

/* Bubliny */
.bubble {
  flex: 0 0 auto;
  /* fixní velikost, nechceme flex-basis ovlivnění */
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #c68a2e, var(--accent) 35%, #b8860b 90%);
  box-shadow: inset -4px -6px 10px rgba(0, 0, 0, 0.4),
    inset 3px 3px 8px rgba(255, 255, 255, 0.3),
    0 4px 10px rgba(0, 0, 0, 0.6);
  text-align: center;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  padding: 1rem;
  transition: transform 0.2s ease;
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: bold;
}

/* Liché bubliny o 10 % větší */
.bubble-grid .bubble:nth-child(odd) {
  width: 220px;
  height: 220px;
}

/* Hover efekt */
.bubble:hover {
  transform: translateY(-5px);
}

/* Obrázky uvnitř bublin */
.bubble img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}

/* =========================
   Mobilní zobrazení
========================= */
@media (max-width: 768px) {
  .bubble-grid {
    flex-direction: row;
    /* dvě bubliny vedle sebe */
    flex-wrap: wrap;
    /* zalamování řádků */
    justify-content: center;
    /* centrování řádků */
    gap: 1rem;
    /* mezery mezi bublinami */
  }

  /* Liché bubliny */
  .bubble-grid .bubble,
  .bubble-grid .bubble:nth-child(odd),
  .bubble-grid .bubble:nth-child(even) {
    width: 160px;
    height: 160px;
    padding-top: 30px;
  }


  /* Liché bubliny */
  .bubble-grid .bubble.multisport {
    width: 160px;
    height: 160px;
    padding-top: 0px;
  }

  /* Drobná úprava textu uvnitř bublin */
  .bubble-grid .bubble {
    font-size: 1.2rem;
  }
}


/* Full-width transport grid */
.transport-grid.full-width {
  width: 100vw;
  /* přes celou šířku okna */
  max-width: 100%;
  padding: 0 2rem;
  /* odsazení od okrajů */
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  box-sizing: border-box;
}

/* Transport item */
.transport-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
  max-width: 320px;
  box-sizing: border-box;
}

/* Transport icon & text */
.transport-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.transport-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.transport-item p.text-muted {
  color: #ccc;
  line-height: 1.4;
}

/* RESPONSIVE – mobil/tablet: 2 položky vedle sebe */
@media (max-width: 768px) {
  .transport-item {
    flex: 0 0 calc(50% - 1.5rem);
    /* dvě položky vedle sebe, gap je odečten */
    margin-bottom: 1.5rem;
  }

  /* GRID zůstává flex-wrap, ne column! */
  .transport-grid.full-width {
    gap: 1rem;
    padding: 0 0.5rem;
    justify-content: space-between;
  }

  .transport-item p.text-muted {
    font-size: 1rem;
  }
}





.map-container {
  width: 100%;
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 640px;
  /* minimální výška mapy */
  border: 0;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 320px;
    /* menší výška na mobil */
    border-radius: 12px;
  }
}

h2.info-title span {
  color: white
}


/* FAQ Accordion */
.faq-item {
  margin-bottom: 1rem;


}

.faq-question {
  display: flex;
  justify-content: center;
  /* text vlevo, šipka vpravo */
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.0rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

.faq-arrow {
  transition: transform 0.3s ease;
}

/* otočení šipky při aktivním stavu */
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 0;
  /* text nebude posunutý */
  color: #ccc;
  font-size: 1.0rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 0.5rem;
}



.faq-item .faq-question i {
  margin-left: 10px;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.partners-section {
  padding: 60px 20px;
  text-align: center;
  background: black;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  margin-top: -20px;

}


/* Full-width partners grid */
.partners-grid.full-width {
  width: 100vw;
  /* přes celou šířku okna */
  max-width: 100%;
  padding: 0 2rem;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  box-sizing: border-box;
}

/* Partner item */
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  /* rovnoměrně se roztáhnou */
  min-width: 120px;
  max-width: 320px;
}

.partner-item img {
  max-width: 150px;
  width: auto;
  /* zachování poměru stran */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.2);
}



.follow-us-section {
  background-color: #ffffff;
  /* bílé pozadí */
  border-top: 20px solid var(--accent);
  border-bottom: 20px solid var(--accent);
  /* tmavě žlutý horní pruh */
  text-align: center;
  padding: 40px 20px;
}

.follow-us-section h2 {
  color: var(--accent);
  /* tmavě žlutý nadpis */
}

.follow-us-section .info-eyebrow {
  color: black;
  /* tmavě žlutý nadpis */
}



.info-section-2 {
  background: #3f3f3f;
  padding: 80px 60px;
}

/* HLAVNÍ KONTEJNER */
.info-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  /* mezera mezi logo a obsahem */
  flex-wrap: wrap;
  /* umožní přechod pod sebe na mobilu */
  width: 100%;
  box-sizing: border-box;
}

/* LOGO */
.info-logo {
  flex: 0 0 40%;
  /* PC: 40% šířky */
  display: flex;
  justify-content: center;
}

.info-logo img {
  max-width: 420px;
  width: 100%;
  height: auto;
}

/* PRAVÁ ČÁST – 2 SLOUPCE */
.info-content {
  flex: 1 1 55%;
  /* PC: zbytek prostoru */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
  /* mezery mezi sloupci */
  max-width: 100%;
  box-sizing: border-box;
}

/* JEDNOTLIVÉ INFO */
.info-item {
  display: flex;
  gap: 14px;
  color: #d0d0d0;
  font-size: 17px;
  line-height: 1.4;
}

.info-item i {
  color: #f2b400;
  font-size: 48px;
  margin-top: 4px;
  margin-right: 6px;
  min-width: 48px;
  width: 48px;
  text-align: center;
}

.info-item strong {
  color: #ffffff;
  display: block;
  margin-bottom: 2px;
}

/* RESPONSIVE – mobil/tablet */
@media (max-width: 900px) {
  .info-container {
    flex-wrap: wrap;
    gap: 30px;
  }

  .info-logo,
  .info-content {
    flex: 1 1 100%;
  }

  .info-content {
    grid-template-columns: 1fr;
    /* jeden sloupec na mobilu */
    gap: 20px;
  }

  .info-item {
    margin-bottom: 20px;
  }
}





.gallery-section {
  padding-top: 0px;
  padding-bottom: 50px;
  text-align: center;
}

.gallery-grid,
.gallery-more {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {

  .gallery-grid,
  .gallery-more {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .3s ease;
}

@media (max-width: 768px) {
.gallery-item img {
  height: 240px;
}
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* 🔥 animační část */
.gallery-more-wrapper {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.8s ease,
    opacity 0.4s ease;
}

.gallery-more-wrapper.open {
  max-height: 2000px;
  /* dostatečně velká hodnota */
  opacity: 1;
  margin-top: 20px;
}

.gallery-toggle {
  margin-top: 30px;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #d4a100;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  transition: background .3s ease, transform .2s ease;
  font-size: 1.1rem;
}

.gallery-toggle:hover {
  background: #e5b300;
  transform: translateY(-2px);
}

.site-footer {
  background: #fff;
  color: #000;
  padding: 24px 16px;
  border-top: 1px solid #eee;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer a {
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.site-footer a:hover {
  opacity: 0.6;
}


.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  /* mezera mezi bloky */
  flex-wrap: wrap;
  margin-top: 30px;
}

.stat {
  min-width: 120px;
}

@media (max-width: 768px) {
  .stat {
    flex: 0 0 calc(50% - 20px);
    /* 50% minus polovina gapu */
    box-sizing: border-box;
    /* aby padding/margin neovlivnily šířku */
  }
}



.number {
  font-size: 4rem;
  font-weight: bold;
  color: black;
  /* nebo barva podle designu */
}

.plus::after {
  content: "+";
}

.label {
  font-size: 1rem;
  margin-top: 5px;
}

.articles-section {
  padding: 80px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  background: #3f3f3f;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.article-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.article-content {
  padding: 20px;
}

.article-date {
  font-size: 0.85rem;
  color: #888;
}

.article-date i {
  color: var(--accent);
  margin-right: 5px;
}

.article-title {
  margin: 8px 0 10px;
  font-size: 1.2rem;
}

.article-excerpt {
  font-size: 1rem;
  color: white;
  line-height: 1.5;

  /* ořez na 3 řádky */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 📱 Mobil */
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

h3 a {
  color: white;
}

/* Základní styl formuláře */
.contact-form {
  max-width: 600px;
  /* omezení šířky */
  margin: 0 auto;
  /* centrování */
  padding: 20px;
  border-radius: 12px;
}

/* Řádky formuláře */
.contact-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

/* Přizpůsobení na mobil – sloupce pod sebou */
@media (max-width: 500px) {
  .contact-form .form-row {
    flex-direction: column;
  }
}

/* Vstupní pole a textarea */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 16px;
  background: linear-gradient(145deg, #fefefe, #f0f0f0);
  transition: all 0.3s ease;

}

/* Focus efekt */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-second);

}

/* Textarea – výška a resize */
.contact-form textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  font-family: Helvetica, Arial, sans-serif;
}

/* Tlačítko odeslat */
.contact-form button {
  display: inline-block;
  width: 100%;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--accent);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);

}

/* Hover efekt tlačítka */
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Placeholder text */
.contact-form ::placeholder {
  color: #999;
}

/* Skrytý honeypot */
.contact-form input[name="company"] {
  display: none;
}

.form-alert {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-weight: 500;
}

.form-alert.success {
  background: black;
  color: white;
  border-style: solid;
  border-width: 1px;
  border-color: var(--accent);
}

p a,
ul a,
ol a {
  color: white;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

p a:hover,
ul a:hover,
ol a:hover {
  color: var(--accent);
}

ol,
ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

p {
  margin-bottom: 25px;
}

.gallery-img-wrapper img {
  transition: transform 0.3s ease;
}

.gallery-img-wrapper:hover img {
  transform: scale(1.05);
}

.download-buttons {
  display: flex;
  gap: 1rem;           /* mezera mezi tlačítky */
  justify-content: center; /* centrování */
  align-items: center;
  flex-wrap: wrap;     /* aby na mobilech šly pod sebe, pokud je málo místa */
  margin-top: 2rem;
}

.download-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.download-buttons a img {
  width: 260px;        /* vhodná velikost loga, můžeš upravit */
  height: auto;
  display: block;
}

.download-buttons a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Mobile – zmenšení log */
@media (max-width: 480px) {
  .download-buttons a img {
    width: 160px;
  }
}



.info-person {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  margin-top: 40px;
  flex-wrap: wrap; /* umožní přechod na mobil */
  text-align: left;
}

.info-photo img {
  width: 100%;
  max-width: 300px; /* nebo 400px podle potřeby */
  aspect-ratio: 1/1; /* 1:1 */
  object-fit: cover;
  border-radius: 50px;
}

.info-texts {
  flex: 1;
}

h3.info-name
{margin-bottom: 20px;}

/* Mobilní zobrazení */
@media (max-width: 768px) {
  .info-person {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-photo img {
    max-width: 200px;
    margin-bottom: -25px;
  }
}
