section.intro {
    min-height: calc(100vh - 60px);
    height: auto;
    margin: 0;
    padding: 0 20px;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro h2 {
    margin: 0 auto 0;
}

.roleTitle {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 2rem;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 32px 0;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #161b22;
    color: #ccdddd;
    border: 1px solid #30363d;
    border-radius: 9999px;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.social-button img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(46%) sepia(81%) saturate(745%) hue-rotate(0deg) brightness(102%) contrast(101%);
}

.social-button:hover {
    background-color: #21262d;
    color: #ffffff;
}


.site-footer {
    margin-top: 30px;
    padding: 40px 0 20px;
    background-color: #0d1117;
    text-align: center;
}

.footer-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.site-footer .social-button {
    padding: 10px 16px;
    background-color: #161b22;
    border: 1px solid #30363d;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.site-footer .social-button:hover {
    background-color: #21262d;
}

.footer-note {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
    padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 1100px) {

    section.intro {
        min-height: calc(100vh - 40px);
        height: auto;
    }

    .site-footer .social-button {
        padding: 10px 16px;
        gap: 6px;
        font-size: 12px;
    }

    .site-footer {
        margin-top: 10px;
        padding: 20px 0 calc(env(safe-area-inset-bottom) + 20px) 0;
        background-color: #0d1117;
        text-align: center;
    }
}

