.footer {
  background: var(--colorPrimary);
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-size: 0.95rem;
  color: var(--colorTextPrimary);
}
.footer-wrapper{
      background-color: var(--colorBackground);
      width:100%;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
  gap: 2rem;
}

/* Levá část - odkazy */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--colorLowlight);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
  color: var(--colorTextPrimary);
  text-decoration: underline;
}

/* Pravá část - kontakty */
.footer-contact p {
  margin: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a {
  color: var(--colorLowlight);
  text-decoration: none;
}

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

/* Ikony */
.footer-contact svg {
  flex-shrink: 0;
  fill: var(--colorLowlight);
  transition: fill 0.2s ease-in-out;
}

.footer-contact a:hover svg {
  fill: var(--colorTextPrimary);
}

/* Sociální sítě */
.footer-contact .socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.footer-contact .socials a {
  display: flex;
  align-items: center;
}

.footer-contact .socials svg {
  fill: var(--colorLowlight);
}

.footer-contact .socials a:hover svg {
  fill: var(--colorTextPrimary);
}

/* Responzivita */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-contact p {
    justify-content: center;
  }
  .footer-contact, .footer-links{
      margin: 0 auto;
  }
}
