/* ============================================
   FOOTER.CSS - ESTILOS UNIVERSALES DEL FOOTER
   Club Judo Río Cruces
   ============================================ */

/* ============================================
   FOOTER BASE
   ============================================ */

.site-footer {
    background-image: url('/img/footer-grunge.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1a1f2c;
    color: white;
    position: relative;
    margin-top: auto;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 31, 44, 0.85);
    pointer-events: none;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 40px;
}

.footer-section {
    height: 100%;
}

/* ============================================
   LOGO Y CONTACTO SIMPLIFICADO
   ============================================ */

.footer-logo {
    margin-bottom: 30px;
    text-align: center;
}

.footer-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-contact {
    text-align: center;
}

.footer-address {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.footer-email i {
    color: #E00F1C;
    font-size: 1.1rem;
}

.footer-email a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-email a:hover {
    color: #E00F1C;
    text-decoration: underline;
}

/* ============================================
   TÍTULOS DE SECCIÓN
   ============================================ */

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #E00F1C;
    border-radius: 1px;
}

/* ============================================
   ENLACES RÁPIDOS
   ============================================ */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: '▶';
    color: #E00F1C;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #E00F1C;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

/* ============================================
   REDES SOCIALES - BOTONES CUADRADOS
   ============================================ */

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-btn:hover {
    background: #E00F1C;
    border-color: #E00F1C;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(224, 15, 28, 0.4);
}

.social-btn i {
    font-size: 1.3rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* ============================================
   HORARIOS
   ============================================ */

.footer-schedule {
    margin-bottom: 20px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.schedule-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.schedule-item strong {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.schedule-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.footer-highlight {
    background: linear-gradient(135deg, rgba(224, 15, 28, 0.15), rgba(255, 30, 45, 0.1));
    border: 1px solid rgba(224, 15, 28, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-highlight i {
    color: #E00F1C;
    font-size: 1rem;
}

.footer-highlight span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-copyright p,
.footer-credits p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-credits {
    text-align: right;
}

.footer-credits strong {
    color: #E00F1C;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0 30px;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .footer-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .footer-contact {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-title {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal {
        text-align: center;
        margin-top: 15px;
    }
    
    .footer-schedule {
        max-width: 300px;
        margin: 0 auto 20px;
    }
    
    .footer-highlight {
        text-align: center;
        justify-content: center;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-credits {
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 30px 0 20px;
    }
    
    .footer-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
    }
    
    .social-btn i {
        font-size: 1.1rem;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .footer-highlight {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 10px 12px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-copyright p,
    .footer-credits p {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .footer-address {
        font-size: 0.9rem;
    }
    
    .footer-email {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-email a {
        font-size: 0.85rem;
    }
}