.footer {
  background: var(--black);
  color: var(--white);
  padding: 3.25rem 1.5rem;
}

.footer__container {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer__logo {
  margin-bottom: 3rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.footer__nav-elem {   
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}

.footer__desc {
  font-size: 1rem;
  line-height: 1.6rem;
  opacity: 0.5;
  margin-bottom: 3rem;
}

.footer__end {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer__copyright {
  font-size: 1rem;
  opacity: 0.5;
  font-weight: 700;
}

.footer__social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer__social-link {
  display: inline-block;
}

.footer__social-icon {
  width: 1.5rem;
  height: 1.5rem;
  filter: invert(1);
}


@media (min-width: 64rem) {
  .footer {
    padding-top: 5rem;
    padding-bottom: 3rem;
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .footer__container {
    text-align: left;
    position: relative;
  }

  .footer__logo {
    margin-bottom: 2.25rem;
  }

  .footer__nav {
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: row;
    gap: 2.25rem;
    margin-bottom: 0;
  }

  .footer__description {
    margin-bottom: 3.5rem;
    max-width: 35rem;
  }

  .footer__social {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 6.25rem;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
  }
}

.footer.bonbon-footer {
  background: var(--bon-pink);
}

.footer.bonbon-footer .footer__nav-elem {
  transition: color 0.3s ease;
}

.footer.bonbon-footer .footer__nav-elem:hover {
  color: var(--bon-cream);
}

.footer.bonbon-footer .footer__social-link {
  transition: opacity 0.3s ease;
}

.footer.bonbon-footer .footer__social-link:hover {
  opacity: 0.7;
}

.footer__logo-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  display: inline-block;
}
