/* Optimalizace fontů s display swap */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXp-p7K4KLg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM73w5aXp-p7K4KLg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Přidání Google fontů pro popis burgerů */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&family=Amatic+SC:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap'); /* Přidáno Luckiest Guy */

/* Základní reset a globální styly */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary-color: #6e0700;
  --secondary-color: #ffcc00;
  --accent-color: #e02700;
  --accent-hover: #ff3300;
  --background-light: #ffe680;
  --background-lighter: #fff176;
  --text-dark: #333;
  --text-darker: #4a0000;
  --transition: all 0.3s ease;
  
  /* A11y vylepšení - vyšší kontrastní poměry */
  --text-on-primary: #ffffff;
  --text-on-secondary: #000000;
  --focus-outline: 3px solid #2973e2;
  --sticky-header-height: 105px; /* increased height for sticky header */
  --sticky-header-h-padding: 14px; /* default horizontal padding for wrapper */
}

/* Základní styly */
html, body {
  font-family: 'Montserrat', sans-serif;
  background: var(--secondary-color);
  color: var(--primary-color);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Zlepšení a11y - focus styly */
:focus {
  outline: 3px solid #E85A19;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 3px solid #E85A19;
  outline-offset: 2px;
}

/* Vylepšené kontrasty pro a11y */
a {
  color: #0c4d8a; /* Vysoký kontrast */
}

.btn, .btn-primary, .order-btn {
  color: var(--text-on-primary);
  font-weight: bold;
}

/* Zlepšení čitelnosti a kontrastu */
.menu-item-price {
  color: #000000;
  font-weight: 700;
}

.menu-item p {
  color: #000000; /* Vyšší kontrast místo var(--text-darker) */
  font-size: 0.95rem;
}

/* Vylepšení videí pro lepší Core Web Vitals */
.burger-video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 16 / 9; /* Stabilní poměr stran zabraňuje layout shiftu */
}

.burger-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.burger-video-container:hover {
  transform: scale(1.02);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
  padding: 20px;
  text-align: center;
}

.video-overlay h2,
.video-overlay p {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}

.video-overlay h2 {
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-size: 2rem;
}

.video-overlay p {
  color: white;
  margin: 0;
  font-size: 1.1rem;
}

.video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
}

/* Styl pro tlačítko "Klepněte pro přehrání" u videí */
.tap-to-play {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 10;
  text-align: center;
}

