/* Päta stránky */
.site-footer {
  background-color: var(--dark-bg-color);
  color: var(--light-text-color);
  padding: 60px 0 20px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-widget h4 {
  color: var(--light-text-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-widget p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--light-text-color);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-icon {
  display: block;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.social-icon:hover {
  background-color: var(--primary-color);
}

.social-icon.facebook {
  background-image: url('../images/icons/social/facebook.svg');
}

.social-icon.twitter {
  background-image: url('../images/icons/social/twitter.svg');
}

.social-icon.instagram {
  background-image: url('../images/icons/social/instagram.svg');
}

.social-icon.linkedin {
  background-image: url('../images/icons/social/linkedin.svg');
}

address p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

address i {
  margin-right: 10px;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.location-icon {
  background-image: url('../images/icons/contact/location.svg');
}

.phone-icon {
  background-image: url('../images/icons/contact/phone.svg');
}

.email-icon {
  background-image: url('../images/icons/contact/email.svg');
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responzívny dizajn pre pätu stránky */
@media (max-width: 992px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-widgets {
    grid-template-columns: 1fr;
  }
}
