/* ============================================================================
   KEBAB HOUSE — vlastní doplňkový CSS (to, co Tailwind utility neřeší elegantně)
   ============================================================================ */

/* Plynulé scrollování na kotvy + offset pod sticky hlavičku */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

/* ===== HLAVIČKA — stav po odscrollování (přidává JS třídu .scrolled) ===== */
#header.scrolled {
  background: rgba(251, 246, 238, 0.92); /* cream s průhledností */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
/* Dokud je hero pod hlavičkou (nezescrollováno), nav odkazy bílé pro čitelnost */
#header:not(.scrolled) .nav-link,
#header:not(.scrolled) .nav-logo { color: #fff; }
#header:not(.scrolled) #menuToggle { color: #fff; }

.nav-link { position: relative; transition: color .2s; }
.nav-link:hover { color: #b8432e; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: #d4a24a; transition: width .25s;
}
.nav-link:hover::after { width: 100%; }

/* ===== JAZYKOVÝ PŘEPÍNAČ =====
   Musí být dobře čitelný na obou pozadích headeru (hero foto i cream po scrollu). */

/* Podkladová "pill" ploška kolem tlačítek — výchozí (header po scrollu, cream) */
.lang-switch {
  background: rgba(34, 23, 18, 0.06);
  border: 1px solid rgba(34, 23, 18, 0.18);
}
/* Na hero (header nezescrollován) — světlý průhledný podklad s bílým rámečkem */
#header:not(.scrolled) nav .lang-switch {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
/* Varianta uvnitř mobilního menu (vždy světlé pozadí) — drž tmavý podklad */
.lang-switch--light {
  background: rgba(34, 23, 18, 0.06);
  border-color: rgba(34, 23, 18, 0.18);
}

/* Jednotlivá tlačítka jazyků */
.lang-btn {
  color: #221712;
  font-weight: 700;
  transition: all .2s;
}
.lang-btn:hover { background: rgba(34, 23, 18, 0.10); }
/* Aktivní jazyk — zlatý akcent, jasně odlišený */
.lang-btn.active { background: #d4a24a; color: #221712; box-shadow: 0 1px 4px rgba(0,0,0,.18); }

/* Na hero: světlý text + světlejší hover (tmavé pozadí pod headerem) */
#header:not(.scrolled) nav .lang-btn { color: #fff; }
#header:not(.scrolled) nav .lang-btn:hover { background: rgba(255, 255, 255, 0.22); }
#header:not(.scrolled) nav .lang-btn.active { background: #d4a24a; color: #221712; }

/* ===== TLAČÍTKA ===== */
.btn-primary, .btn-outline, .btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: 9999px;
  font-weight: 700; font-size: 1rem; transition: all .2s;
  cursor: pointer;
}
.btn-primary { background: #b8432e; color: #fff; box-shadow: 0 8px 20px rgba(184,67,46,.35); }
.btn-primary:hover { background: #7a1f1f; transform: translateY(-2px); }
.btn-gold { background: #d4a24a; color: #221712; box-shadow: 0 8px 20px rgba(212,162,74,.35); }
.btn-gold:hover { background: #e8c178; transform: translateY(-2px); }
.btn-outline { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.6); backdrop-filter: blur(4px); }
.btn-outline:hover { background: #fff; color: #221712; transform: translateY(-2px); }

/* ===== VÝZVA K RECENZI V HERO (jemný pulz pro upoutání oka) ===== */
.review-cta-hero { animation: ctaPulse 2.6s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(212, 162, 74, .35); }
  50%      { box-shadow: 0 8px 32px rgba(212, 162, 74, .75); }
}
@media (prefers-reduced-motion: reduce) {
  .review-cta-hero { animation: none; }
}

/* ===== CHIPS / ŠTÍTKY ===== */
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(184,67,46,.08); color: #7a1f1f;
  padding: .4rem .9rem; border-radius: 9999px;
  font-size: .9rem; font-weight: 600;
}
.footer-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.08); color: #fbf6ee;
  padding: .3rem .75rem; border-radius: 9999px; font-size: .8rem; font-weight: 600;
}

