/* Variables de color */
:root {
  --quarter-spanish-white: #f9f7ea;
  --gamboge: #df9908;
  --tacha: #d4b569;
  --russett: #735b56;
  --lucky: #a99318;
  --sahara: #b89611;
  --buff: #f2d785;
  --dusty-gray: #a99394;
  --copper-rose: #986c6c;
  --anzac: #e1bf40;
}

/* Estilos generales del footer */
.site-footer {
  background-color: var(--russett);
  color: var(--quarter-spanish-white);
  padding: 2rem 0 0;
  font-family: 'Arial', sans-serif;
}

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

.footer-section {
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: 'Parisienne', cursive;
  color: var(--buff);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--tacha);
  padding-bottom: 0.5rem;
}


.footer-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

/* Estilos de redes sociales */
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--quarter-spanish-white);
  background-color: var(--copper-rose);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--gamboge);
  transform: translateY(-3px);
}

.social-icons i {
  font-size: 1.2rem;
}

/* Estilos de contacto */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-info a {
  color: var(--quarter-spanish-white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info a:hover {
  color: var(--buff);
}

.contact-info i {
  color: var(--tacha);
  width: 20px;
  text-align: center;
}

/* Estilos de horario */
.schedule p {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.schedule i {
  color: var(--tacha);
}

.timezone {
  font-size: 0.8rem;
  color: var(--dusty-gray);
  font-style: italic;
}

/* Footer inferior */
.footer-bottom {
  background-color: var(--copper-rose);
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--quarter-spanish-white);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .contact-info a {
    justify-content: center;
  }
}