@import url('colors.css');

sidebar {
    display: block;
    border-radius: 20px;
    padding: 1.5rem;
    background: var(--glass-panel);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-light);
}

/* Stays a circle at any container width, so the stacked mobile layout
   does not blow the portrait up to full page width. */
sidebar .profile-img-wrapper img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 190px;
    aspect-ratio: 1;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-light);
}

sidebar .information-wrapper .profile-name h2 {
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
    font-size: 20px;
    letter-spacing: -0.01em;
    color: var(--text-color-primary);
}

/* Role chip with a live status dot. */
sidebar .information-wrapper .badge{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--gradient-brand);
    width: fit-content;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin: 10px auto;
    box-shadow: 0 4px 12px var(--accent-glow);
}

sidebar .information-wrapper .badge::before{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--window-zoom);
    box-shadow: 0 0 6px var(--window-zoom);
}


sidebar .information-wrapper .social-links{
    text-align: center;
    justify-content: center;
    margin-bottom: 25px;
}

sidebar .information-wrapper .social-links .social-link {
    display: inline-block;
    font-size: 24px;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 8px;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

sidebar .information-wrapper .social-links .social-link:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px var(--accent-glow));
}

sidebar .information-wrapper p{
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--text-color-secondary);
}

/* Field labels read as a spec sheet. */
sidebar .information-wrapper p strong{
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-color-muted);
}

sidebar .information-wrapper a{
    text-decoration: none;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: filter 0.2s ease;
}

sidebar .information-wrapper a:hover{
    filter: brightness(1.1);
}
