/* --- CELKOVÝ FOOTER --- */
.site-footer {
  background: #fff;
  color: #111;
  padding: 70px 20px 30px;
  border-top: 1px solid #eee;
  font-family: 'Barlow', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

/* --- ODKAZY V TEXTU (KONEC MODRÉ A PODTRŽENÍ) --- */
.site-footer a {
  color: #111 !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease;
}

.footer-menu a:hover,
.footer-bottom a:hover {
  opacity: 0.6;
}

/* --- SEKCE A TEXTY --- */
.footer-logo img {
  max-width: 160px;
}

.footer-section h4 {
  font-family: 'VEND Sans', sans-serif;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-section p {
  margin: 6px 0;
  font-size: 15px;
}

/* --- SOCIÁLNÍ SÍTĚ (TVŮJ PŮVODNÍ STYL VČETNĚ HOVERU) --- */
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111 !important; /* Původní barva ikonky */
  transition: all 0.25s ease;
  opacity: 1 !important; /* Aby nefungoval ten globální hover opacity */
}

.footer-social a:hover {
  background: #111; /* Černé pozadí při najetí */
  color: #fff !important; /* Bílá ikonka při najetí */
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* -----------------------------------------------------------
   FOOTER BOTTOM - RESPONZIVNÍ LAYOUT (PC, TABLET, MOBIL)
-------------------------------------------------------------- */
.footer-bottom {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid #eee;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  /* Na PC: 3 sloupce (vlevo, střed, vpravo) */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* FALAFEL 26 - LEVÁ STRANA */
.footer-bottom-left {
  text-align: left;
  font-size: 14px;
}

/* GDPR & COOKIES - STŘED */
.footer-bottom-center {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
}

/* DESIGN & SYSTÉM - PRAVÁ STRANA */
.footer-bottom-right {
  text-align: right;
  font-size: 14px;
}

/* --- RESPONZIVITA --- */
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 15px 20px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    text-align: center;
    justify-content: center;
  }
}