/* =================================
   PUBLIC PROFILE
   ================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}


/* =================================
   PROFILE PAGE
   ================================= */

.profile-page {
    min-height: 100vh;

    padding: 40px 20px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.profile-card {
    width: 100%;
    max-width: 620px;

    min-height: calc(100vh - 80px);

    padding: 55px 35px 35px;

    border-radius: 28px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.10);
}


/* =================================
   PROFILE HEADER
   ================================= */

.profile-header {
    margin-bottom: 35px;

    text-align: center;
}

.profile-image,
.profile-placeholder {
    width: 110px;
    height: 110px;

    margin: 0 auto 20px;

    border-radius: 50%;
}

.profile-image {
    display: block;

    object-fit: cover;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);
}

.profile-placeholder {
    display: flex;

    align-items: center;
    justify-content: center;

    background: #333;
    color: white;

    font-size: 38px;
    font-weight: bold;
}

.profile-header h1 {
    margin: 0;

    font-size: 30px;
    line-height: 1.2;

    letter-spacing: -0.5px;
}

.job-title {
    margin: 10px 0 0;

    font-size: 16px;

    opacity: 0.7;
}

.company {
    margin: 5px 0 0;

    font-size: 14px;

    opacity: 0.6;
}

.bio {
    max-width: 500px;

    margin: 20px auto 0;

    font-size: 15px;
    line-height: 1.7;

    opacity: 0.75;
}


/* =================================
   CONTACT BUTTONS
   ================================= */

.contact-buttons,
.links {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.contact-buttons {
    margin-bottom: 14px;
}


/* =================================
   PROFILE BUTTONS
   ================================= */

.profile-button {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 60px;

    padding: 16px 24px;

    border-radius: 16px;

    color: white;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.profile-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(0, 0, 0, 0.13);
}

.profile-button:active {
    transform: translateY(0);

    opacity: 0.9;
}


/* =================================
   BRANDING
   ================================= */

.profile-branding {
    margin-top: 40px;

    text-align: center;

    font-size: 12px;

    opacity: 0.4;
}


/* =================================
   MOBILE
   ================================= */

@media (max-width: 600px) {

    .profile-page {
        padding: 0;

        align-items: stretch;
    }

    .profile-card {
        min-height: 100vh;

        max-width: none;

        padding: 45px 20px 25px;

        border-radius: 0;

        box-shadow: none;
    }

    .profile-header {
        margin-bottom: 30px;
    }

    .profile-image,
    .profile-placeholder {
        width: 92px;
        height: 92px;
    }

    .profile-header h1 {
        font-size: 25px;
    }

    .bio {
        font-size: 14px;
    }

    .profile-button {
        min-height: 56px;
    }
}

.profile-button {
    gap: 10px;
}

.inactive-card {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-height: 500px;
}

.inactive-card .profile-header {
    margin-bottom: 0;
}