/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
}
h1, h2, h3 {
    font-family: 'Spectral', serif; /* Headings */
}

body {
    font-family: 'Spectral', serif; /* General text */
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.nav-container {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #666;
}

/* Content sections */
.content-section {
    margin-bottom: 3rem;
}

h1 {
    margin-bottom: 1.5rem;
}

/* Project cards */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 4px;
}

/* Social links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    text-decoration: none;
    color: #333;
}

/* Blog post list */
.post-list {
    list-style: none;
}

.post-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Favorites sections */
.favorites-section {
    margin-bottom: 2rem;
}

.favorites-section h2 {
    margin-bottom: 1rem;
}

.favorites-section ul {
    list-style-type: disc;
    margin-left: 2rem;
}

.favorites-section li {
    margin-bottom: 0.5rem;
} 