/* ============================================
   Dark Minimal Portfolio - Matching Mockup
   ============================================ */

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

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #1a1a1a;
    color: #999;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Layout
   ============================================ */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.hero {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   Profile Image
   ============================================ */
.profile-image {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #333 0%, #222 100%);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Photo is already grayscale, but this ensures consistency */
    filter: grayscale(100%);
}

.profile-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image.placeholder::after {
    content: 'Photo';
    color: #868686;
    font-size: 0.875rem;
}

/* ============================================
   Content
   ============================================ */
.content {
    padding-top: 0;
}

.greeting {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.75rem;
    color: #868686;
    margin-bottom: 0.5rem;
    margin-top: -0.25rem;
    font-weight: 400;
}

.headline {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #e5e5e5;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.bio {
    font-size: 1.125rem;
    color: #868686;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.highlight {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.highlight:hover {
    color: #acacac;
}

/* ============================================
   Links
   ============================================ */
.links {
    display: flex;
    gap: 2.5rem;
}

.link {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.125rem;
    color: #868686;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link:hover {
    color: #e5e5e5;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .greeting {
        font-size: 1.5rem;
    }

    .headline {
        font-size: 1.5rem;
    }

    .headline br {
        display: none;
    }

    .bio {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .links {
        justify-content: center;
        gap: 2rem;
    }

    .link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .greeting {
        font-size: 1.25rem;
    }

    .headline {
        font-size: 1.25rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }
}