.tap-to-play i {
  font-size: 3rem;
  margin-bottom: 10px;
  background-color: rgba(255, 204, 0, 0.8);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tap-to-play p {
  font-size: 1.2rem;
  margin: 0;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .tap-to-play i {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
  
  .tap-to-play p {
    font-size: 1rem;
  }
}

/* Fixní hlavička pro scrollování */
.fixed-header {
  width: 100%;
  background: #ffcc00;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--sticky-header-height); /* kontrolovatelná výška hlavičky */
  display: flex;
  align-items: center; /* vertikálně vycentruje .wrapper */
  /* žádné vertikální paddingy; horizontální odsazení zajištěno .wrapper */
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

/* Třída pro zobrazení fixní hlavičky při scrollování */
.fixed-header.visible {
  visibility: visible;
  opacity: 1;
}

/* Upravený styl pro název v fixed-header */
.fixed-header h1 a {
  display: inline-block;
  font-family: 'Luckiest Guy', cursive;
  text-transform: uppercase;
  font-size: 2.5rem; /* zmenšeno logo pro vyšší hlavičku */
  padding: 8px 16px; /* menší odsazení uvnitř */
  margin-top: 10px; /* posunutí dolů */
  color: #D71F2A;
  background-color: #FFCC00;
  border-radius: 0;
  text-decoration: none;
  position: relative;
  line-height: 1;
  text-align: left !important;
}

/* Align the heading text left by left-justifying logo-container in headers */
/* REMOVED: .fixed-header .logo-container, header .logo-container { justify-content: flex-start; } */

/* Ensure logo container in fixed header also centers its content */
.fixed-header .logo-container {
    justify-content: center;
}

/* Upravená výška maskotů v fixed-header */
.fixed-header .header-mascot {
  height: 70px; /* Sníženo o ~30% z původních 100px */
}

/* Vnitřní blok pro horizontální odsazení sticky hlavičky */
.fixed-header .wrapper {
  width: 100%;
  padding: 0 var(--sticky-header-h-padding); /* jen vodorovné odsazení */
}

/* Sdílené styly pro hlavičky */
header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

/* Hlavička */
header {
  width: 100%;
  min-height: auto;
  position: static;
  z-index: 990;
}

/* Logo s maskoty */
.logo-container {
  display: flex; /* Použití Flexboxu pro snadnější zarovnání */
  align-items: center;
  justify-content: center; /* Zarovnání položek na střed horizontálně */
  width: 100%; /* Zabere celou šířku headeru */
  position: relative; /* Pro absolutní pozicování maskota */
  /* REMOVED: text-align: center; - Redundant with flex centering */
}

.header-mascot {
  height: 100px;
  width: auto;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.header-mascot:hover {
  transform: scale(1.1) rotate(5deg);
}

.header-mascot-left {
  height: 180px; /* Zvětšeno o 50% */
  width: auto;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  margin-right: 5px; /* Sníženo odsazení od textu */
}

.header-mascot-left:hover {
  transform: scale(1.1) rotate(-5deg); /* Opačná rotace než pravý */
}

header h1 {
  font-family: 'Luckiest Guy', cursive; /* Změna fontu */
  /* font-weight: 700; Není nutné pro Luckiest Guy */
  text-transform: uppercase;
  font-size: 4rem;
  color: #D71F2A;
  background-color: #FFCC00;
  padding: 15px 30px;
  border-radius: 0;
  position: relative; /* Pro efekty a potenciální překryvy */
  z-index: 2;
  line-height: 1; /* Upraveno pro lepší vertikální zarovnání */
  margin: 0; /* Odstraní výchozí margin H1 */
  /* REMOVED: display: inline-block; - Not needed, flex item centered by parent */
  text-align: left !important; /* Ensure inner spans align left */
}

/* Tlačítka v jedné řadě */
.header-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
}

/* Tlačítka */
.btn, .btn-primary {
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  margin: 0;
  display: inline-block;
  font-size: 1.2rem;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

/* Animace pulzování */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
}

/* Sekce a nadpisy */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  width: 100%;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

/* Menu styly s podporou obrázků */
.menu-category { margin-bottom: 40px; }

.menu-category h3 {
  font-size: 1.8rem; /* Zvětšení písma */
  text-align: center; /* Centrování textu */
  margin-bottom: 25px; /* Větší odsazení pod nadpisem */
  color: var(--primary-color);
  padding-bottom: 10px; /* Odsazení pro linku */
  border-bottom: 2px solid var(--secondary-color); /* Jemná linka pod nadpisem */
  display: inline-block; /* Aby linka nebyla přes celou šířku */
  position: relative; /* Pro případné další dekorace */
  left: 50%; /* Centrování bloku s linkou */
  transform: translateX(-50%); /* Dokončení centrování bloku */
}

.menu-item {
  background: var(--background-light);
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 90px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.menu-item:hover {
  background: var(--background-lighter);
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
  transition: var(--transition);
  float: left;
  border: 2px solid var(--primary-color);
}

.menu-item:hover .menu-item-image {
  transform: scale(1.05);
}

.menu-item-header {
  display: block;
  margin-bottom: 8px;
  width: 100%;
  text-align: left;
  margin-left: 0; /* Zajistit nulový levý margin */
  margin-right: 0; /* Zajistit nulový pravý margin */
}

.menu-item-title {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  width: 100%;
  justify-content: flex-start;
}

.menu-item-title h3 {
  color: var(--primary-color);
  margin-bottom: 0;
  font-size: 1.5rem;
  transition: var(--transition);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block; /* Přepisuje inline-block z .menu-category h3 */
  text-align: left;
  padding: 0;
  margin-top: 0;
  margin-left: 0;
  position: static; /* Resetuje position: relative */
  left: auto; /* Resetuje left: 50% */
  transform: none; /* Resetuje transform: translateX(-50%) */
}

.menu-item:hover .menu-item-title h3 {
  color: var(--accent-color);
}

.allergens {
  font-size: 0.9rem;
  color: #845700;
  font-weight: 600;
  background: none;
  padding: 0;
  border-radius: 0;
  display: inline;
  margin-left: 10px;
}

/* Ensure all allergens are in parentheses consistently */
.allergens:not(:empty)::before {
  content: "(";
}

.allergens:not(:empty)::after {
  content: ")";
}

.menu-item-price {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--primary-color);
  position: absolute;
  bottom: 60px;
  right: 40px;
}

.menu-item p {
  color: var(--text-darker);
  font-size: 0.95rem;
  padding: 0;
  margin-top: 5px;
  margin-left: 0;
}

/* Tlačítko pro přidání na talíř */
.order-btn {
  position: absolute;
  right: 15px;
  bottom: 15px;
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.order-btn:hover { 
  background: var(--accent-hover); 
  transform: translateY(-3px) scale(1.05);
}

.order-btn i { 
  font-size: 1.3rem; 
}

/* Stylování košíku */
.plate {
  position: fixed;
  bottom: auto;
  right: 20px;
  top: 130px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-light);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  z-index: 1000;
}

.plate:hover {
  transform: scale(1.1);
  background: var(--background-lighter);
}

.plate-counter {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}

/* Toast notifikace */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  z-index: 1001;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  max-width: 300px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Toast na mobilních zařízeních */
@media screen and (max-width: 768px) {
  .toast {
    right: 50%;
    transform: translateX(50%) translateY(100px);
    bottom: 30px;
    max-width: 90%;
    text-align: center;
  }
  
  .toast.show {
    transform: translateX(50%) translateY(0);
  }
}

/* Vyskakovací košík */
.plate-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1002;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.plate-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.plate-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 20px;
}

.plate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.plate-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

.plate-items { margin-bottom: 20px; }

.plate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.plate-total {
  font-weight: bold;
  text-align: right;
  font-size: 1.2rem;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 2px solid var(--secondary-color);
}

.plate-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

/* Patička */
footer {
  background: var(--primary-color);
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  width: 100%;
}

/* Výzva k akci (CTA) */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color), #950a00);
  color: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  animation: subtlePulse 3s infinite ease-in-out; /* Přidání pulzující animace */
}

