/* --- Basic Setup --- */
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    margin: 0;
}

h1, h2, h3, nav {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* --- Two-Column Layout --- */
.wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

/* --- Sidebar (Left Column) --- */
.sidebar {
    width: 280px; /* Fixed width for the sidebar */
    padding: 40px 20px;
    border-right: 1px solid #eee;
    height: 100vh; /* Make sidebar full height of the viewport */
    position: sticky; /* Stick to the top on scroll */
    top: 0;
    overflow-y: auto; /* Allow scrolling if content is too long */
}

.sidebar h1 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

.sidebar .bio {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.sidebar nav a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}
.sidebar nav a:hover {
    color: #007bff;
    text-decoration: none;
}

.sidebar .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* --- Main Content (Right Column) --- */
.main-content {
    flex-grow: 1; /* Takes up the remaining space */
    padding: 40px 5%; /* Use percentage for responsive padding */
    max-width: 800px;
}

.main-content h2 {
    font-size: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.project {
    margin-bottom: 2rem;
}

.project h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #888;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
