/* Footer */
.site-footer {
  padding: 40px 120px 20px;
  max-width: 100%;
  margin: 0;
  font-family: "Outfit", "Outfit Placeholder", sans-serif;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 80px 40px;
  margin: 20px;
  background-color: #faf3ec;
  border-radius: 24px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social-link:hover {
  transform: scale(1.1);
  opacity: 0.7;
}

.footer-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  height: 80px;
  width: auto;
  max-width: 100%;
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  font-size: 14px;
  color: #ad9191;
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px 30px;
  }

  .footer-container {
    flex-direction: column;
    gap: 24px;
  }

  .footer-social {
    order: 1;
  }

  .footer-logo {
    order: 0;
  }

  .footer-copyright {
    text-align: center;
    order: 2;
  }
}
