/* Page-specific styles for the Rafael Barbosa info page */

.member-page {
    background:
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.03) 75%, rgba(255, 255, 255, 0.03)),
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.03) 75%, rgba(255, 255, 255, 0.03));
    background-color: #1d1d1d;
    background-position: 0 0, 48px 48px;
    background-size: 96px 96px;
    color: #ffffff;
}

.member-hero {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 20px 0;
}

.member-card {
    width: min(100%, 700px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.member-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
}

.member-avatar-ring {
    width: 248px;
    height: 248px;
    padding: 12px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.member-avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.member-copy {
    text-align: center;
    margin-top: 2px;
}

.member-copy h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.45);
}

.member-role {
    margin-top: 8px;
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.member-links {
    width: min(100%, 500px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.member-link {
    min-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    text-decoration: none;
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.member-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
    background-color: #f7f7f7;
}

.member-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    font-size: 13px;
    line-height: 1;
}

.member-brand-band {
    position: relative;
    margin-top: 18px;
    background: var(--primary-yellow);
    color: #111111;
    padding: 34px 20px 34px;
    overflow: hidden;
}

.member-band-wave {
    position: absolute;
    top: -34px;
    left: -4%;
    width: 108%;
    height: 92px;
    background: var(--primary-yellow);
    border-radius: 50% 50% 0 0;
}

.member-band-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: -18px auto 0;
    text-align: center;
    padding-top: 0;
}

.member-band-icon {
    width: 148px;
    height: 148px;
    object-fit: contain;
    margin-bottom: -18px;
}

.member-band-logo {
    width: min(420px, 84vw);
    height: auto;
    margin: -18px auto 8px;
    display: block;
}

.member-band-content p {
    font-family: 'Sen', 'Paddock', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    max-width: 620px;
    margin: 0 auto 6px;
}

.member-band-tagline {
    display: inline-block;
    margin-top: 10px;
    font-size: clamp(1rem, 2.8vw, 1.7rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .member-hero {
        padding-top: 24px;
    }

    .member-avatar-ring {
        width: 180px;
        height: 180px;
        padding: 10px;
    }

    .member-links {
        width: 100%;
    }

    .member-brand-band {
        margin-top: 10px;
        padding-top: 28px;
    }

    .member-band-wave {
        top: -24px;
        height: 68px;
    }

    .member-band-content {
        margin-top: -22px;
    }

    .member-band-icon {
        width: 128px;
        height: 128px;
        margin-bottom: -14px;
    }

    .member-band-logo {
        width: min(360px, 84vw);
        margin-top: -14px;
    }

    .member-band-content p {
        font-size: 12px;
        max-width: 560px;
    }
}