/* ===============================
   FONTS & BASIS
================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --nzvb-orange: #da8e30;
    --nzvb-dark: #111;
    --nzvb-light: #f5f6f8;
    --nzvb-white: #ffffff;
    --text-dark: #1c1c1c;
    --text-muted: #6e6e6e;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--nzvb-white);
    color: var(--text-dark);
    line-height: 1.7;
}

/* ===============================
   ADMIN + STICKY HEADER
================================ */
.admin-bar {
    position: sticky;
    top: 0;
    z-index: 3000;
    background: #000;
    color: #fff;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: #fff;
    border-bottom: 2px solid var(--nzvb-orange);
}

body.has-admin-bar .header {
    top: 34px;
}

/* ===============================
   HEADER / NAV (RUSTIG REDESIGN)
================================ */
.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-logo {
    height: 56px; /* logo duidelijk zichtbaar */
}

.brand-title {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

nav {
    display: flex;
    gap: 1.6rem;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #000;
}

nav a:hover {
    color: var(--nzvb-orange);
}

/* ===============================
   HAMBURGER
================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #000;
}

@media (max-width: 900px) {
    nav {
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        flex-direction: column;
        border-bottom: 2px solid var(--nzvb-orange);
    }

    nav.open {
        display: flex;
    }

    nav a {
        padding: 1rem 1.25rem;
        border-top: 1px solid #eee;
    }

    .hamburger {
        display: flex;
    }
}

/* ===============================
   LAYOUT
================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section {
    padding: 4.5rem 0;
}

.section.light {
    background: var(--nzvb-light);
}

/* ===============================
   HEADINGS
================================ */
h2 {
    font-size: 2rem;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

/* ===============================
   CARDS
================================ */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.25rem;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.card-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

/* ===============================
   UITGELICHT
================================ */
.highlight {
    border-left: 6px solid var(--nzvb-orange);
    position: relative;
}

.highlight::before {
    content: "UITGELICHT";
    position: absolute;
    top: -14px;
    left: 2rem;
    background: var(--nzvb-orange);
    color: #fff;
    padding: 0.35rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 4px;
}

.highlight2 {
    border-left: 6px solid var(--nzvb-orange);
    position: relative;
}



/* ===============================
   TEKST
================================ */
.summary {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

/* ===============================
   BUTTONS
================================ */
.btn {
    display: inline-block;
    padding: 0.65rem 1.45rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
}

.btn {
    color:#000;    
}

.btn.primary {
    background: var(--nzvb-orange);
    color: #fff;
}

/* ===============================
   DIVIDER
================================ */
.content-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--nzvb-orange), transparent);
    margin: 4rem 0;
}

/* ===============================
   AGENDA
================================ */
.agenda-card {
    border-left: 4px solid var(--nzvb-orange);
}

.agenda-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

/* ===============================
   FOOTER – LEESBAAR & STRAK
================================ */
.nzvb-footer {
    background: #111;
    color: #ddd;
    padding: 4rem 1.25rem 3rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.footer-grid h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
}

.footer-grid p,
.footer-grid li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid ul li {
    margin-bottom: 0.6rem;
}

.footer-grid a {
    color: var(--nzvb-orange);
    text-decoration: none;
}

.footer-grid a:hover {
    text-decoration: underline;
}

/* social icons kleiner */
.footer-grid img {
    height: 22px;
    margin-right: 10px;
    vertical-align: middle;
}

/* onderbalk */
.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #aaa;
}

.footer-bottom a {
    color: #aaa;
    margin-right: 1.5rem;
}

.footer-bottom a:hover {
    color: var(--nzvb-orange);
}

/* ===============================
   AGENDA – STRAK & LEESBAAR
================================ */
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agenda-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    padding: 1.6rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
    border-left: 5px solid var(--nzvb-orange);
}

.agenda-date {
    min-width: 64px;
    text-align: center;
    background: var(--nzvb-light);
    border-radius: 8px;
    padding: 0.6rem 0.4rem;
}

.agenda-date .day {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--nzvb-dark);
}

.agenda-date .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.agenda-content h3 {
    margin: 0 0 0.3rem;
    font-size: 1.15rem;
}

.agenda-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.agenda-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* mobiel compacter */
@media (max-width: 700px) {
    .agenda-item {
        padding: 1.3rem 1.4rem;
    }

    .agenda-date {
        min-width: 56px;
    }
}

/* ===============================
   SHARE BAR – MODERNE STIJL
================================ */
.share-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.share-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.share-action {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}

.share-action svg {
    width: 16px;
    height: 16px;
}

.share-action img {
    width: 16px;
    height: 16px;
}

.share-action:hover {
    background: var(--nzvb-light);
    border-color: var(--nzvb-orange);
}

.share-action.whatsapp {
    border-color: #25D366;
}

.share-action.whatsapp:hover {
    background: rgba(37,211,102,0.08);
}

/* feedback na kopiëren */
.copy-hint {
    font-size: 0.8rem;
    color: var(--nzvb-orange);
    display: none;
}

/* mobiel: label boven */
@media (max-width: 600px) {
    .share-bar {
        align-items: flex-start;
    }

    .share-label {
        flex-basis: 100%;
        margin-bottom: 0.25rem;
    }
}

/* ===============================
   CMS CONTENT – BR & P FIX
================================ */
.content br {
    display: block;
    margin: 0.4em 0;
}

.content p {
    margin: 0 0 0em;
}

.content p + br {
    display: none;
}

        /* Tabel styling */
.beheer-tabel {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
    
}
.beheer-tabel th, .beheer-tabel td {
    padding: 5px 5px;
    text-align: left;
    border-bottom: 1px solid #ccc;
    font-size: 13px;
    
}
.beheer-tabel th {
    background-color: #D7822A;
    color: white;

}
.beheer-tabel tr:nth-child(even) {
    background-color: #e9e9e9 ;
    color: #000;
}

.beheer-tabel tr:hover {
    background-color: #E6E6E6 ;
    color: #000;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Nieuws archief */
.archive-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.archive-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.archive-item:last-child {
    border-bottom: none;
}

.archive-date {
    color: #777;
    font-size: 0.9rem;
    white-space: nowrap;
}

.archive-item a {
    text-decoration: none;
    font-weight: 500;
}

.archive-item a:hover {
    text-decoration: underline;
}
