.footer {
  color: #7E6761;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Top section - mobile first */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.footer-contact-item p {
  margin: 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.footer-contact-item img {
  width: 25px;
  height: 25px;
}

/* Brand logo */
.footer-brand img {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Social */
.footer-social {
  text-align: center;
}

.footer-social h3 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-social .social-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}

.footer-social .social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #7E6761;
  text-decoration: none;
}

.footer-social .social-links img {
  width: 25px;
  height: 25px;
}

/* Separator */
.footer-separator {
  margin: 2rem 0;
  border: none;
  border-top: 3px solid #7E6761;
  opacity: 1;
}

/* Bottom section */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a,
.footer-credit a {
  color: #7E6761;
  text-decoration: none;
}

/* Large screens */
@media (min-width: 769px) {
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
  }

  .footer-contact {
    text-align: left;
    align-items: flex-start;
  }

  .footer-social {
    text-align: right;
    align-items: flex-end;
  }

  .footer-social .social-links {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    gap: 2rem;
  }
}
