/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(135deg, #1a0a00 0%, #2a1500 100%);
  border-top: 1px solid rgba(139, 105, 20, 0.3);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

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

.footer-section h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section a {
  color: var(--text-light);
  font-size: 0.95rem;
  opacity: 0.85;
  transition: all 0.3s;
}

.footer-section a:hover {
  color: var(--gold);
  opacity: 1;
}

.footer-hours {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(139, 105, 20, 0.2);
  border: 1px solid rgba(139, 105, 20, 0.3);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(139, 105, 20, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  footer {
    padding: 2rem 0 1rem;
  }
}
