
/* Pasta & Vinegar - Static Site CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background: #fff;
    font-weight: 300;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Similar to fabiengirardin.com */
nav {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    padding: 20px 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
}

nav li {
    display: inline-block;
}

nav li:not(:first-child)::before {
    content: " / ";
    margin: 0 8px;
    color: #000;
}

nav a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: opacity 0.2s;
}

/* Bold for Nicolas Nova and pasta & vinegar */
nav li:first-child a,
nav li:last-child a {
    font-weight: 500;
}

nav a:hover {
    opacity: 0.6;
}

/* Header */
header {
    display: none;
}

/* Main content */
main {
    padding: 30px 0 60px 0;
    min-height: 500px;
}

/* Blog posts - matching nicolasnova.net style */
article {
    margin-bottom: 80px;
}

article h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.3;
}

article h2 a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s;
}

article h2 a:hover {
    opacity: 0.6;
}

article h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 20px 0 10px 0;
}

.title {
    font-size: 2em;    
}

.subtitle {

}

.post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 300;
}

.post-content {
    margin-bottom: 20px;
    font-weight: 300;
}

.post-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px 0;
}

.post-content a {
    color: #000;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.post-content a:hover {
    opacity: 0.6;
}

.post-content blockquote {
    border-left: 2px solid #000;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
}

.post-content em {
    font-style: italic;
}

.post-content strong {
    font-weight: 500;
}

/* Tags */
.tags {
    margin-top: 20px;
    font-size: 14px;
}

.tags a {
    display: inline-block;
    background: #f5f5f5;
    padding: 4px 10px;
    margin-right: 8px;
    margin-bottom: 5px;
    text-decoration: none;
    color: #000;
    font-weight: 300;
    transition: background 0.2s;
}

.tags a:hover {
    background: #e8e8e8;
}

/* Pagination */
.pagination {
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.pagination a {
    color: #000;
    text-decoration: none;
    font-weight: 300;
    max-width: 45%;
    transition: opacity 0.2s;
}

.pagination a:hover {
    opacity: 0.6;
}

.pagination .current {
    color: #666;
    font-size: 13px;
    font-weight: 300;
}

/* Footer */
footer {
    border-top: 1px solid #000;
    padding: 30px 0;
    margin-top: 60px;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    text-align: center;
}

footer p {
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 15px 0;
    }
    
    nav ul {
        gap: 0;
    }
    
    nav li:not(:first-child)::before {
        margin: 0 5px;
    }
    
    nav a {
        font-size: 14px;
    }
    
    article h2 {
        font-size: 20px;
    }
    
    .post-content {
        font-size: 15px;
    }
}
