/* Basic styles for Alden Salim's website */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    max-width: 800px;
}

/* Header and Navigation */
header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.site-title {
    margin-bottom: 1rem;
}

.site-title a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.site-title a:hover {
    color: #666;
}

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

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
}

nav a:hover {
    color: #333;
}

nav a[aria-current="page"] {
    color: #333;
    font-weight: bold;
}

/* Main content */
main {
    padding: 0 2rem 2rem 2rem;
}

h1 {
    color: #333;
}

h2 {
    color: #666;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

p {
    margin: 1rem 0;
}
