*,
*::before,
*::after {
  box-sizing: border-box;
}

.footer {
  background-color: var(--text-color);
  color: var(--text-color-light);
  padding-top: 3rem;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.footer__brand-logo {
  height: 40px;
  width: auto;
}

.footer__brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white-color);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1.5rem;
}

.footer__nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: var(--primary-color);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__social-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color-light);
}

.footer__social-icon {
    height: 30px;
    width: 30px;
    display: block;
}

.footer__credits {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
  .footer {
    padding-top: 2.5rem;
  }
  
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
  }

  .footer__nav {
    flex-direction: row;
    gap: 2rem;
  }
}