/**
 * Estilos para los enlaces de redes sociales
 * Club Balonmano Albacete
 */

/* Contenedor principal */
.social-links-container {
    margin: 30px auto 20px;
    text-align: center;
}

/* Título de la sección */
.social-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
}

/* Contenedor de los enlaces */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

/* Estilo base para los enlaces */
.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Tamaño de los iconos */
.social-link .social-icon {
    width: 20px;
    height: 20px;
}

/* Estilos específicos para cada red social */
.social-link.facebook {
    background-color: #1877F2;
}

.social-link.twitter {
    background-color: #1DA1F2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Efectos de hover */
.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Adaptación para dispositivos móviles */
@media (max-width: 576px) {
    .social-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
}