/* Importar fuentes personalizadas */
@import url('../css/fonts.css');

/* Footer Component Styles */

.footer {
  width: 100%;
  font-family: var(--font-body);
}

/* Sección Superior - Redes Sociales */
.footer-social {
  background-color: #FFFFFF;
  padding: 0.75rem 1rem;
  text-align: center;
}

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

.social-title {
  font-family: var(--font-heading);
  color: #99C42D;
  font-size: 1.25rem;
  font-weight: var(--gothic-semi);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
  color: #143762;
  font-size: 1.2rem;
}

.social-icon:hover {
  transform: scale(1.1);
}



/* Sección Media - Información de Contacto */
.footer-main {
  background-color: #143762;
  color: #D3D3D3;
  padding: 1.5rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-img {
  width: auto;
  height: 200px;
  max-width: 400px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1);
  transition: all 0.3s ease;
}

.footer-logo:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.footer-logo:hover .footer-logo-img {
  filter: brightness(1.3) contrast(1.2);
  transform: scale(1.05);
}

.location-title,
.brand-title,
.contact-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.address {
  font-style: normal;
  line-height: 1.4;
  margin: 0;
  font-size: 1rem;
  color: #D3D3D3;
}

.contact-info,
.business-hours {
  margin-bottom: 1.5rem;
}

.phone-numbers p {
  margin: 0.15rem 0;
  line-height: 1.3;
  font-size: 1rem;
  color: #D3D3D3;
}

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

.footer-nav a {
  color: #D3D3D3;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.3;
  font-size: 1rem;
}

.footer-nav a:hover {
  color: #FFFFFF;
}

/* Sección Inferior - Copyright y Enlaces */
.footer-bottom {
  background-color: #143762;
  color: #D3D3D3;
  padding: 0.75rem 2rem;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.copyright p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #D3D3D3;
}

.bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.bottom-links a {
  color: #D3D3D3;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.bottom-links a:hover {
  color: #FFFFFF;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .social-icons {
    gap: 0.5rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
  
  .footer-social {
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-main {
    padding: 2rem 2rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 2rem;
  }
  
  .social-title {
    font-size: 1.5rem;
  }
  
  .location-title,
  .brand-title,
  .contact-title {
    font-size: 1.1rem;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
}

/* Responsive Design - Large Desktop */
@media (min-width: 1440px) {
  .footer-content {
    gap: 5rem;
  }
  
  .social-icons {
    gap: 1rem;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 480px) {
  .footer-social {
    padding: 1.5rem 0.5rem;
  }
  
  .footer-main {
    padding: 2rem 0.5rem;
  }
  
  .footer-bottom {
    padding: 1rem 0.5rem;
  }
  
  .social-icons {
    gap: 0.5rem;
  }
  
  .social-icon {
    width: 25px;
    height: 25px;
    font-size: 1rem;
  }
  
  .social-title {
    font-size: 1.25rem;
  }
  
  .bottom-links {
    gap: 1rem;
  }
  
  .bottom-links a {
    font-size: 1rem;
  }
} 