/* Základní styly patičky */
.footer-section {
  background-color: #f7f7f7;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #e0e0e0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Dropdown řádek */
.footer-dropdown-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

/* Dropdown kontejner */
.footer-dropdown {
  position: relative;
  display: inline-block;
}

.footer-dropbtn {
  background-color: #fff;
  color: #333;
  padding: 10px 16px;
  font-size: 14px;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 4px;
}

.footer-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
  z-index: 999;
  border-radius: 4px;
}

.footer-dropdown-content a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}

.footer-dropdown-content a:hover {
  background-color: #f0f0f0;
}

/* Zobraz dropdown při hoveru */
.footer-dropdown:hover .footer-dropdown-content {
  display: block;
}

/* Standardní sloupce v patičce */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
}

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

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #0074e4;
}

/* Sociální ikony */
.footer-social a {
  display: inline-block;
  margin-right: 10px;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

/* Vycentrování konkrétního bloku 'Sledujte nás' */

.footer-column.social-center h4 {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}




.footer-column.social-center .footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}


/* Dolní část patičky */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* Responzivita - menší zařízení */
@media (max-width: 600px) {
  .footer-dropdown-row {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-dropbtn {
    width: 100%;
    text-align: center;
  }
  
  .footer-dropdown-content {
    position: static;
    box-shadow: none;
    margin-top: 8px;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }
}
/* =========================
   SEO odkazy v patičce
========================= */
.footer-seo-links {
    width: 100%;
    text-align: center;
    font-size: 13px;
    margin: 15px 0;
    color: #666;
}

.footer-seo-links a {
    color: #555;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-seo-links a:hover {
    color: #0074e4;
    text-decoration: underline;
}

.footer-seo-links span {
    margin: 0 6px;
    color: #aaa;
}
