/* @import url('https://googleapis.com');

body {
    background-color: #F2F2F7;
    font-family: 'Inter', sans-serif;
    color: #1D1D1F;
} */

:root {
    /* Updated Typography */
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif; /* If you don't have Inter, Segoe/Arial is fine */
    
    --bg-color: #ffffff;
    --text-main: #1d1d1f;
    --text-muted: #4e4e50; /* Slightly darker than Apple's light gray for better readability */
    
    --max-width: 900px; /* Slightly narrower to accommodate the serif font */
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 500; /* Medium weight looks great for serifs */
    margin-top: 0;
}

body {
    font-family: var(--font-body);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.47059; /* Apple-style tight line height */
    margin: 0;
    padding: 0;
}

/* Container for centered, fixed-width content */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

nav h1 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--text-main);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.project-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.project-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}