/**
 * Social Media Links Styles
 * Стилі для відображення соціальних мереж
 */

/* Social Links Container */
.kg-social-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* Icon Style */
.kg-social-links--icons {
    justify-content: center;
}

.kg-social-links--icons .kg-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.kg-social-links--icons .kg-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: var(--social-color);
    color: white !important;
}

.kg-social-links--icons .kg-social-link i {
    font-size: 18px;
    color: #555;
    transition: color 0.3s ease;
}

.kg-social-links--icons .kg-social-link:hover i {
    color: white !important;
}

/* Button Style */
.kg-social-links--buttons {
    gap: 10px;
}

.kg-social-links--buttons .kg-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    background: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    font-weight: 500;
    font-size: 14px;
}

.kg-social-links--buttons .kg-social-link:hover {
    border-color: var(--social-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.kg-social-links--buttons .kg-social-link i {
    font-size: 18px;
    color: var(--social-color);
}

.kg-social-links--buttons .kg-social-link span {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kg-social-links--icons .kg-social-link {
        width: 36px;
        height: 36px;
    }

    .kg-social-links--icons .kg-social-link i {
        font-size: 16px;
    }

    .kg-social-links--buttons {
        flex-direction: column;
        width: 100%;
    }

    .kg-social-links--buttons .kg-social-link {
        width: 100%;
        justify-content: center;
    }
}

/* Footer specific styles */
footer .kg-social-links {
    margin: 20px 0;
}

.kg-footer__social {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kg-footer__social-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: inherit;
    opacity: 0.9;
}
