/* ====== PROMĚNNÉ ====== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



:root {
  /* --bg: #fafafa; */
  --bg: #E8E7E7;
  --ink: #111111;
  --ink-weak: #666666;
  --brand:  #f4c715; 
  /* --brand:  #c8a20e; */
  --border: #eeeeee;
}

/* ====== RESET / ZÁKLAD ====== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--ink);
  font-family: 'Inter',system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
  line-height: 1.6;
}



h2{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

#informace h2, h3, #formular h2, #mapa h2, #mapa p{
  text-align: center;
}



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

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

.brand {
  display:inline-block;
  line-height:0;
}
.brand img { display:block; transition:opacity .35s ease; }
.brand .logo-white { display:none; }

@media (hover:hover) and (pointer:fine){
  .brand:hover .logo-dark  { display:none; }
  .brand:hover .logo-white { display:block; }
  .brand:focus-visible .logo-dark  { display:none; }
  .brand:focus-visible .logo-white { display:block; }
}

@media (hover:none){
  .brand:active .logo-dark  { display:none; }
  .brand:active .logo-white { display:block; }
}

a, button { -webkit-tap-highlight-color: rgba(0,0,0,.15); }




.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.muted {
  color: var(--ink-weak);
  font-size: 0.95rem;
}
.muted2{
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 500;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--brand);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 67px;
}





/* Tlačítko hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 15px 12px;
  border: 1px solid #111111;
  border-radius: 12px;
  background-color: #111111;
  cursor: pointer;
  margin-left: 10px;
}

.nav-toggle:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}



/* Navigace – desktop výchozí: viditelná vpravo, jeden řádek */
.nav {
  display: block;
  font-weight: 600;
}

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

.nav-item a {
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
  transition: transform .5s ease-in-out, background-color .5s ease;
}

/* .nav-item a:hover,
.nav-item a:focus-visible {
  background-color: #111111;
  color: #fff;
} */

.btns, .btn {
  transition: transform .5s ease-in-out, background-color .5s ease, box-shadow .5s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

/* .btns:hover, .btn:hover {
  color: #111111;
  transform: translateY(-1px);
  background-color: #ffff;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
} */

.btns:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0,0,0,.10);
}


/* Telefon – stejné jako ostatní odkazy, jen zvýrazněný „pill“ */
/* Telefon – vždy viditelný „pill“ */
.nav-phone{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  border-radius:12px;
  padding:10px 12px;
  background-color:var(--ink);
  color:#fff;
  transition: transform .5s ease-in-out, background-color .5s ease;
}
/* .nav-phone:hover{ color:var(--brand); } */


/* "vlna" */
/* .nav-phone::before{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:100%;
  background-color: #ececec;
  transform:translateY(100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
  z-index:0;
} */

.nav-phone:hover::before{
  transform:translateY(0%);
}

.nav-phone *{
  position:relative;
  z-index:1;
}

.nav-phone:hover{
  color:#111;
  background-color: #fff;
}




.space {
  margin-top: 15px;
  margin-bottom: 15px;
}

.nav-wrap{ display:flex; align-items:center; justify-content:space-between; min-height:80px; }
.nav{ display:block; }
.nav-toggle{ display:none; }

.nav-phone{ margin-left:auto; }






/* ====== LAYOUT SEKCE ====== */

.section {
  padding-top: 50px;
  padding-bottom: 50px;
}


#sluzby {
  text-align: center;
}

.checkcheck li{
  list-style: none;
  margin-top: 5px;
  margin-bottom: 5px;
}



.checkcheck span{
  margin-left: 10px;
}

.grid ul {
  padding-left: 24px !important;
} 


/* KPI / Chips + CTA */
.kpi {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 8px;
}

.kpi .pill {
  background-color: #11111160;
  color: #ffffff;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 12px;
  font-weight: 600;
  text-wrap: nowrap;
}

@media(max-width:500px){
  .pill{
    font-size: clamp(0.75rem, 3.5vw, 0.95rem);
  }
}

/* Značky */
.brands {
  display: flex;
  gap: 60px;
  opacity: 1;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  /* padding-top: 15px;
  padding-bottom: 15px; */
  padding: 15px;
  width: 100%;
  background-color: var(--brand);
}

