

.footer {
  margin-top: 120px;
  background: #4e4339;
  padding: 60px 8% 30px;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
}

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

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

.footer-nav a {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  transition: 0.3s ease;
}

.footer-nav a:hover {
  color: #d1d1d1;
  transform: translateX(3px);
}

.footer-line {
  margin: 40px auto;
  border: 0;
  border-top: 1px solid rgba(189, 189, 189, 0.15);
  max-width: 1200px;
}

.footer-links-bottom {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links-bottom a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.footer-links-bottom a:hover {
  color: #e2e2e2;
  border-bottom: 1px solid #c2c2c2;
}

.footer-bottom {
  text-align: center;
  font-size: 15px;
  color: #ffffff;
}

/* --- Mobilní styly --- */
@media (max-width: 760px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-links-bottom {
    display: flex;           /* flex container */
    flex-direction: column;  /* položky ve sloupci */
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

/* --- Styly odkazů ve footeru --- */
.footer-bottom a,
.footer-bottom a:visited,
.footer-bottom a:hover,
.footer-bottom a:active {
  color: inherit !important;
  text-decoration: none !important;
  transition: 0.3s ease;
}

.footer-bottom a:hover {
  color: #bbbbbb !important;       /* jemné ztmavení na hover */
  transform: translateX(3px);      /* decentní efekt posunu */
}
