@import url(../root.css);

.footer {
  background-color: #fff;
  color: #fff;
  padding: 3rem 5% 2rem;
  font-family: 'Canva Sans', sans-serif;
  border-top: 2px solid #000;
}

.footer a {
  color: #000;
  text-decoration: none;
}

.footer a:hover {
  color: #000;
  text-decoration: underline;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #000;
}

.footer-column p,
.footer-column li {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  color: #000;
}

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

.footer-logo {
  max-height: 100px;
  margin-bottom: 1rem;
}

.footer-socials a {
  display: inline-block;
  margin-right: 0.6rem;
  font-size: 1.2rem;
  color: #000 !important;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #000 !important;
}

.footer-column i {
  margin-right: 0.5rem;
  color: #000 !important;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: left center;
  font-size: 0.85rem;
  color: #000;
}

.footer-bottom a {
  color: #000;
  text-decoration: none;
  margin: 0 0.4rem;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 2rem;
  }

  .footer-logo {
    max-height: 100px;
  }
}