/* Define our single Eggshell/Black color palette */
:root {
    --bg-color: #F9F8F6; /* Eggshell white */
    --text-color: #1a1a1a; /* Soft black */
    --link-color: #0056b3; 
    --nav-bg: #EAE8E3;
}

/* Base Styles */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Layout */
header, main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center; /* Centers all the text */
}

/* Navigation */
nav {
    display: flex;
    justify-content: center; /* Changed to center since the button is gone */
    align-items: center;
    background-color: var(--nav-bg);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
}

.nav-links a {
    margin: 0 1rem; /* Adjusts spacing so links sit nicely in the middle */
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Profile Picture */
.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Makes it a circle */
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Typography & Links */
h1 { margin-bottom: 0.2rem; }
h2 { font-weight: 300; font-size: 1.2rem; margin-top: 0; }
a { color: var(--link-color); }
hr { border: 0; border-top: 1px solid var(--text-color); opacity: 0.2; margin: 3rem 0; }
ul { list-style: none; padding: 0; }