/* Vibe Coding Aesthetic */

:root {
    --bg-color: #FAFAF9;
    /* Cream/Off-white */
    --text-color: #1A1A1A;
    --secondary-text: #666666;
    --border-color: #E5E5E5;
    --card-bg: #FFFFFF;
    --accent-color: #333333;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --container-width: 600px;
    --spacing-unit: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    width: 180px;
    height: auto;
    flex-shrink: 0;
    /* Multiply blend mode makes the white background of the illustration transparent on off-white */
    mix-blend-mode: multiply;
    filter: contrast(1.1);
}

h1 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.intro-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Bio Section */
.bio {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-color);
    border-left: 2px solid var(--border-color);
    padding-left: 24px;
}

/* Links Section */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s;
    cursor: pointer;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
    border-color: #d4d4d4;
}

.link-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.link-icon {
    font-size: 1.25rem;
    color: var(--secondary-text);
    width: 24px;
    text-align: center;
}

.link-title {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-color);
}

.link-arrow {
    color: var(--border-color);
    transition: color 0.2s;
}

.link-card:hover .link-arrow {
    color: var(--text-color);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.875rem;
    color: var(--secondary-text);
    opacity: 0.7;
}

.social-icons {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a:hover {
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 40px 20px;
        gap: 40px;
    }

    .hero {
        flex-direction: column-reverse;
        /* Image on top mobile or just stack standard */
        align-items: flex-start;
        gap: 24px;
    }

    .hero-image {
        width: 140px;
        align-self: flex-start;
        margin-bottom: -10px;
    }

    h1 {
        font-size: 2rem;
    }

    .bio {
        font-size: 1.1rem;
        padding-left: 16px;
    }
}