/* Gridy */
.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }
}





/* Karty */
.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;             
  background: #fff;
  transition: ease-in-out 0.3s;
}
.card:hover{
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}

.card > p,
.card > ul,
.card > div:not(.card-head) {
  padding: 16px;
}

.card-head {
  background: var(--brand);   
  padding: 18px 16px;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #eee;
}

.card-head h3 {
  margin: 0;
}


details summary {
  cursor: pointer;
  font-weight: 600;
}

/* CTA blok */
.cta {
  background-color: #111111;
  color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin: 0 auto;
}

#informace .card-head {
  background-color: #111111;
  color: var(--brand);
}

textarea {
  resize: vertical;
}


/* Tlačítka */
.btn {
  display: inline-block;
  background-color: var(--brand);
  border-radius: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 18px;
  padding-right: 18px;
  font-weight: 700;
  color: #111111;
  border: none;
}

.btns {
  display: inline-block;
  background-color: var(--brand);
  border-radius: 12px;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 18px;
  padding-right: 18px;
  font-weight: 700;
  color: #111111;
  border: none;
  min-width: 110px;
  font-size: 16px;
  cursor: pointer;
}

.hero-arrow{
    display:inline-flex;
    margin-top:20px;
    padding:12px 14px;
    border-radius: 50px;
    background:rgba(0,0,0,.17);
    color:var(--brand);
    z-index: 4;
  }
  .hero-arrow i{
    font-size:20px;
}


button .btn {
  border: none;
  cursor: pointer;
}

/* Formulář */
form label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
}

.checkbox {
  max-width: 20px !important;
}


input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #dddddd;
  font: inherit;
}



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

.hp {
  position: absolute;
  left: -9999px;
}

.consent{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  flex-wrap: nowrap;
}

.consent .checkbox{
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}


.consent .muted{
  flex:1 1 auto;
  min-width:0;             
  overflow-wrap:anywhere; 
}

.checkbox{ flex:0 0 auto; }

/* @media(max-width:600px){
  .consent{ flex-wrap:wrap; }   
  .muted {margin-bottom: 20px;}
}
@media (max-width:600px){
  #gdpr-note{
    font-size:clamp(0.75rem,2.3vw,1rem);
    line-height:1.4;
  }
} */
/* CONSENT – vždy jeden řádek */
.consent{
  display:flex;
  flex-wrap:nowrap !important;
  align-items:center;
  gap:10px;
}

.consent .checkbox{
  flex:0 0 auto;
  width:17px;
  height:17px;
}

#gdpr-note{
  flex:1 1 auto;
  white-space:wrap; /* tohle vynutí, že se to nezlomí */
  overflow:hidden;
}



@media (max-width: 640px) {
  .row {
    grid-template-columns: 1fr;
  }
}

/* Mapa */
.map-wrap {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Details/FAQ */
details {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  background-color: #ffffff;
}

details + details {
  margin-top: 10px;
}

/* Footer */
footer {
  /* background: linear-gradient(180deg, #f4c715, #ffea96); */
  background-color: var(--brand);
  padding-top: 28px;
  padding-bottom: 28px;
  margin-top: 32px;
}


/* ====== BREAKPOINT: NAVBAR – MOBILE (≤ 768px) ====== */

/* ====== NAVBAR – MOBILE (≤ 1120px) ====== */
@media (max-width:1120px){
  .nav-toggle{ display:inline-flex; }

  /* telefon a hamburger drž spolu vpravo */
  .nav-phone{
    margin-left:auto;
    margin-right:8px;
  }
  .nav-toggle{
    margin-left:0;
  }

  /* dropdown nav */
  .nav{
    position:absolute;
    top:67px; left:0; right:0;
    display:none;
    background-color:var(--brand);
    border-bottom:1px solid var(--border);
    z-index:999 !important;
    height: 100vh;
  }
  .nav.is-open{ display:block; }


  .nav-list{
     display:flex; 
     padding:8px;
    flex-direction: column;
    text-align: center;
    height: 75vh;
    font-size: 1.6rem;
    justify-content: center;
    }
  .nav-item a{
    display:block;
    padding:12px;
    border-radius: 12px;
  }
  .nav-item a:hover{
    background: #f4c715;
  }
}




address {
  font-style: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

.nav-item.nav-phone i {
  margin-right: 8px;
  vertical-align: -1px;
}

.btn i {
  margin-right: 8px;
  vertical-align: -1px;
}








.hero{
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* fixní, stabilní viewport výška */
  min-height: 100svh;   /* iOS/Android – stabilní i když se schová lišta */
  padding: 16px 0;      /* mírný vnitřní okraj, ať nic „neposkakuje“ */
}

.hero h1 {
  font-size: clamp(34px, 8vw, 50px);
  letter-spacing:-0.5px;
  line-height:1.08;  
  margin-top: 0;
  margin-bottom: 8px;
}
@media(max-width:500px){
  .hero h1{
    font-size: 40px !important;
    line-height: 1.15;
  }
}
@media(max-width:400px){
  .hero h1{
    font-size: 32px !important;
    line-height: 1.15;
  }
}
/* fallbacky, kdyby někde svh nebylo */
@supports not (height: 100svh){
  .hero{ min-height: 100dvh; }   /* moderní fallback */
}
@supports not (height: 100dvh){
  .hero{ min-height: 100vh; }    /* úplně poslední fallback */
}

/* na větších displejích nemusí být přes celou výšku */
@media (min-width: 1024px){
  .hero{ min-height: 80vh; }
}



.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms ease;
}

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

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.397), rgba(0,0,0,0.45));
  z-index: 1;
  pointer-events: none;
}

