/* Reset & basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background: #f8f8f8;
    line-height: 1.6;
}
a {
    color: #1a73e8;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Layout */
.site-header {
    background: #222;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.site-header h1 {
    font-size: 2.5rem;
    margin-bottom: .5rem;
}
nav a {
    color: #fff;
    margin: 0 1rem;
    font-size: 1rem;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.post-preview {
    padding: 1.5rem 0;
    border-bottom: 1px solid #ddd;
}
.post-preview:last-child {
    border-bottom: none;
}
.post-preview h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.post-preview .meta {
    color: #777;
    font-size: .9rem;
}

.post-content {
    padding: 2rem 0;
}
.post-content h2, .post-content h3, .post-content h4 {
    margin-top: 1.5rem;
}
.post-content p {
    margin: 1rem 0;
}

.comments-section {
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}
.comment {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}
.comment:last-child {
    border-bottom: none;
}
.comment-meta {
    font-size: .8rem;
    color: #555;
}
.comment-text {
    margin-top: .5rem;
}

.comment-form {
    margin-top: 2rem;
}
.comment-form textarea {
    width: 100%;
    padding: .75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}
.comment-form button {
    margin-top: .5rem;
    padding: .75rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    background: #1a73e8;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.comment-form button:hover {
    background: #155ab6;
}

/* Beheerder delete knop */
.btn-delete {
    background: #e53e3e;
    color: #fff;
    border: none;
    padding: .4rem .8rem;
    font-size: .8rem;
    border-radius: 3px;
    cursor: pointer;
}
.btn-delete:hover {
    background: #b92a2a;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 2rem 1rem;
    color: #777;
    font-size: .9rem;
}
