﻿/* wwwroot/css/TemplateSections/ThemeSocialMedia.css */
/* Matches Theme About.css (Segoe UI, max-width:1200px, spacing, tone) */

.themesocialmedia-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    background: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.themesocialmedia-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 1200px;
    width: 100%;
}

.themesocialmedia-text {
    text-align: left;
}

.themesocialmedia-title {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: #2C3E50;
}

.themesocialmedia-subtitle {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.themesocialmedia-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    align-items: center;
}

.themesocialmedia-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: #fff;
    color: #1f2a3a;
    padding: 0.6rem 1rem 0.6rem 0.7rem;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, color 120ms ease;
    will-change: transform;
}

    .themesocialmedia-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        background: #f0f4f8;
        color: var(--accent, #2957A4);
    }

.themesocialmedia-icon {
    width: 26px;
    height: 26px;
    margin-right: 0.6rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

.themesocialmedia-label {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .01em;
}

.themesocialmedia-empty {
    color: #9aa4b2;
    font-size: 1.05rem;
    padding: 0.25rem 0;
}

@media (max-width: 640px) {
    .themesocialmedia-title {
        font-size: 1.75rem;
    }

    .themesocialmedia-label {
        display: none;
    }

    .themesocialmedia-icon {
        margin-right: 0;
    }
}
