@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --bg-body: #f4f4f4;        /* Lichtgrijze achtergrond */
    --bg-white: #ffffff;       /* Wit voor kaarten/menu */
    --text-main: #111111;      /* Bijna zwart */
    --text-muted: #666666;     /* Medium grijs */
    --accent-dark: #222222;    /* Donkergrijs voor accenten */
    --border-light: #e0e0e0;   /* Lichte scheidingslijnen */
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

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

/* Navbar Style */
.navbar {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--text-main);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--text-main) !important;
    text-decoration: none;
}

.navbar-brand span {
    font-weight: 400;
    color: var(--text-muted);
}

.nav-date {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.news-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-item:hover {
    border-color: var(--text-main);
}

.image-wrapper {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #ddd;
}

/* De afbeeldingen in het overzicht - ALTIJD KLEUR */
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Geen grayscale filter meer, dus direct kleur */
    filter: none; 
    /* Alleen de zoom-overgang behouden voor modern gevoel */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

/* Effect wanneer je met de muis over het bericht gaat */
.news-item:hover img {
    /* De foto zoomt subtiel in voor diepte */
    transform: scale(1.05); 
}

.content-wrapper {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.location-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 10px;
    border-bottom: 1px solid var(--text-main);
    display: inline-block;
    align-self: flex-start;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    text-decoration: none;
    margin-bottom: 15px;
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.news-meta {
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
}

/* Paginering */
.pagination-container {
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.page-btn {
    padding: 12px 20px;
    background: var(--bg-white);
    color: var(--text-main);
    text-decoration: none;
    margin: 0 5px;
    font-weight: 700;
    border: 1px solid var(--border-light);
}

.page-btn.active {
    background: var(--text-main);
    color: #fff;
    border-color: var(--text-main);
}

.page-btn:hover:not(.active) {
    border-color: var(--text-main);
}

.article-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
    display: block;
}