/* ===== MENU TABY ===== */
.menu-tab {
  padding: .55rem 1.2rem; border-radius: 9999px;
  font-weight: 600; font-size: .95rem;
  background: rgba(255,255,255,.06); color: #fbf6ee;
  border: 1px solid rgba(255,255,255,.12); transition: all .2s; cursor: pointer;
}
.menu-tab:hover { background: rgba(255,255,255,.14); }
.menu-tab.active { background: #d4a24a; color: #221712; border-color: #d4a24a; }

/* Karta položky menu */
.menu-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem; padding: 1.1rem 1.25rem; transition: all .2s;
}
.menu-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.menu-card .price { color: #e8c178; font-weight: 700; white-space: nowrap; }

/* ===== PROČ K NÁM — dlaždice ===== */
.benefit {
  background: #fff; border-radius: 1rem; padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(34,23,18,.06); border: 1px solid rgba(34,23,18,.05);
  transition: transform .2s, box-shadow .2s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(34,23,18,.12); }
.benefit h3 { font-weight: 800; font-size: 1.15rem; color: #7a1f1f; margin: .75rem 0 .4rem; }
.benefit p { font-size: .92rem; color: rgba(34,23,18,.7); line-height: 1.5; }

/* ===== RECENZE — karty ===== */
.review-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem; padding: 1.4rem; backdrop-filter: blur(2px);
}
.review-card .stars { color: #e8c178; font-size: .9rem; letter-spacing: 1px; }
.review-card .quote { font-size: 1rem; line-height: 1.6; margin: .6rem 0 1rem; color: #fbf6ee; }
.review-card .author { font-weight: 700; color: #fff; }
.review-card .source { font-size: .8rem; color: rgba(251,246,238,.6); }

/* ===== GALERIE ===== */
.gallery-item {
  position: relative; overflow: hidden; border-radius: .9rem; cursor: pointer;
  aspect-ratio: 1/1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "🔍"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(34,23,18,.35); opacity: 0; transition: opacity .25s; font-size: 1.5rem;
}
.gallery-item:hover::after { opacity: 1; }

/* ===== MOBILNÍ STICKY LIŠTA ===== */
.sticky-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: .55rem 0 .6rem; font-size: .7rem; font-weight: 700; color: #7a1f1f;
}
.sticky-btn:active { background: rgba(184,67,46,.08); }

/* ===== SCROLL-REVEAL ANIMACE (IntersectionObserver přidá .visible) ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Šetrnost: respektuj uživatele s omezením pohybu */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .animate-bounce { animation: none; }
}

/* Otevřeno / Zavřeno — barevné stavy (třídy přidává JS) */
.status-open  { color: #7fe0a8; }
.status-closed { color: #ff9a8a; }

/* ===== POBOČKY — karty na hlavní stránce ===== */
.branch-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px rgba(34,23,18,.07);
  border: 1px solid rgba(34,23,18,.07);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .2s, box-shadow .2s;
}
.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(34,23,18,.13);
}
.branch-card .branch-icon { font-size: 2.5rem; line-height: 1; }
.branch-card h3 {
  font-size: 1.45rem; font-weight: 900; color: #7a1f1f;
  font-family: 'Fraunces', serif; line-height: 1.15;
}
.branch-card address { font-style: normal; color: rgba(34,23,18,.7); font-size: .95rem; }
.branch-card .branch-hours { font-size: .88rem; color: rgba(34,23,18,.6); line-height: 1.55; }
.branch-card .branch-rating { color: #d4a24a; font-weight: 700; font-size: 1rem; }

/* ===== POBOČKY — detailní stránka ===== */
.branch-hero {
  background: linear-gradient(135deg, #142b23 0%, #1f4034 60%, #7a1f1f 100%);
}
.branch-info-row { display: flex; align-items: flex-start; gap: .75rem; }
.branch-info-row .bi-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .05rem; }
.hours-table td { padding: .3rem .5rem .3rem 0; }
.hours-table td:first-child { padding-right: 1.5rem; color: rgba(34,23,18,.65); }
.hours-table td:last-child { font-weight: 600; }
.todo-badge {
  display: inline-block; background: #fef3cd; color: #856404;
  border: 1px solid #ffc107; border-radius: .5rem;
  padding: .2rem .65rem; font-size: .8rem; font-weight: 600;
}
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .85rem; opacity: .75; flex-wrap: wrap; }
.breadcrumb a { text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color .2s; }
.breadcrumb a:hover { text-decoration-color: currentColor; }
.breadcrumb-sep { opacity: .5; }

/* ============================================================================
   OBJEDNÁVKOVÝ MODUL (košík / panel / checkout / potvrzení)
   ============================================================================ */

/* ----- Tlačítko „Přidat" v menu ----- */
.add-to-cart {
  background: #d4a24a; color: #221712;
  font-weight: 700; font-size: .85rem;
  padding: .4rem .85rem; border-radius: 9999px;
  border: 0; cursor: pointer; white-space: nowrap;
  transition: background .15s, transform .1s;
}
.add-to-cart:hover { background: #e8c178; }
.add-to-cart:active { transform: scale(.94); }

/* ----- Plovoucí košík (FAB) ----- */
#kh-fab {
  position: fixed; right: 1rem; bottom: 5.25rem; z-index: 56;
  display: flex; align-items: center; gap: .5rem;
  background: #b8432e; color: #fff;
  border: 0; cursor: pointer;
  padding: .8rem 1.1rem; border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(184,67,46,.45);
  font-weight: 700; font-family: 'Inter', system-ui, sans-serif;
  transition: transform .15s, background .15s;
}
#kh-fab:hover { background: #7a1f1f; transform: translateY(-2px); }
.kh-fab-ico { font-size: 1.25rem; line-height: 1; }
.kh-fab-count {
  position: absolute; top: -.35rem; left: -.35rem;
  min-width: 1.4rem; height: 1.4rem; padding: 0 .35rem;
  background: #d4a24a; color: #221712;
  border-radius: 9999px; font-size: .8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.kh-fab-count[hidden] { display: none; }
.kh-fab-sub { font-size: .9rem; }
@media (min-width: 768px) { #kh-fab { bottom: 1.5rem; right: 1.5rem; } }

.kh-pulse { animation: khPulse .4s ease; }
@keyframes khPulse {
  0% { transform: scale(1); } 40% { transform: scale(1.12); } 100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { .kh-pulse { animation: none; } }

/* ----- Overlay + panel (drawer) ----- */
.kh-overlay {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(34,23,18,.55); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .25s;
}
.kh-overlay.on { opacity: 1; }

.kh-drawer {
  position: fixed; top: 0; right: 0; z-index: 71;
  width: 100%; max-width: 430px; height: 100%;
  background: #fbf6ee; color: #221712;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.25);
  transform: translateX(100%); transition: transform .25s ease;
}
.kh-drawer.on { transform: translateX(0); }

.kh-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; border-bottom: 1px solid rgba(34,23,18,.1);
  background: #fff;
}
.kh-title { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.3rem; color: #7a1f1f; margin: 0; }
.kh-close {
  background: none; border: 0; cursor: pointer;
  font-size: 1.9rem; line-height: 1; color: #221712; padding: 0 .25rem;
}
.kh-close:hover { color: #b8432e; }
.kh-body { flex: 1; overflow-y: auto; padding: 1.1rem 1.25rem 1.5rem; }

.kh-empty { text-align: center; color: rgba(34,23,18,.55); padding: 3rem 1rem; font-size: 1rem; }

/* ----- Řádky košíku ----- */
.kh-rows { display: flex; flex-direction: column; gap: .65rem; }
.kh-row {
  background: #fff; border: 1px solid rgba(34,23,18,.07);
  border-radius: .85rem; padding: .8rem .9rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.kh-row-main { display: flex; justify-content: space-between; gap: .75rem; align-items: baseline; }
.kh-row-name { font-weight: 700; line-height: 1.2; }
.kh-row-price { color: #7a1f1f; font-weight: 600; white-space: nowrap; }
.kh-qty { display: flex; align-items: center; gap: .5rem; }
.kh-qty-btn {
  width: 2rem; height: 2rem; border-radius: .55rem;
  border: 1px solid rgba(34,23,18,.18); background: #fbf6ee;
  font-size: 1.15rem; font-weight: 700; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.kh-qty-btn:hover { background: #f0e7d8; }
.kh-qty-n { min-width: 1.6rem; text-align: center; font-weight: 700; }
.kh-remove { margin-left: auto; background: none; border: 0; cursor: pointer; font-size: 1.1rem; opacity: .6; }
.kh-remove:hover { opacity: 1; }

/* ----- Patička panelu ----- */
.kh-foot, .kh-checkout-foot { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid rgba(34,23,18,.1); }
.kh-subtotal { display: flex; justify-content: space-between; font-size: 1.1rem; margin-bottom: .85rem; }
.kh-subtotal strong { color: #7a1f1f; }

.kh-btn-primary {
  width: 100%; background: #b8432e; color: #fff;
  border: 0; border-radius: 9999px; cursor: pointer;
  padding: .9rem 1.2rem; font-size: 1rem; font-weight: 700;
  transition: background .15s, transform .1s;
}
.kh-btn-primary:hover { background: #7a1f1f; }
.kh-btn-primary:active { transform: scale(.99); }
.kh-btn-primary:disabled { opacity: .6; cursor: default; }
.kh-btn-ghost {
  background: transparent; color: #221712;
  border: 1.5px solid rgba(34,23,18,.25); border-radius: 9999px; cursor: pointer;
  padding: .9rem 1.2rem; font-size: 1rem; font-weight: 700;
}
.kh-btn-ghost:hover { background: rgba(34,23,18,.06); }
.kh-btn-row { display: flex; gap: .6rem; }
.kh-btn-row .kh-btn-ghost { flex: 0 0 38%; }
.kh-btn-row .kh-btn-primary { flex: 1; }

/* ----- Formulář checkout ----- */
.kh-field { margin-bottom: .95rem; }
.kh-label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.kh-input {
  width: 100%; padding: .7rem .8rem; font-size: 1rem; font-family: inherit;
  border: 1px solid rgba(34,23,18,.2); border-radius: .6rem; background: #fff; color: #221712;
}
.kh-input:focus { outline: 2px solid #d4a24a; outline-offset: 1px; border-color: #d4a24a; }
textarea.kh-input { resize: vertical; min-height: 2.6rem; }
.kh-field.has-err .kh-input { border-color: #b8432e; }
.kh-err { color: #b8432e; font-size: .82rem; font-weight: 600; margin-top: .3rem; }
.kh-err-global { text-align: center; margin-top: .6rem; }

.kh-pay-notice {
  background: rgba(31,64,52,.08); color: #1f4034;
  border: 1px solid rgba(31,64,52,.2); border-radius: .6rem;
  padding: .7rem .85rem; font-size: .9rem; font-weight: 600;
  margin: .25rem 0 1rem;
}
.kh-gdpr { display: flex; align-items: flex-start; gap: .55rem; font-size: .9rem; line-height: 1.4; cursor: pointer; margin-bottom: .2rem; }
.kh-gdpr input { margin-top: .2rem; width: 1.05rem; height: 1.05rem; flex-shrink: 0; accent-color: #b8432e; }

/* ----- Potvrzovací obrazovka ----- */
.kh-confirm { text-align: center; padding: 1rem 0; }
.kh-confirm-ico { font-size: 3.2rem; line-height: 1; margin-bottom: .5rem; }
.kh-confirm-thanks { font-size: 1.05rem; color: rgba(34,23,18,.8); margin: 0 0 1.2rem; }
.kh-confirm-num {
  background: #1f4034; color: #fbf6ee; border-radius: .85rem;
  padding: 1rem; margin-bottom: 1rem;
}
.kh-confirm-num span { display: block; font-size: .82rem; opacity: .8; }
.kh-confirm-num strong { font-family: 'Fraunces', serif; font-size: 1.8rem; letter-spacing: .5px; }
.kh-confirm-list { list-style: none; margin: 0 0 1rem; padding: 0; }
.kh-confirm-list li {
  display: flex; justify-content: space-between;
  padding: .55rem .2rem; border-bottom: 1px solid rgba(34,23,18,.08);
  font-size: .95rem;
}
.kh-confirm-list li span { color: rgba(34,23,18,.6); }
.kh-confirm-list li strong { color: #7a1f1f; }

/* ===== MENU ZÁVISLÉ NA POBOČCE ===== */
/* Přepínač pobočky nad kategoriemi menu (tmavá sekce #menu) */
.menu-branch {
  padding: .45rem 1rem; border-radius: 9999px;
  font-weight: 700; font-size: .85rem;
  background: rgba(255,255,255,.06); color: #fbf6ee;
  border: 1px solid rgba(255,255,255,.16); cursor: pointer; transition: all .2s;
}
.menu-branch:hover { background: rgba(255,255,255,.14); }
.menu-branch.active { background: #b8432e; color: #fff; border-color: #b8432e; }

/* Štítek „pouze na místě" u neobjednatelných položek (shisha) */
.menu-only-instore {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(212,162,74,.18); color: #e8c178;
  border: 1px solid rgba(212,162,74,.45);
  padding: .35rem .7rem; border-radius: 9999px;
  font-size: .78rem; font-weight: 700; white-space: nowrap;
}

/* Flash hláška v košíku (odebrané položky po změně pobočky) */
.kh-flash {
  background: #fef3cd; color: #856404; border: 1px solid #ffc107;
  border-radius: .6rem; padding: .65rem .85rem; margin-bottom: .9rem;
  font-size: .88rem; font-weight: 600;
}

/* ============================================================================
   HERO POZADÍ — tmavá orientální scéna s dönerem
   ============================================================================ */
.hero-bg {
  /* Desktop/tablet: široké pozadí (beze změny). Mobil má vlastní svislý obrázek níže. */
  background-image: url('../images/hero-bg.jpg?v=2');
  background-size: cover;
  background-position: center 40%; /* posun nahoru → vidět víc kompozice (oblouk, lucerny) */
  background-repeat: no-repeat;
  background-color: #221712; /* fallback, než se obrázek načte */
  /* Hero vyplní PŘESNĚ celou výšku obrazovky → po načtení je vidět jen hero,
     nic dalšího zespodu neleze. svh/dvh kvůli mobilní liště prohlížeče (nepřetéká). */
  min-height: 100vh;   /* fallback pro starší prohlížeče */
  min-height: 100svh;  /* mobil: přesně viditelná plocha, nic nepřetéká pod lištu */
}
/* Progressive enhancement: kde je podpora dvh, drž hero přesně na aktuální výšce okna */
@supports (height: 100dvh) {
  .hero-bg { min-height: 100dvh; }
}

/* Jemný tmavý overlay (~30 %) s lehkým gradientem zhora/zespoda kvůli čitelnosti
   nadpisu, CTA a odznáčků. Atmosféra obrázku zůstává zachovaná. */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(34, 23, 18, 0.38) 0%,
    rgba(34, 23, 18, 0.22) 42%,
    rgba(34, 23, 18, 0.48) 100%
  );
}

/* Na mobilu (portrét, úzké displeje) se širokoúhlý obrázek ořízne na střed
   a textu ubývá místo — přidáme o něco silnější ztmavení, ať text drží kontrast. */
/* Nízké obrazovky (menší telefony na výšku, landscape) — zkomprimuj obsah hero,
   ať se vejde na jednu obrazovku a nemusí se v rámci hero scrollovat. */
@media (max-height: 730px) {
  .hero-content { padding-top: 4rem; padding-bottom: 2.25rem; }
  .hero-content > div,
  .hero-content > a,
  .hero-content > h1,
  .hero-content > p { margin-bottom: 0.6rem; }
  .hero-content h1 { font-size: 1.85rem; line-height: 1.1; }
  .hero-content p { font-size: 0.95rem; }
  .hero-content .review-cta-hero { padding-top: 0.6rem; padding-bottom: 0.6rem; font-size: 0.9rem; }
  .hero-content .btn-primary,
  .hero-content .btn-outline,
  .hero-content .btn-gold { padding-top: 0.55rem; padding-bottom: 0.55rem; }
}
@media (max-height: 560px) {
  /* Velmi nízko (landscape telefon) — ještě těsněji. */
  .hero-content { padding-top: 3.75rem; padding-bottom: 1.5rem; }
  .hero-content > div,
  .hero-content > a,
  .hero-content > h1,
  .hero-content > p { margin-bottom: 0.45rem; }
  .hero-content h1 { font-size: 1.55rem; }
}

/* Mobil / úzké displeje (do 768 px): SAMOSTATNÉ svislé pozadí (1080×1919), ostré
   a komponované na výšku (döner, shisha, pizza). Díky media query prohlížeč stahuje
   JEN tento obrázek, ne širokou verzi (rychlost). background-size: cover, center,
   plná výška hero (100svh/100dvh výše), bez blur/filtru. */
@media (max-width: 768px) {
  .hero-bg {
    background-image: url('../images/hero-bg-mobile.jpg?v=2');
    background-position: center;
  }
}

@media (max-width: 640px) {
  /* Jemné doladění overlaye pro telefony (kontrast textu). Pozadí = mobilní obrázek výše. */
  .hero-bg {
    background-position: center;
  }
  /* Jemnější overlay než dřív — silné ztmavení dělalo obraz „zabahněný".
     Gradient drží kontrast textu nahoře/dole, střed nechává obrázek vyniknout. */
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(34, 23, 18, 0.45) 0%,
      rgba(34, 23, 18, 0.28) 45%,
      rgba(34, 23, 18, 0.55) 100%
    );
  }
}
