.footer {
  background-color: #7e805d;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-socials {
  text-align: center;
}

.footer-socials h3 {
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-social-link {
  display: block;
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  opacity: 1;
}

.footer-social-icon {
  font-size: 1rem;
  color: white;
}

.footer-copyright {
  margin-top: 3rem;
  opacity: 0.8;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .footer-content {
      text-align: center;
  }
  
  .footer-logo {
      margin: 0 auto 1rem auto;
  }

  .footer-socials {
      text-align: center;
  }
}