/* Klassieke krantenkleuren en lettertypes */
body {
    background-color: #f4edd8; /* Vergeeld papier effect */
    color: #1a1a1a;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #333;
    padding: 20px;
    background-color: #fbf7eb;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Koptekst van de krant */
header {
    text-align: center;
    border-bottom: 4px double #1a1a1a;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 3.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

/* De bovenste infobalk met een boven- én onderlijntje */
.meta-bar {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px 8px 10px; /* Iets meer ademruimte aan de onderkant */
    margin-top: 10px;
    font-size: 0.9rem;
    font-style: italic;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a; /* Dit is het extra lijntje dat je zocht! */
}

/* De rij voor de knoppen met de onderste sluitlijn */
.nav-row {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #1a1a1a; /* De lijn onder de knoppen */
    padding: 10px 0; /* Zorgt dat de knoppen mooi gecentreerd tussen de lijnen zweven */
    margin-bottom: 15px;
}

/* Container die de knoppen uitlijnt */
.nav-buttons {
    display: flex !important;
    gap: 15px !important;
}

/* De zwarte krantenknoppen zelf */
.nav-btn {
    display: inline-block !important;
    background-color: #1a1a1a !important;
    color: #fbf7eb !important;
    text-decoration: none !important;
    padding: 5px 16px !important;
    font-family: 'Georgia', serif !important;
    font-size: 0.85rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 1px solid #1a1a1a !important;
    transition: all 0.2s ease !important;
}

/* Hover functionaliteit */
.nav-btn:hover {
    background-color: #fbf7eb !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
}

/* Belangrijkste nieuwsbalk */
.breaking-news {
    background-color: #1a1a1a;
    color: #fbf7eb;
    padding: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* De Nieuwsbalk / Galerij (CSS Grid) */
.news-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px; 
}

/* Klikbare krantenartikelen */
.article-card {
    border: 1px solid #333;
    padding: 15px;
    background-color: #fbf7eb;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #1a1a1a;
    transition: transform 0.2s, box-shadow 0.2s;
    height: auto;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    background-color: #fcf9f2;
}

.article-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: sepia(0.6) contrast(1.1);
    border: 1px solid #1a1a1a;
    margin-bottom: 12px;
}

.article-card h2 {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    line-height: 1.2;
    border-bottom: 1px dashed #333;
    padding-bottom: 5px;
}

.article-card:hover h2 {
    color: #4a3b2c;
}

.article-meta {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.article-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
    text-align: justify;
}

.read-more {
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-top: auto;
    text-align: right;
    padding-top: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding-top: 15px;
    border-top: 4px double #1a1a1a;
    font-size: 0.9rem;
}

/* Contact Pagina Styling */
.contact-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.contact-card {
    border: 1px solid #1a1a1a;
    padding: 30px;
    background-color: #fbf7eb;
    max-width: 550px;
    width: 100%;
    box-shadow: 2px 2px 0px #1a1a1a;
}

.contact-card h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-intro {
    font-style: italic;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}

.kranten-lijn-dun {
    border: 0;
    border-top: 1px dashed #1a1a1a;
    margin: 20px 0;
}

/* Profiel Layout */
.profile-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Minecraft Hoofdje Styling */
.avatar {
    width: 90px;
    height: 90px;
    border: 2px solid #1a1a1a;
    padding: 3px;
    background-color: #fff;
    /* Geeft de pfp een vette retro pixel look */
    image-rendering: pixelated; 
    filter: sepia(0.2) contrast(1.05);
}

.profile-info h3 {
    font-size: 1.4rem;
    margin: 0;
    text-transform: uppercase;
}

.profile-info .role {
    margin: 2px 0 15px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 1px;
}

.social-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-item {
    font-size: 1rem;
}

.social-item strong {
    display: inline-block;
    width: 95px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #333;
}

.contact-footer {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Medewerkers & Gasten Pagina Styling */
.about-container {
    margin: 30px 0;
}

.page-title {
    font-size: 2.2rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 5px;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 5px;
    letter-spacing: 1px;
}

.about-intro {
    font-size: 1.05rem;
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 25px auto;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.team-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #1a1a1a;
    padding: 20px;
    background-color: #fcf9f2;
    box-shadow: 2px 2px 0px #1a1a1a;
}

/* Extra dikke rand voor jou als maker */
.maker-card {
    border: 2px solid #1a1a1a;
    background-color: #fbf7eb;
}

.team-avatar {
    width: 70px;
    height: 70px;
    border: 1px solid #1a1a1a;
    padding: 2px;
    background-color: #fff;
    image-rendering: pixelated;
}

.team-info h3 {
    font-size: 1.3rem;
    margin: 0 0 4px 0;
    text-transform: uppercase;
}

.team-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #555;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.team-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
}

.contribution-notice {
    text-align: center;
    background-color: #1a1a1a;
    color: #fbf7eb;
    padding: 20px;
    margin-top: 30px;
}

.contribution-notice h3 {
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contribution-notice a {
    color: #fbf7eb;
    font-weight: bold;
}

/* Individuele Artikelpagina Styling */
.article-layout {
    margin: 30px 0;
}

.article-title {
    font-family: 'Georgia', serif;
    font-size: 2.4rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.article-meta-info {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.main-article-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border: 1px solid #1a1a1a;
    margin-bottom: 25px;
    filter: sepia(0.4) contrast(1.1);
}

.article-content {
    max-width: 850px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.article-content h2 {
    font-family: 'Georgia', serif;
    font-size: 1.6rem;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 5px;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Klassieke Kranten Quote */
.article-content blockquote {
    font-style: italic;
    font-size: 1.2rem;
    border-left: 4px solid #1a1a1a;
    padding-left: 20px;
    margin: 30px 10px;
    line-height: 1.5;
}

.quote-author {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-style: normal;
    font-weight: bold;
    margin-top: 5px;
    color: #555;
}

.back-home {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}