/* --- VARIABELEN --- */
:root {
    --ink-black: #1a1a1a;
    --paper-bg: #f4f1ea;
    /* Fallback kleur */
    --accent-red: #8a2be2;
    /* Een beetje inkt-paars/blauw voor links */
    --border-style: 3px double var(--ink-black);
}

/* --- BASIS --- */
body {
    font-family: 'Courier Prime', monospace;
    background-color: var(--paper-bg);
    background-image: url('../img/newspaper/newspaper-bg.png');
    background-repeat: repeat;
    color: var(--ink-black);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: var(--ink-black);
    text-decoration: underline;
}

a:hover {
    color: var(--accent-red);
}

/* --- LAYOUT CONTAINER (De Krant) --- */
.container {
    max-width: 1000px;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.6);
    /* Beetje lichter maken */
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #dcdcdc;
}

/* --- HEADER (Masthead) --- */
.site-header {
    text-align: center;
    border-bottom: 4px double var(--ink-black);
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.header-bg {
    background-image: url('../img/newspaper/newspaper-header.png');
    background-size: cover;
    background-position: center;
    height: 200px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid var(--ink-black);
    filter: sepia(50%) contrast(1.2);
}

.site-header h1 {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: 5em;
    margin: 0;
    line-height: 1;
    letter-spacing: 2px;
}

.site-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    border-top: 1px solid var(--ink-black);
    border-bottom: 1px solid var(--ink-black);
    padding: 5px 0;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    text-transform: uppercase;
    font-weight: bold;
}

/* --- MENU --- */
.pages-menu {
    text-align: center;
    border-bottom: var(--border-style);
    margin-bottom: 30px;
    padding: 10px 0;
}

.pages-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pages-menu li {
    display: inline-block;
    margin: 0 15px;
}

.pages-menu a {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.1em;
}

.pages-menu a:hover {
    text-decoration: underline;
}

/* --- CONTENT WRAPPER --- */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.main-content {
    flex: 2;
    min-width: 300px;
}

.sidebar {
    flex: 1;
    min-width: 200px;
    border-left: var(--border-style);
    padding-left: 20px;
}

/* --- ARTIKELEN --- */
article {
    margin-bottom: 50px;
    border-bottom: 1px solid var(--ink-black);
    padding-bottom: 30px;
}

article h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 900;
}

.post-meta {
    font-family: 'Courier Prime', monospace;
    font-size: 0.8em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #555;
}

.post-image {
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1.2);
    /* Zwart-wit foto effect */
    transition: filter 0.5s ease;
    border: 1px solid var(--ink-black);
    margin-bottom: 15px;
}

.post-image:hover {
    filter: grayscale(0%);
    /* Kleur terug bij hover */
}

.post-intro {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-style: italic;
}

.post-body {
    text-align: justify;
    /* Kranten uitlijning */
}

/* Drop Cap (Eerste letter groot) */
.post-body p:first-of-type::first-letter {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    margin-right: 10px;
    margin-top: 5px;
}

/* --- SIDEBAR WIDGETS --- */
.sidebar h3 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    border-bottom: 2px solid var(--ink-black);
    margin-top: 0;
    text-align: center;
    background: var(--ink-black);
    color: #fff;
    padding: 5px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #999;
    padding-bottom: 5px;
}

/* --- ZOEKBALK --- */
input[type="text"],
input[type="search"] {
    width: 100%;
    padding: 8px;
    border: 2px solid var(--ink-black);
    font-family: 'Courier Prime', monospace;
    background: transparent;
}

/* --- PAGINATION --- */
.pagination {
    text-align: center;
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    border-top: var(--border-style);
    padding-top: 20px;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid var(--ink-black);
    padding-top: 10px;
    font-size: 0.8em;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        border-left: none;
        border-top: var(--border-style);
        padding-left: 0;
        padding-top: 20px;
    }

    .site-header h1 {
        font-size: 3em;
    }
}
    
/* Masthead afbeelding */
.masthead-image {
    width: 100%;
    filter: grayscale(100%);
    border: 1px solid #000;
    margin-bottom: 20px;
}