.hero-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
  pointer-events: none;
}


.hero-inner {
  height: 100%;
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  max-width: 1120px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}



.hero-inner .muted {
  color: #e8e8e8;
}

.hero-text {
  max-width: 72ch;
  margin-top: 30px;
}

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

.hero-dots .dot {
  width: 35px;
  height: 5px;
  border: 1px solid #ffffff2d;
  background-color: transparent;
  cursor: pointer;
}

.hero-dots .dot.is-active {
  background-color: var(--brand);
}



@media(max-width:500px){
  .nav-phone-text{
    display:none;
  }

  .nav-phone{
    padding:14px 14px;
  }
}

@media (max-width: 624px){
  .kpi{
    flex-direction: column;
  }
}

@media(max-width:600px){
  .consent{
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .muted {
    font-size: clamp(0.85rem, 2.3vw, 1rem);
  }
}


.space2{
  margin-bottom: 30px;
}

@media(max-width:375px){
  .muted2{
    font-size: 1rem;
  }
}






/* DESKTOP rozložení navigace (≥1121px) */
@media (min-width:1121px){
  .nav {
    flex: 1 1 auto;        /* střed vyroste mezi logem a telefonem */
    display: flex;         /* umožní centrovat obsah */
  }
  .nav-list {
    flex: 1 1 auto;
    justify-content: space-evenly; /* rovnoměrně roztáhne odkazy */
    /* alternativy:
       justify-content: space-around;  // víc mezery okolo
       justify-content: center;        // jen vycentrovat, bez roztahování
    */
  }

  /* pro jistotu malá mezera mezi sekcemi v řádku */
  .nav-wrap { gap: 12px; }
}


/* default desktop chování – nic neměníš */
/* .hero-arrow{ display: inline-flex; } */



@media (max-width:768px){

  /* lepší zalomení na mobilech */
  .hero h1{
    font-size: clamp(24px, 6vw, 40px);
    line-height: 1.15;
    margin: 0 16px 10px;
    text-wrap: balance;
    hyphens: auto;
  }
  .hero .hero-text{
    max-width: 70ch;
    margin: 20px 16px 0;
    font-size: clamp(15px, 3.6vw, 18px);
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

}

.map-skel{
  width:100%;
  height:350px;
  background:#eee;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#666;
  font-size:14px;
}
@media(min-width:768px){
  .map-skel{height:450px;}
}


.form-error .muted {
  font-size: 1.2rem;
}


/* === DESKTOP: skutečný hover (myš/trackpad) === */
@media (hover:hover) and (pointer:fine){
  /* nav odkazy */
  .nav-item a:hover,
  .nav-item a:focus-visible {
    background-color:#fff;
    color:#111111;
  }

  /* tlačítka */
  .btns:hover, .btn:hover {
    color:#111111;
    background-color:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
  }

  /* nav-phone „vlna“ + barva textu */
  .nav-phone:hover { color:#111; }
}

/* === MOBILE/TOUCH: žádný persistent hover, jen krátký :active === */
@media (hover:none){
  /* nav odkazy – reakce na tap */
  .nav-item a:active {
    background-color:#fff;
    color:#111111;
    transform:none;
  }

  /* tlačítka – jemný tap efekt */
  .btns:active, .btn:active {
    transform: translateY(0);
    box-shadow:0 2px 6px rgba(0,0,0,.10);
    background-color:#fff;
    color:#111111;
  }

  /* nav-phone vlna jen při stisku */
  .nav-phone::before {
    transform: translateY(100%);
  }
  .nav-phone:active::before {
    transform: translateY(0%);
  }
  .nav-phone:active { color:#111; }
}



/* zvýraznění inputů */
.is-invalid{ border-color:#b00020 !important; outline:0; box-shadow:0 0 0 2px rgba(176,0,32,.15); }
/* checkbox + text souhlasu */
label.consent.consent-error span{ color:#b00020; font-weight:600; }
input[type="checkbox"].is-invalid{ outline:2px solid #b00020; outline-offset:2px; }

/* 
@media (hover:none){
  .nav-phone:hover { color:#fff; }
} */


/* ==== iOS „bílý pruh“ & scroll – SAFE verze pro sticky navbar ==== */

/* 1) Barva pozadí na kořeni (žádné prosvítání) */
html, body { background-color: var(--bg); }

/* 2) Místo overlaye jen „polštář“ ve spodní safe-area
      => nic nezasahuje do vrstvení, sticky zůstává ok */
@supports (padding: max(0px)) {
  body { padding-bottom: max(env(safe-area-inset-bottom), 0px); }
}

/* 3) Omez „gumový“ overscroll jen na dokument (ne na body) */
html {
  overscroll-behavior-y: contain;  /* iOS 16+; starší ignorují */
  overflow-x: hidden;
}

/* 4) Stabilnější viewport výška bez rozbití sticky */
@supports (-webkit-touch-callout: none) {
  html { height: -webkit-fill-available; }
  body { min-height: 100dvh; }  /* bez transform/overflow na rodičích */
}

/* 5) Zklidnění kompozice u hrdiny (bez dopadu na header/sticky) */
.hero-bg,
.hero-slide,
.hero-scrim,
.hero-blur {
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: opacity, transform;
}


/* 7) Žádný auto-zoom vstupů (nepřekopne layout) */
input, textarea, select { font-size: 16px; }

/* 8) Tap highlight a gesta */
a, button {
  -webkit-tap-highlight-color: rgba(0,0,0,.12);
  touch-action: manipulation;
}

/* --- Hero height stabilizer (mobile) --- */
.hero {
  /* původní chování pro starší prohlížeče */
  overflow: clip; /* nic nepřeteče, nevzniká optické "roztahování" */
}

/* Preferuj "small viewport" – neexpanduje při schování adresního řádku */
@supports (height: 100svh) {
  .hero { min-height: 90svh; }
}

/* iOS < 16.4 fallback – naváže se na JS proměnnou --vh */
@supports (-webkit-touch-callout: none) and (height: 100svh) {
  .hero { min-height: calc(var(--vh, 1vh) * 90); }
}

/* Jistota pro vrstvy pozadí (žádné reflow artefakty) */
.hero-bg,
.hero-slide,
.hero-scrim,
.hero-blur {
  height: 100%;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: opacity;
}

/* MOBILE: fix aby nav-phone NEZUSTAL bílej po tapu */
@media (hover:none){
  .nav-phone:active {
    background-color: #fff;
    color:#111;
  }
  .nav-phone {
    transition: background-color .25s ease, color .25s ease;
  }

  /* tady se to vrací zpět do původního stavu PO zrušení active */
  .nav-phone:not(:active) {
    background-color: var(--ink);
    color:#fff;
  }
}


#scrollTopBtn{
  position:fixed;
  right:18px;
  bottom:-60px; /* skrytý pod spodkem */
  background-color:#111;
  color:var(--brand);
  border:none;
  border-radius:50px;
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  cursor:pointer;
  z-index:99;
  transition:bottom .35s cubic-bezier(.4,0,.2,1);
}

#scrollTopBtn.is-visible{
  bottom:18px; /* vyjede nahoru */
}


/* === Scroll-up tlačítko – iOS hard reset + styly === */
#scrollTopBtn{
  position:fixed;
  right:18px;
  bottom:-60px;                    /* výchozí: schované pod spodkem  */
  z-index:99;

  /* Hard reset pro iOS/Safari */
  -webkit-appearance:none;         /* zruší nativní vzhled */
  appearance:none;
  background:#111;                 /* tvoje barvy */
  color:var(--brand);
  border:none;
  border-radius:50px;
  width:52px;
  height:52px;
  padding:0;
  margin:0;

  display:flex;
  align-items:center;
  justify-content:center;
  font: inherit;                   /* převezme font z body */
  line-height:1;
  text-decoration:none;

  /* interakce */
  cursor:pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,.12);
  touch-action: manipulation;

  /* animace vyjetí */
  transition:
    bottom .35s cubic-bezier(.4,0,.2,1),
    transform .15s ease,
    box-shadow .15s ease;

  /* vzhled */
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  background-clip: padding-box;
}

#scrollTopBtn i{ 
  pointer-events:none; 
  font-size:20px;                  /* FA ikona */
}

/* po zobrazení (IntersectionObserver/fallback) */
#scrollTopBtn.is-visible{ bottom:18px; }

/* hover/focus (myš) */
@media (hover:hover) and (pointer:fine){
  #scrollTopBtn:hover{ transform: translateY(-1px); }
}

/* focus pro klávesnici / čitelnost */
#scrollTopBtn:focus-visible{
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* tap efekt na mobilech bez „zaseknutí“ */
@media (hover:none){
  #scrollTopBtn:active{
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,.10);
  }
}

