.footer-site {
  background-color: #111;
  color: #eee;
  padding: 3rem 1rem 1rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid #444;
}

.footer-container h3,
.footer-container h4 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
}

.footer-container a {
  color: #00bfa5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.footer-container a:hover {
  text-decoration: underline;
}

.credit-logo {
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-socials {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  filter: brightness(100%);
  transition: transform 0.2s ease;
}

.footer-socials img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}

/* social----------*/ 
.footer-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  align-items: center;
  justify-content: flex-start;
}

.footer-socials img {
  width: 42px;
  height: 42px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.footer-socials img:hover {
  opacity: 1;
  transform: scale(1.1);
}
