:root {
    --text-dark: #2E2E2E;
    --text-gray: #999999;
    --bg-gray: #f8f8f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
                "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: calc(300px + 5rem + 5rem);
    height: 100%;
    background-color: var(--bg-gray);
    z-index: -1;
}

.container {
    display: flex;
    align-items: center;
    gap: 6rem;
    width: 100%;
}

.image-wrapper {
    padding-left: 5rem;
    padding-right: 5rem;
}

.content-wrapper {
    flex: 1;
    padding-right: 4rem;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}

.content {
    max-width: 600px;
}

.name-first {
    color: var(--text-dark);
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
}

.name-last {
    color: var(--text-dark);
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-top: -0.2rem;
}

.title {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 1rem;
}

.social-links {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    opacity: 1.0;
    background-color: transparent;
    padding: 0.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    opacity: 0.6;
}

.social-link img {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    body::before {
        width: 100%;
    }

    .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-top: 5rem;
    }

    .image-wrapper, .content-wrapper {
        padding: 2rem;
    }

    .profile-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .name-first {
        font-size: 2.5rem;
    }

    .name-last {
        font-size: 3rem;
    }

    .title {
        font-size: 1.2rem;
    }

    .social-links {
        position: absolute;
        top: 2rem;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
        margin-top: 0;
    }
} 