/* Definice pulzující animace */
@keyframes subtlePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-banner p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.cta-btn.secondary {
  background-color: white;
  color: var(--primary-color);
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Vylepšená sekce rozvozu */
.delivery-info {
  background: linear-gradient(to bottom, var(--background-light), #fff);
  border: 2px dashed var(--primary-color);
  padding: 30px;
  margin: 40px auto;
  border-radius: 15px;
  max-width: 900px;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.delivery-info h3 {
  margin-bottom: 25px;
  font-size: 2rem;
  text-align: center;
  color: var(--primary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.delivery-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.delivery-item {
  flex: 1 1 calc(50% - 20px);
  display: flex;
  gap: 15px;
  padding: 15px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Přidání přechodů */
}

/* Hover efekt pro dlaždice */
.delivery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.delivery-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.delivery-item h4 {
  margin: 0 0 10px 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.delivery-item p {
  margin: 0;
  line-height: 1.4;
}

.delivery-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.delivery-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.phone-number-big {
  text-align: center;
  margin: 25px 0;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 15px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.phone-number-big:hover {
  background-color: #3ca041; /* Tmavší zelená barva při najetí */
  transform: scale(1.05);
}

.phone-number-big i {
  margin-right: 10px;
  /* Odstraněna animace: animation: pulse 2s infinite; */
}

.phone-number-big a {
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease; /* Přidání přechodu pro barvu pozadí */
}

/* Hover efekt pro telefonní číslo - zezelenání */
.phone-number-big:hover {
  background-color: #3ca041; /* Tmavší zelená barva při najetí */
}

/* Odebrání specifického hover stylu pro samotný odkaz uvnitř */
.phone-number-big a:hover {
  text-decoration: none; /* Již není potřeba, celý div má hover */
}

/* Responzivní úpravy */
@media screen and (max-width: 768px) {
  .cta-banner h2 {
    font-size: 1.8rem;
  }
  
  .cta-banner p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
  
  .delivery-item {
    flex: 1 1 100%;
  }
  
  .delivery-icon {
    font-size: 1.5rem;
  }
  
  .phone-number-big {
    font-size: 1.3rem;
    padding: 12px;
  }
  
  /* Úpravy pro menu položky na mobilech */
  .menu-item {
    padding-bottom: 60px; /* Více prostoru pro Na talíř tlačítko */
  }
  
  .menu-item p {
    margin-bottom: 30px;
  }
  
  /* Zvětšení tlačítek a fontů na mobilech */
  .btn, .btn-primary {
    font-size: 1.1rem;
    padding: 12px 20px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  
  .order-btn {
    font-size: 1rem;
    padding: 10px 15px;
  }
  
  .burger-video-container {
    margin-bottom: 20px;
  }
  
  .video-overlay h2 {
    font-size: 1.5rem;
  }
  
  .video-overlay p {
    font-size: 0.9rem;
  }
}

/* Mapa */
.map-container {
  width: 100%;
  height: 400px;
  margin: 30px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Sociální sítě */
.social-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Lokace */
.location {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  font-weight: bold;
}

.location i {
  margin-right: 10px;
  color: var(--primary-color);
}

/* Animace */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.reveal { visibility: visible; }
.content-section { margin-top: 20px; }
.about-section {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(145deg, #fff2cc, #ffb366);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(232, 90, 25, 0.2);
  max-width: 1000px;
  margin: 40px auto;
  border-left: 6px solid #E85A19;
  overflow: hidden;
  z-index: 1;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url('images/texture.jpg') center/cover no-repeat; */
  opacity: 0.08;
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-section h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #E85A19;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #E85A19;
}

.about-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
  font-family: 'Montserrat', sans-serif;
}

.owner-signature {
  text-align: right;
  font-style: italic;
  font-size: 1.3rem;
  margin-top: 30px;
  color: #E85A19;
  font-weight: 600;
}

.about-content::before {
  content: '❤';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: #e85a19;
  background-color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 15px;
    margin: 40px auto;
  }
  
  .about-content {
    padding: 30px 20px;
  }
  
  .about-section h2 {
    font-size: 2.2rem;
  }
  
  .about-section p {
    font-size: 1.1rem;
  }
  
  .about-content::before {
    top: -15px;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}

.phone-number {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 10px;
  color: var(--primary-color);
}

/* Styly pro formulář objednávky */
.order-form {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.order-form.show {
  opacity: 1;
  height: auto;
  overflow: visible;
  margin-top: 20px;
}

/* Kroky objednávky */
.order-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32%;
  opacity: 0.6;
  transition: var(--transition);
}

.step.active { opacity: 1; }
.step.completed { opacity: 0.8; }

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  margin-bottom: 5px;
  transition: var(--transition);
}

.step.active .step-number {
  background-color: #ff5722;
  transform: scale(1.1);
}

.step.completed .step-number { background-color: #4CAF50; }
.step-title { font-size: 14px; text-align: center; }

/* Progress bar */
.progress-container {
  background-color: #f1f1f1;
  height: 6px;
  border-radius: 3px;
  margin-bottom: 25px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #ff5722;
  transition: width 0.3s ease;
}

/* Sekce formuláře */
.form-section {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.form-section.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Skupiny formuláře */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff5722;
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
  outline: none;
}

/* Validace formuláře */
.form-group.error input,
.form-group.error select,
.form-group.error textarea { 
  border-color: #f44336; 
  background-color: rgba(244, 67, 54, 0.05);
}

.validation-message {
  display: none;
  color: #f44336;
  font-size: 12px;
  margin-top: 5px;
}

.form-group.error .validation-message { 
  display: block; 
}

.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
  border-color: #4CAF50;
  background-color: rgba(76, 175, 80, 0.05);
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-check input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent-color);
}

.form-check label {
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: var(--primary-color);
}

.form-check.error {
  border: 1px solid #f44336;
  background-color: rgba(244, 67, 54, 0.05);
}

.form-check.error .validation-message {
  display: block;
  margin-top: 8px;
  margin-left: 30px;
}

/* Navigační tlačítka */
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.next-btn, .back-btn, .submit-btn, .cancel-order-btn {
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  color: white;
}

.next-btn { background-color: var(--accent-color); }
.next-btn:hover { background-color: var(--accent-hover); }
.back-btn { background-color: var(--primary-color); }
.back-btn:hover { background-color: #8a0900; }
.submit-btn { background-color: #2ecc71; }
.submit-btn:hover { background-color: #27ae60; }
.cancel-order-btn { background-color: #dc3545; }
.cancel-order-btn:hover { background-color: #c82333; }

/* Vylepšení objednávkového formuláře pro krok 3 */
.form-section[data-section="3"] .form-navigation {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.form-section[data-section="3"] .form-navigation button {
  flex: 1 1 auto;
  min-width: 120px;
}

/* Vylepšení vzhledu souhrnu objednávky */
.order-summary, .cost-summary {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.summary-title {
  color: var(--primary-color);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 5px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 5px 0;
  border-bottom: 1px dashed #ddd;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.grand-total {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Validační styly */
.valid-input {
  border-color: #28a745 !important;
  background-color: rgba(40, 167, 69, 0.05) !important;
}

.invalid-input {
  border-color: #dc3545 !important;
  background-color: rgba(220, 53, 69, 0.05) !important;
}

/* Návrhy adres */
.suggestions-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 5px 5px;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: none;
}

.suggestion-item, .suggestion {
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.suggestion-item:hover, .suggestion:hover { background-color: #f9f9f9; }
.suggestion-item.selected { background-color: var(--secondary-color); color: var(--primary-color); }

/* Specifické styly */
#cityContainer input {
  background-color: #fff;
  color: var(--text-dark);
  cursor: text;
  font-weight: normal;
  border-color: #ddd;
}

#deliveryCity { border-color: #ddd; }

/* Responzivní design */
@media screen and (max-width: 768px) {
  .logo-container {
    gap: 10px;
  }
  
  .header-mascot {
    height: 70px;
  }
  
  header h1, .fixed-header h1 {
    font-size: 2.8rem; /* Sníženo o ~30% z původních 4rem */
    padding: 10px 15px;
    /* text-align: center; Removed, handled by parent and !important */
  }
  
  .header-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn { padding: 10px 18px; font-size: 1rem; }
  h2 { font-size: 1.6rem; }
  .menu-item h3 { font-size: 1rem; }
  .menu-item p { font-size: 0.85rem; margin-left: 0; }
  section { padding: 40px 16px; }
  .menu-item img { width: 60px; height: 60px; margin-right: 10px; }
  .menu-item-title h3 { font-size: 1rem; }
  .map-container { height: 300px; }
  .step-title { font-size: 12px; }
  
  .form-navigation {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-navigation button { width: 100%; padding: 10px 15px; font-size: 14px; }
  .form-group label { font-size: 14px; }
  
  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group select,
  .form-group textarea { padding: 10px; font-size: 14px; }
  
  .plate-modal { padding: 10px; }
  .plate-content { max-width: 100%; }
  
  /* Místo toho ponecháme video zobrazené a zajistíme správnou velikost */
  .burger-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .burger-video-container {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  section { padding: 50px 30px; }
  .menu-item { padding: 12px; padding-bottom: 45px; }
  .order-btn { padding: 6px 12px; }
}

/* Třída pro položky bez obrázku */
.menu-item.no-image p {
  margin-left: 0;
}

.btn { background: var(--primary-color); }
.btn-primary { 
  background: var(--accent-color); 
  font-weight: bold;
}

.btn:hover, .btn-primary:hover, .order-btn:hover, .next-btn:hover, .back-btn:hover, .submit-btn:hover, .cancel-order-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover { background: var(--accent-hover); }

/* Hlavní navigace */
.main-nav {
  background-color: var(--primary-color);
  padding: 11px 20px; /* Adjusted from 15px */
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 990;
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: block;
}

.nav-menu a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-menu a.active {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* Responzivní design pro navigaci */
@media screen and (max-width: 768px) {
  .main-nav {
    padding: 14px 15px; /* Adjusted from 20px */
    position: relative;
    min-height: 42px; /* Adjusted from 60px */
  }
  
  .hamburger-menu {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--primary-color);
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 989;
  }
  
  .nav-menu.active {
    max-height: 300px;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  
  .nav-menu a {
    padding: 15px;
    width: 100%;
    display: block;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Animated hamburger button */
  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Místo toho ponecháme video zobrazené a zajistíme správnou velikost */
  .burger-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .burger-video-container {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
  }
}

/* Popis menu pro SEO */
.menu-description {
  position: relative;
  padding: 30px 35px;
  margin: 30px auto 40px;
  background: linear-gradient(145deg, #fff2cc, #ffb366);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(232, 90, 25, 0.2);
  max-width: 1000px;
  border-left: 6px solid #E85A19;
  overflow: hidden;
  z-index: 1;
}

.menu-description::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 15px;
  width: 50px;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23E85A19" d="M464 256H48a48 48 0 0 0 0 96h416a48 48 0 0 0 0-96zm16 128H32a16 16 0 0 0-16 16v16a64 64 0 0 0 64 64h352a64 64 0 0 0 64-64v-16a16 16 0 0 0-16-16zM58.64 224h394.72c34.57 0 54.62-43.9 34.82-75.88C448 83.2 359.55 32.1 256 32c-103.54.1-192 51.2-232.18 116.11C4 180.09 24.07 224 58.64 224zM384 112a16 16 0 1 1-16 16 16 16 0 0 1 16-16zm0 128a16 16 0 1 1-16 16 16 16 0 0 1 16-16zm-128 0a16 16 0 1 1-16 16 16 16 0 0 1 16-16z"/></svg>') no-repeat center center;
  background-size: contain;
  z-index: 10;
  transform: rotate(-15deg);
  opacity: 0.8;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.menu-description::after {
  content: '';
  position: absolute;
  bottom: 15px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23E85A19" d="M296 464c-8.8 0-16-7.2-16-16V352H48c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h232V48c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v416c0 8.8-7.2 16-16 16h-48zm72-320h-32V96h32v48zm0 64h-32v-32h32v32zm0 64h-32v-32h32v32zm0 64h-32v-32h32v32zm0 64h-32v-32h32v32zm112-208v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16zm48 88v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16zm0-144v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16zM480 192h-32c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0 144h-32c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"/></svg>') no-repeat center center;
  background-size: contain;
  z-index: -1;
  transform: rotate(5deg);
  opacity: 0.15;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.menu-description h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #E85A19;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.menu-description p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #333;
  position: relative;
  padding-left: 20px;
}

.menu-description p::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #E85A19;
  font-size: 1.5rem;
}

.menu-description p:last-child {
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  padding-left: 0;
  margin-top: 20px;
  color: #E85A19;
}

.menu-description p:last-child::before {
  display: none;
}

@media screen and (max-width: 768px) {
  .menu-description {
    padding: 25px 20px;
    margin: 20px 10px 30px;
  }
  
  .menu-description h3 {
    font-size: 2rem;
  }
  
  .menu-description p {
    font-size: 1.3rem;
    padding-left: 15px;
  }
  
  .menu-description p:last-child {
    font-size: 1.4rem;
  }
  
  .menu-description::before,
  .menu-description::after {
    width: 40px;
    height: 40px;
  }
}

/* Fotogalerie */
.gallery-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  position: relative;
}

.gallery-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  color: #333;
}

.gallery-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #E85A19;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6) 80%, transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-caption {
  transform: translateY(0);
}

.gallery-item-caption h3 {
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.gallery-item-caption p {
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 0 15px;
  }
  
  .gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

/* FAQ Sekce */
.faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 40px auto;
  width: 100%;
  background-color: #fff9e6;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-size: 2.4rem;
  position: relative;
}

.faq-section h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: var(--secondary-color);
  margin: 15px auto 0;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--background-light);
  transition: background-color 0.3s;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question:hover {
  background-color: var(--secondary-color);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #000000;
  font-weight: bold;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  transition: transform 0.3s, background-color 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background-color: var(--accent-color);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  background-color: white;
  margin-top: 5px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--accent-color);
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #333333;
  font-size: 1.05rem;
}

/* Úprava odsazení obsahu */
.content-section {
  margin-top: 20px;
}

/* Kontaktní sekce */
.contact-section {
  padding: 60px 20px;
  margin: 40px auto;
  background-color: #fff9e6;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.contact-section h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: stretch;
}

.contact-info {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 500px;
}

.contact-form {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 500px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color);
  text-align: left;
}

.map-container {
  margin-top: 40px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 22px;
  color: white;
  margin-right: 15px;
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(110, 7, 0, 0.2);
}

.contact-item h3 {
  margin: 0 0 5px;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.contact-item p {
  margin: 0;
  line-height: 1.5;
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
}

.contact-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background-color: var(--accent-color);
  transform: scale(1.1);
}

.contact-form h3 {
  margin: 0 0 25px;
  color: var(--primary-color);
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.contact-form h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

#contactForm .form-group {
  margin-bottom: 20px;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-size: 1rem;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(110, 7, 0, 0.1);
}

.contact-submit {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 28px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-submit:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.4s ease;
  z-index: -1;
}

.contact-submit:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.contact-submit:hover:before {
  left: 100%;
}

/* Responzivní design pro kontaktní sekci */
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 40px 15px;
    margin: 30px 15px;
  }
  
  .contact-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .contact-form {
    padding: 20px;
    width: 100%;
  }
  
  .contact-info {
    width: 100%;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .contact-item h3 {
    font-size: 1.1rem;
  }
  
  .contact-submit {
    padding: 12px 20px;
  }
  
  .map-container {
    margin-top: 30px;
    height: 250px;
  }
}

#contactForm label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-icon {
  color: var(--primary-color);
  margin-right: 5px;
  width: 18px;
  text-align: center;
}

.home-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease;
  line-height: 1;
}

.home-link:hover {
  transform: scale(1.05);
  color: inherit;
  text-decoration: none;
}

/* Patička - právní odkazy */
.legal-links {
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.legal-link {
  color: #ffcc00;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  padding: 3px 0;
  position: relative;
}

.legal-link:hover {
  color: white;
}

.legal-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffcc00;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.legal-link:hover::after {
  transform: scaleX(1);
}

/* Modální okna pro právní dokumenty */
.legal-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow: auto;
}

.legal-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  max-height: 80%;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.legal-modal-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
}

.legal-modal-close:hover {
  color: var(--primary-color);
}

.legal-modal h2 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.legal-modal-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.legal-modal-text h3 {
  color: var(--accent-color);
  margin: 20px 0 10px;
}

.legal-modal-text p, .legal-modal-text ul, .legal-modal-text ol {
  margin-bottom: 15px;
}

.legal-modal-text ul, .legal-modal-text ol {
  padding-left: 20px;
}

.legal-modal-text li {
  margin-bottom: 5px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.95);
  color: white;
  padding: 15px;
  z-index: 1999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.cookie-btn.accept {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.cookie-btn.more {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  text-decoration: none;
}

.cookie-btn.accept:hover {
  background-color: var(--accent-color);
}

.cookie-btn.more:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responzivní design pro právní obsah */
@media screen and (max-width: 768px) {
  .legal-modal-content {
    width: 95%;
    margin: 5% auto;
    padding: 20px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .legal-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.slogan {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  .slogan {
    font-size: 1rem;
    margin: 5px 15px;
  }
}

.nav-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 20px;
  position: static;
}

.nav-button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #eee;
}

.nav-button:hover, .nav-button:focus {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  background-color: #ffcc00;
  color: #333;
}

.nav-button i {
  margin-right: 8px;
}

.cta-phone {
  background-color: #4CAF50;
  color: white;
}

.cta-order {
  background-color: #E85A19;
  color: white;
}

.cta-phone:hover, .cta-phone:focus {
  background-color: #45a049;
  color: white;
}

.cta-order:hover, .cta-order:focus {
  background-color: #D14813;
  color: white;
}

@media (max-width: 768px) {
  .nav-button {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .call-text, .order-text {
    display: none;
  }
  
  .nav-button i {
    margin-right: 0;
  }
  
  .cta-phone, .cta-order {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
}

/* Podpora pro omezený pohyb */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .gallery-item:hover {
    transform: none !important;
  }
  
  .gallery-item:hover img {
    transform: none !important;
  }
  
  .gallery-item-caption {
    transform: none !important;
    opacity: 1 !important;
  }
  
  .nav-button:hover {
    transform: none !important;
  }
}

/* Styly pro "Více" tlačítko a rozbalovací obsah */
.more-btn {
  display: none;
  background-color: transparent;
  border: none;
  color: #E85A19;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
  padding: 5px 15px;
  border-radius: 20px;
  border: 1px solid #E85A19;
  transition: all 0.3s ease;
}

.more-btn:hover {
  background-color: #E85A19;
  color: white;
}

.more-btn i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.more-btn.active i {
  transform: rotate(180deg);
}

/* Na PC zobrazíme vše */
@media screen and (min-width: 769px) {
  .more-content {
    display: block;
  }

  .more-btn {
    display: none;
  }
}

/* Na mobilních zařízeních skryjeme obsah a zobrazíme tlačítko */
@media screen and (max-width: 768px) {
  .more-content {
    display: none;
    animation: fadeIn 0.5s ease;
  }
  
  .more-content.show {
    display: block;
  }
  
  .more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Intro text má větší padding dole, když je skrytý obsah */
  .intro-text {
    padding-bottom: 5px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Styl pro tlačítko "Váš talíř" */
.plate-button {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E85A19;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1001;
}

.plate-button:hover {
  background-color: #d04100;
  transform: translateX(-50%) translateY(-2px);
}

.plate-button i {
  margin-right: 6px;
  font-size: 1rem;
}

.plate-count {
  background-color: white;
  color: #E85A19;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .plate-button {
    bottom: -30px;
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* Animace pro počítadlo na talíři */
@keyframes plateCountAnimation {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

.plate-animation {
  animation: plateCountAnimation 0.3s ease;
}

/* Odstraním původní způsob zobrazení plamínku */
.popular-item::after {
  content: none;
}

/* Odstraním původní způsob zobrazení hvězdičky */
.popular-item .allergens::after {
  content: ")";
  color: #845700;
  font-size: 14px;
  margin-left: 4px;
  vertical-align: middle;
}

/* Odstraním původní způsob zobrazení plamínku */
.spicy-item .allergens::after {
  content: ")";
  color: #845700;
  font-size: 14px;
  margin-left: 4px;
  vertical-align: middle;
}

.popular-item::after {
  content: none;
}

.menu-item {
  position: relative;
}

.star-icon {
  color: #FFD700;
  text-shadow: 0 0 2px #000, 0 0 3px rgba(0,0,0,0.5);
  margin-left: 5px;
  vertical-align: middle;
  font-size: 14px;
}

.fire-icon {
  color: #ff4500;
  margin-left: 5px;
  vertical-align: middle;
  font-size: 14px;
}

/* Hamburger menu */
.hamburger-menu {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.hamburger-menu:focus {
  outline: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Responzivní design pro navigaci */
@media screen and (max-width: 768px) {
  .main-nav {
    padding: 14px 15px;
    position: relative;
    min-height: 42px;
  }
  
  .hamburger-menu {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--primary-color);
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 989;
  }
  
  .nav-menu.active {
    max-height: 300px;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  
  .nav-menu a {
    padding: 15px;
    width: 100%;
    display: block;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Animated hamburger button */
  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Místo toho ponecháme video zobrazené a zajistíme správnou velikost */
  .burger-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .burger-video-container {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
  }
}

/* Hover effect pro telefonní číslo */
a[href^="tel:+420739106970"] {
  color: #000;
  text-decoration: none;
  display: inline-block;
}

a[href^="tel:+420739106970"]:hover {
  text-decoration: none;
}

/* Vylepšení responzivity formuláře pro mobilní zařízení */
@media screen and (max-width: 480px) {
  .form-section {
    padding: 15px;
  }
  
  .form-navigation {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-navigation button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
  
  .step-title {
    font-size: 0.8rem;
  }
  
  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 0.9rem;
  }
  
  .validation-message {
    font-size: 0.8rem;
  }
  
  .order-summary {
    padding: 10px;
  }
  
  .summary-item {
    font-size: 0.9rem;
    padding: 8px 0;
  }
  
  .grand-total {
    font-size: 1.1rem;
    padding: 10px 0;
  }
  
  .plate-modal .plate-content {
    width: 95%;
    max-height: 90vh;
    padding: 15px;
  }
  
  .plate-header h3 {
    font-size: 1.2rem;
  }
}

/* Vylepšení tlačítka pro odeslání objednávky */
.submit-btn {
  background-color: #2ecc71;
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
  background-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.submit-btn:disabled {
  background-color: #95a5a6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-btn i {
  font-size: 1rem;
}

@media screen and (max-width: 480px) {
  .form-section[data-section="3"] .form-navigation {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-section[data-section="3"] .form-navigation button {
    width: 100%;
  }
  
  .submit-btn {
    order: -1; /* Přesunout tlačítko odeslat nahoru v mobilním zobrazení */
    padding: 15px;
    font-size: 1.1rem;
  }
}

/* Vylepšení tlačítka Pokračovat */
.next-btn {
  background-color: var(--accent-color);
  color: white;
  font-weight: bold;
  padding: 12px 24px !important;
  font-size: 1.1rem !important;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.next-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.next-btn i {
  margin-left: 8px;
  font-size: 1rem;
}

.next-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Styling for the added header line art */
.logo-container h1 a span:first-child {
  position: relative; /* Container for absolute positioning */
  display: inline-block !important; /* Ensure inline-block to define bounding box */
}

.header-line-art {
  position: absolute;
  top: -15px;  /* Adjust as needed */
  left: 100%; /* Position to the right of the parent span */
  margin-left: 20px; /* Spacing between text and line art */
  width: 80px; /* Adjust size as needed */
  height: auto;
  pointer-events: none; /* Make image non-interactive */
  z-index: -1; /* Dáno do pozadí za text */
}

/* Responsive adjustments for line art if needed */
@media screen and (max-width: 768px) {
  .header-line-art {
    top: -10px;
    left: 100%; /* Position to the right of the parent span */
    margin-left: 10px; /* Spacing on tablet */
    width: 60px;
  }
}

@media screen and (max-width: 480px) {
  .header-line-art {
    top: -8px;
    left: 100%; /* Position to the right of the parent span */
    margin-left: 5px; /* Spacing on mobile */
    width: 45px;
  }
}

/* kontejner banneru */
.banner {
  background-color: #FFC800;      /* žluté pozadí */
  text-align: center;             /* centrovaný text */
  padding: 20px 0;                /* vertikální odsazení */
  position: relative;
}

/* hlavní nadpis BURGERS */
.banner .title {
  display: inline-block;
  font-family: 'Luckiest Guy', cursive;
  font-size: 3rem;
  text-transform: uppercase;
  color: #333;
  background-color: #FF9500;       /* oranžový tvar za textem */
  padding: 0.2em 0.6em;
  margin: 0;
  position: relative;
  top: -5px;                       /* malý shift nahoru */
  transform: rotate(-2deg);        /* lehce nakloněno */
  z-index: 1;
  border-radius: 10px;            /* zaoblené okraje */
}

/* podnadpis „z domácích housek" */
.banner .subtitle {
  font-family: sans-serif;
  font-size: 1rem;
  text-transform: lowercase;
  color: #333;
  margin: 0.2em 0 0;
  font-size: 1.4rem;              /* větší text */
  font-weight: bold;              /* tučný text */
}

/* přidání „čárek" (tři linky) po stranách hlavního nadpisu */
.banner .title::before,
.banner .title::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 4px;
  background-color: #333;
  margin: 0 15px;
  /* vytvoříme tři linky pomocí stínu */
  box-shadow:
    0   8px 0 #333,
    0  -8px 0 #333;
}

/* Upravení zobrazení banneru na mobilních zařízeních */
@media screen and (max-width: 768px) {
  .banner .title {
    font-size: 2.2rem;
    padding: 0.2em 0.4em;
  }
  
  .banner .title::before,
  .banner .title::after {
    width: 20px;
    margin: 0 10px;
  }
  
  .banner .subtitle {
    font-size: 1.1rem;
  }
}

.logo-container .logo-text .letter-o {
  position: relative;
  display: inline-block;
  font-family: 'Luckiest Guy', cursive; /* Stejný font jako h1 */
  text-transform: uppercase; /* Stejné jako h1 */
  font-size: inherit; /* Zdědí velikost písma od rodiče */
  color: #D71F2A; /* Barva písma z h1 */
  line-height: 1; /* Zajistí, aby bylo "O" čtvercové */
  z-index: 2; /* Stejné jako h1 */
}

.logo-container .logo-text .letter-o::before,
.logo-container .logo-text .letter-o::after {
  content: "";
  position: absolute;
  background-color: #D71F2A;
  border-radius: 0;
}

/* výchozí (desktop) */
.logo-container .logo-text .letter-o::before {
  width: 0.8em;
  height: 0.15em;
  top: -0.05em;
  left: 0.1em;
}
.logo-container .logo-text .letter-o::after {
  width: 0.15em;
  height: 0.8em;
  top: -0.05em;
  left: calc(0.1em + 0.8em);
}

/* tablet (do 768px) */
@media screen and (max-width: 768px) {
  .logo-container .logo-text .letter-o::before {
    width: 0.6em;      /* menší pruh */
    height: 0.12em;    /* tenčí */
    top: -0.04em;      /* méně nahoru */
    left: 0.08em;      /* méně od kraje */
  }
  .logo-container .logo-text .letter-o::after {
    width: 0.12em;
    height: 0.6em;
    top: -0.04em;
    left: calc(0.08em + 0.6em);
  }
}

/* mobil (do 480px) */
@media screen and (max-width: 480px) {
  .logo-container .logo-text .letter-o::before {
    width: 0.5em;
    height: 0.1em;
    top: -0.03em;
    left: 0.06em;
  }
  .logo-container .logo-text .letter-o::after {
    width: 0.1em;
    height: 0.5em;
    top: -0.03em;
    left: calc(0.06em + 0.5em);
  }
}

@media screen and (max-width: 768px) {
  /* existing code */
  .fixed-header {
    width: 100%; /* Vráceno na původní šířku 100% */
  }
}

@media screen and (max-width: 480px) {
  /* existing code */
  .fixed-header {
    width: 100%; /* Vráceno na původní šířku 100% */
  }
}

.fixed-header .header-mascot-left {
  height: 120px; /* Vráceno na původní 120px */
  width: auto;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  margin-right: 5px;
}

.fixed-header .header-mascot-left:hover {
  transform: scale(1.1) rotate(-5deg);
}

/* Zajistím, aby speciální stylování písmene O fungovalo i v fixed-headeru */
.fixed-header .logo-container .logo-text .letter-o {
  position: relative;
  display: inline-block;
  font-family: 'Luckiest Guy', cursive;
  text-transform: uppercase;
  font-size: inherit;
  color: #D71F2A;
  line-height: 1;
  z-index: 2;
  transition: color 0.3s ease;
}

.fixed-header .logo-container .logo-text .letter-o::before,
.fixed-header .logo-container .logo-text .letter-o::after {
  content: "";
  position: absolute;
  background-color: #D71F2A;
  border-radius: 0;
}

.fixed-header .logo-container .logo-text .letter-o::before {
  width: 0.6em;
  height: 0.12em;
  top: -0.05em;
  left: 0.1em;
}

.fixed-header .logo-container .logo-text .letter-o::after {
  width: 0.12em;
  height: 0.6em;
  top: -0.05em;
  left: calc(0.1em + 0.6em);
}

.fixed-header .logo-container:hover .logo-text,
.fixed-header .logo-container:hover .logo-text .letter-o {
  color: var(--accent-color);
}

/* Add dynamic sizing for sticking header mascots based on header height */
.fixed-header .header-mascot,
.fixed-header .header-mascot-left {
  max-height: var(--sticky-header-height);
  height: auto; /* override fixed heights and scale with header */
}
