.footerBackground {
  background-color: #2c0f3d;
}

.footer-column h3,
.footer-social h3 {
  color: #ffb0e0;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffb0e0;
}

.footerBackground {
  background-color: #3e014c;
  padding: 20px clamp(20px, 6vw, 96px);
  color: #fff6e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.container-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo {
  flex: 1 1 260px;
  display: flex;
  justify-content: space-evenly;
  min-width: 0;
}

.footer-logo img {
  width: min(300px, 100%);
  height: auto;
}

.footer-column {
  flex: 1 1 260px;
  text-align: center;
  min-width: 0;
}

.footer-column h3 {
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff6e0;
  margin-bottom: 15px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 25px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff6e0;
}

.footer-social {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.footer-social h3 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff6e0;
  margin-bottom: 10px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.footer-social-icons img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-social-icons img:hover {
  transform: scale(1.2);
}

.footer-contact {
  text-align: center;
  font-size: clamp(18px, 2.5vw, 25px);
  margin-top: 10px;
  line-height: 1.5;
}

.footer-contact p {
  margin: 6px 0;
  overflow-wrap: anywhere;
}

.footer-contact img {
  vertical-align: middle;
  margin-right: 6px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-contact a:hover {
  color: #fff6e0;
}

@media screen and (max-width: 768px) {
  .footerBackground {
    padding: 32px 20px;
  }

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

  .footer-logo {
    justify-content: center;
    margin-bottom: 0;
  }

  .footer-logo img {
    width: min(220px, 70vw);
  }

  .footer-social {
    margin-top: 0;
  }

  .footer-social h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .footer-social-icons {
    gap: 12px;
    margin-bottom: 12px;
  }

  .footer-social-icons img {
    width: 32px;
    height: 32px;
  }

  .footer-contact {
    font-size: 18px;
  }
}

@media screen and (max-width: 420px) {
  .footerBackground {
    padding: 28px 16px;
  }

  .footer-social h3 {
    font-size: 20px;
  }

  .footer-contact {
    font-size: 16px;
  }
}
