:root {
    --color-flame-dark: #8b0000;
    --color-flame-mid: #c41e3a;
    --color-flame-bright: #ff6b35;
    --color-flame-glow: #ff8c42;
    --color-ink: #1a1a1a;
    --color-ink-light: #4a4a4a;
    --color-paper: #faf8f5;
    --color-paper-dark: #f0ebe3;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', sans-serif;
    --content-width: 720px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-ink);
    background: var(--color-paper);
    line-height: 1.7;
}

a { color: var(--color-flame-dark); text-decoration: none; }
a:hover { color: var(--color-flame-mid); }

.site-header {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.header-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.header-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.site-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
}

.site-title a { 
    color: #ffffff; 
    text-shadow: 3px 3px 6px #000000, 0 0 30px #000000;
}

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

.header-tagline {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 2px 2px 6px #000000;
    z-index: 10;
    text-align: right;
    line-height: 1.6;
}

.header-tagline span {
    font-size: 0.95rem;
    font-style: italic;
    display: block;
}

@media (max-width: 768px) {
    .header-tagline {
        font-size: 0.85rem;
        bottom: 10px;
        right: 15px;
    }
    .header-tagline span {
        font-size: 0.75rem;
    }
}

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

.site-tagline {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: #ffffff;
    text-shadow: 2px 2px 6px #000000, 0 0 25px #000000, 0 0 50px rgba(0,0,0,0.5);
    margin: 0.4rem 0 0 0;
    letter-spacing: 0.03em;
}
.site-author {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 2px 2px 6px #000000, 0 0 20px #000000;    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    margin: 0;
}.accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--color-flame-dark), var(--color-flame-mid), var(--color-flame-bright), var(--color-flame-glow));
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--color-paper-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.main-nav a {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--color-ink-light);
}

.main-nav a:hover { color: var(--color-flame-dark); }
.main-nav a.active { color: var(--color-flame-dark); }

.main-content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.page-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-paper-dark);
}

.page-intro h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.page-intro p {
    font-size: 1.1rem;
    color: var(--color-ink-light);
}
.intro-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-paper-dark);
}

.intro-section p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-ink);
    text-align: center;
}

.featured-article { margin-bottom: 4rem; }

.featured-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-flame-mid);
    margin-bottom: 1rem;
}

.featured-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-content { padding: 2rem; }
.featured-content .article-title { font-size: 1.8rem; margin-bottom: 1rem; }

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.article-card {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-paper-dark);
}

.article-meta {
    font-size: 0.85rem;
    color: var(--color-ink-light);
    margin-bottom: 0.5rem;
}

.category {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.category.opinie { color: var(--color-flame-dark); }
.category.essay { color: #2d5a27; }
.category.column { color: #1a4a6e; }

.article-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.article-title a { 
    color: var(--color-ink); 
    text-decoration: none;
    transition: color 0.2s ease;
}
.article-title a:hover { 
    color: var(--color-flame-dark); 
    text-decoration: underline;
}

.article-excerpt {
    color: var(--color-ink-light);
    line-height: 1.6;
}

.article-page .article-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.article-image {
    float: right;
    width: 45%;
    margin: 0.5rem 0 1.5rem 2rem;
}

.article-image img {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .article-image {
        float: none;
        width: 100%;
        margin: 1.5rem 0;
    }
}
.article-content {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.8;
}
.article-content p { margin-bottom: 1.5rem; }
.article-content img {
    border: 12px solid #8b7355;
    border-image: linear-gradient(135deg, #c4a574 0%, #8b7355 25%, #6b5344 50%, #8b7355 75%, #c4a574 100%) 1;
    box-shadow: 
        0 0 0 2px #4a3728,
        4px 4px 15px rgba(0,0,0,0.4);
    margin: 2rem auto;
    display: block;
    max-width: 90%;
}
.article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--color-flame-mid);
    background: rgba(139, 0, 0, 0.05);
    font-style: italic;
}

.share-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-paper-dark);
}

.share-section .label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-ink-light);
    margin-bottom: 0.75rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 4px;
    background: var(--color-paper-dark);
    color: var(--color-ink-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.share-btn svg { width: 18px; height: 18px; }
.share-btn:hover { transform: scale(1.1); }
.share-btn.whatsapp:hover { background: #25D366; color: white; }
.share-btn.facebook:hover { background: #1877F2; color: white; }
.share-btn.twitter:hover { background: #000000; color: white; }
.share-btn.bluesky:hover { background: #0085FF; color: white; }
.share-btn.linkedin:hover { background: #0A66C2; color: white; }
.share-btn.link:hover { background: var(--color-flame-mid); color: white; }

.about-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d0f0f 100%);
    border-radius: 12px;
    color: #ffffff;
}

.about-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-section p { color: rgba(255, 255, 255, 0.8); margin-bottom: 1.5rem; }
.about-section em { color: var(--color-flame-glow); font-style: normal; }
.read-more { color: var(--color-flame-glow); font-weight: 500; }

.page-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.page-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--color-flame-dark);
}

.page-content p { margin-bottom: 1.25rem; line-height: 1.8; }
.page-content em { color: var(--color-flame-dark); }

.contact-form { margin-top: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--color-paper-dark);
    border-radius: 6px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-flame-mid);
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-flame-dark), var(--color-flame-mid));
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
    color: #ffffff;
}

