/* ============ Footer ========== */
footer {
  background: var(--slate-600);
  margin-top: 5rem;
  padding-top: 3rem;
  color: var(--slate-100);
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__description {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--slate-400);
  max-width: 400px;
}

.link__container{
  display: flex;
  gap: 2rem;
  justify-content: left;
  align-items: center;
}

.footer__menu-link {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
}

.footer__link a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--slate-100);
  transition: all 0.3s ease;
}

.footer__link a:hover {
  color: #478dad;
  transform: translateY(-5px);
}


.footer__address {
  display: flex;
  flex-direction: column;
}

.footer__copyright {
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 1.5rem 0;
  background: rgba(0,0,0,0.05);
}

.copyright {
  font-size: 0.77rem;
  opacity: 0.8;
}


@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__container {
    grid-template-columns: repeat(4,1fr);
    text-align: left;
  }

  .footer__menu-link {
    align-items: flex-start;
  }
}