/* iOS specifická pojistka — kdyby Safari futrovalo vlastní vzhled */
@supports (-webkit-touch-callout: none){
  #scrollTopBtn{
    -webkit-appearance:none !important;
    background:#111 !important;
    color:var(--brand) !important;
  }
}

/* ať neulítne nad spodní „notch“ – drobný polštář */
@supports (padding: max(0px)){
  #scrollTopBtn.is-visible{
    bottom: max(18px, env(safe-area-inset-bottom));
  }
}



/* === Footer odkazy: hover na bílou (bez „stick“ na mobilech) === */
footer a{
  transition: color .2s ease;
}

/* myš/trackpad */
@media (hover:hover) and (pointer:fine){
  footer a:hover,
  footer a:focus-visible{
    color:#fff;
    outline: none;
  }
}

/* touch: krátký vizuální feedback, bez perzistence */
@media (hover:none){
  footer a:active{
    opacity:.85;
  }
}

/* pokud chceš zahrnout i tel:/mailto: mimo footer, odkomentuj: */
/*
a[href^="tel:"], a[href^="mailto:"]{ transition: color .2s ease; }
@media (hover:hover) and (pointer:fine){
  a[href^="tel:"]:hover,
  a[href^="tel:"]:focus-visible,
  a[href^="mailto:"]:hover,
  a[href^="mailto:"]:focus-visible{ color:#fff; }
}
@media (hover:none){
  a[href^="tel:"]:active,
  a[href^="mailto:"]:active{ opacity:.85; }
}
*/

/* === Hero šipka: jemný posun dolů na hover/aktyv === */
.hero-arrow{
  transition: transform .2s ease, background-color .2s ease;
  will-change: transform;
}

/* myš/trackpad */
@media (hover:hover) and (pointer:fine){
  .hero-arrow:hover,
  .hero-arrow:focus-visible{
    transform: translateY(2px);
    outline: none;
  }
}

/* touch: jen během stisku */
@media (hover:none){
  .hero-arrow:active{
    transform: translateY(1px);
  }
}

/* Základ pro čárky – animovatelné */
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.25s ease;
  transform-origin: center;
}

/* AKTIVNÍ STAV – hamburger -> křížek */
.nav-toggle.is-active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Volitelné: v aktivním stavu může být křížek v jiné barvě */
.nav-toggle.is-active .bar {
  background-color: #fff;
}
