.footer {
  background-color: #462521;
  color: #ffffff;
  padding: 3rem 1rem 1rem;
}

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

.footer_content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer_section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer_title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #eca660;
  margin-bottom: 1rem;
}

.footer_title-link {
  color: #eca660;
  text-decoration: none;
}

.footer_title-link:hover {
  color: #c93b31;
}

.footer_text {
  color: #b7807c;
  line-height: 1.6;
}

.footer_contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer_contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b7807c;
  font-size: 1rem;
}

.contact_icon {
  font-size: 1.1rem;
  min-width: 1.5rem;
}

.opening_hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.opening_hours p {
  color: #b7807c;
  font-size: 1rem;
}

.opening_hours strong {
  color: #eca660;
}

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

.social_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 50%;
  background-color: rgba(236, 166, 96, 0.2);
  transition: all 0.3s ease;
}

.social_link:hover {
  background-color: #eca660;
  transform: scale(1.1);
}

/* If SVG icons are used */
.social_link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.social_link:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

.footer_bottom {
  border-top: 1px solid #593f3a;
  padding-top: 1.5rem;
}

.footer_legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer_legal p {
  color: #b7807c;
  font-size: 1rem;
  margin: 0;
}

.legal_links {
  display: flex;
  gap: 1.5rem;
}

.legal_link {
  color: #b7807c;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.legal_link:hover {
  color: #eca660;
}

/* Mobile */
@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 0.5rem 1rem;
  }

  .footer_content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer_section {
    text-align: center;
  }

  .footer_contact p {
    justify-content: center;
  }

  .social_links {
    justify-content: center;
  }

  .legal_links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 1rem;
  }

  .footer_content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .footer_legal {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .legal_links {
    justify-content: center;
  }
}
