/* ===== MAIN CSS - NOCHE DE PRIMAVERA ===== */
/* Este archivo importa todos los módulos CSS */

@import 'variables.css';
@import 'reset.css';
@import 'layout.css';
@import 'cards.css';
@import 'carousel.css';
@import 'modal.css';
@import 'filters.css';
@import 'responsive.css';

/* ===== UTILIDADES ADICIONALES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.visible { display: block !important; }

.invisible { visibility: hidden; }
.visible { visibility: visible; }

/* ===== ANIMACIONES GLOBALES ===== */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* ===== FOOTER ===== */
.footer {
  background: white;
  color: #2b1d24;
  width: 100%;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  margin-top: auto;
  padding: 3rem 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem 3rem;
  width: 100%;
  box-sizing: border-box;
}

.footer-column:first-child {
  padding-left: 0;
}

.footer-column:last-child {
  padding-right: 0;
}

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

.footer-logo-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-logo {
  width: auto;
  height: 70px;
  object-fit: contain;
}

/* Información de contacto */
.footer-info-text {
  font-family: var(--font-text);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a3a40;
  margin-bottom: 0.5rem;
}

/* ===== REDES SOCIALES ===== */
.footer-social-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.footer-social-icons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: white;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer-social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.footer-social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Colores específicos para hover */
.footer-social-link.facebook:hover { background: #1877f2; }
.footer-social-link.twitter:hover { background: #1da1f2; }
.footer-social-link.youtube:hover { background: #ff0000; }
.footer-social-link.instagram:hover { background: #e4405f; }
.footer-social-link.flickr:hover { background: #0063dc; }

/* ===== TEXTO DESCRIPTIVO DEL FESTIVAL EN COLUMNA 2 ===== */
.footer-description {
  font-family: var(--font-text);
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a3a40;
}

.footer-description-text {
  margin-bottom: 1rem;
  text-align: justify;
}

.footer-description-text:last-child {
  margin-bottom: 0;
}

/* ===== SITIOS RELACIONADOS ===== */
.footer-info-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid var(--accent-color);
  padding-left: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0;
  list-style: none;
  padding: 0;
}

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

.footer-link-bullet {
  color: var(--accent-color);
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
}

.footer-link {
  font-family: var(--font-text);
  font-size: 0.95rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0.1rem 0;
  border-bottom: 1px solid transparent;
  display: inline-block;
}

.footer-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  transform: translateX(3px);
}

/* ===== PLECA INFERIOR ===== */
.footer-pleca {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0;
  line-height: 0;
  position: relative;
  left: 0;
  right: 0;
}

.footer-pleca-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== RESPONSIVE DEL FOOTER ===== */
@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem 2rem;
  }
  
  .footer-column {
    text-align: center;
    align-items: center;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  .footer-info-title {
    text-align: center;
    border-left: none;
    border-bottom: 2px solid var(--accent-color);
    padding-left: 0;
    padding-bottom: 0.5rem;
  }
  
  .footer-link-item {
    justify-content: center;
  }
  
  .footer-social-icons {
    justify-content: center;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-description-text {
    text-align: center;
  }
}