.error-page { text-align: center; padding: 4rem 1.5rem; }

.error-code {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 600;
    color: var(--color-flame-dark);
    opacity: 0.3;
}

.error-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-message {
    color: var(--color-ink-light);
    margin-bottom: 2rem;
}

.site-footer {
    background: #1a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: var(--content-width);
    margin: 0 auto;
    text-align: center;
}

.footer-share { margin-bottom: 2rem; }
.footer-share p { font-size: 0.9rem; margin-bottom: 1rem; }

.footer-share-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.footer-share-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-share-btn svg { width: 18px; height: 18px; }
.footer-share-btn:hover { border-color: transparent; transform: scale(1.1); }
.footer-share-btn.whatsapp:hover { background: #25D366; color: white; }
.footer-share-btn.facebook:hover { background: #1877F2; color: white; }
.footer-share-btn.twitter:hover { background: #ffffff; color: #000000; }
.footer-share-btn.bluesky:hover { background: #0085FF; color: white; }
.footer-share-btn.linkedin:hover { background: #0A66C2; color: white; }
.footer-share-btn.link:hover { background: var(--color-flame-mid); color: white; }

.footer-links { margin-bottom: 1.5rem; }
.footer-links a { color: rgba(255, 255, 255, 0.7); margin: 0 1rem; }
.footer-links a:hover { color: #ffffff; }
.footer-copyright { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

.no-articles { color: var(--color-ink-light); font-style: italic; }
.recent-articles h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 2rem; }

@media (max-width: 768px) {
    .site-header { height: 280px; }
    .site-title { font-size: 2.5rem; }
    .main-nav ul { flex-wrap: wrap; }
    .main-nav a { padding: 0.75rem 1rem; font-size: 0.9rem; }
    .page-intro h2, .page-content h2 { font-size: 2rem; }
    .article-page .article-title { font-size: 1.8rem; }
}

.boek-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-paper-dark);
}

.boek-item:last-child {
    border-bottom: none;
}

.boek-thumb {
    width: 150px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    align-self: flex-start;}

.boek-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-flame-dark);
    margin-bottom: 0.25rem;
}

.boek-jaar {
    font-size: 0.9rem;
    color: var(--color-ink-light);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.boek-beschrijving p {
    margin-bottom: 1rem;
}

.boek-beschrijving blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--color-flame-mid);
    background: rgba(139, 0, 0, 0.05);
    font-style: italic;
}
.boek-koop {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-flame-dark);
    color: #ffffff;
    border-radius: 4px;
    font-size: 0.9rem;
}

.boek-koop:hover {
    background: var(--color-flame-mid);
    color: #ffffff;
}

@media (max-width: 768px) {
    .boek-item {
        flex-direction: column;
        gap: 1rem;
    }
    .boek-thumb {
        width: 120px;
    }
}

/* Kunst pagina */
.kunst-intro {
    margin-bottom: 2.5rem;
    color: var(--color-ink-light);
    border-left: 3px solid var(--color-flame);
    padding-left: 1.25rem;
}

.kunst-intro a {
    color: var(--color-flame-dark);
}

.kunst-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-paper-dark);
}

.kunst-item:last-child {
    border-bottom: none;
}

.kunst-thumb {
    width: 300px;
    height: auto;
    border-radius: 0;
    border: 12px solid #c4a574;    
    box-shadow: 
    inset 0 0 5px rgba(0,0,0,0.2),0 4px 15px rgba(0,0,0,0.4);
    object-fit: cover;
}}

.kunst-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-flame-dark);
    margin-bottom: 0.25rem;
}

.kunst-meta {
    font-size: 0.9rem;
    color: var(--color-ink-light);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.kunst-verhaal {
    margin-bottom: 1rem;
}

.kunst-verhaal p {
    margin-bottom: 0.75rem;
}

.kunst-prijs {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-ink);
    margin-bottom: 0.5rem;
}

.kunst-bestel {
    display: inline-block;
    color: var(--color-flame-dark);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid var(--color-flame);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.kunst-bestel:hover {
    color: var(--color-flame);
}

.kunst-verkocht {
    display: inline-block;
    font-style: italic;
    color: var(--color-ink-light);
}

@media (max-width: 768px) {
    .kunst-item {
        flex-direction: column;
        gap: 1rem;
    }
    .kunst-thumb {
        width: 100%;
        max-width: 300px;
    }
}
/* Stemknoppen */
.stem-sectie {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-paper-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stem-sectie span {
    color: var(--color-ink-light);
    font-size: 0.95rem;
}

.stem-knop {
    background: var(--color-paper);
    border: 1px solid var(--color-paper-dark);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.stem-knop:hover {
    background: var(--color-paper-dark);
}

.stem-knop.stem-actief {
    background: var(--color-flame);
    color: white;
    border-color: var(--color-flame);
}

.lees-verder {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-flame-dark);
    font-weight: 500;
}

.lees-verder:hover {
    color: var(--color-flame-mid);
    text-decoration: underline;
}

.article-content img {
    float: right;
    max-width: 300px;
    height: auto;
    margin: 0.5rem 0 1.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .article-content img {
        float: none;
        max-width: 100%;
        margin: 1.5rem 0;
    }
}
