/* ================================================== */
/* 0. VARIABELEN                                      */
/* ================================================== */

:root {
    --blue: #262959;
    --gold: #daa85e;
    --light-gold: #d6a65b;
    --footer-bg: #202742;
}


/* ================================================== */
/* 1. BASIS & TYPOGRAFIE                              */
/* ================================================== */

h2, h3, h4, h5, h6 {
    color: var(--blue);
}

h2 {
    font-weight: bold;
}

/* H3 – globale stijl */
h3 {
    margin-top: 0;
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1.2;
    text-transform: uppercase;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
    padding-bottom: 7px;
}

/* Mobiel */
@media (max-width: 768px) {
    h3 {
        font-size: 22px;
    }
    h2 {
        font-size: 32px;
    }
}

/* Blockquote quote styling (mobiel beter leesbaar) */
@media (max-width: 768px) {
    .paragraph-text blockquote h4 {
        font-size: 19px !important;
        line-height: 1.6 !important;
        text-transform: none !important;
    }

    .paragraph-text blockquote {
        margin: 10px 0;
    }
}

/* Links (rustiger basis) */
a {
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* h4 links nooit onderstreept */
h4 a {
    text-decoration: none;
}

/* Tabellen */
table {
    border: 0;
    border-spacing: 0;
}


/* ================================================== */
/* 2. HEADER & LOGO                                   */
/* ================================================== */

@media (max-width: 991px) {
    header .navbar-brand {
        width: 280px !important;
        height: 70px !important;
        max-width: 100%;
    }
}

/* Header titel fix mobiel */
@media (max-width: 768px) {
    .content-header.content-header-background .container h2 {
        font-size: 24px !important;
        line-height: 1.0;
        word-break: break-word;
    }
}


/* ================================================== */
/* 3. SLIDESHOW / CAROUSEL                            */
/* ================================================== */

.carousel-caption {
    text-align: center;
    text-shadow: 0 4px 6px rgba(0,0,0,0.4);
}

.carousel-caption h1,
.carousel-caption h2 {
    color: #fff;
}

#carousel-homepage.carousel {
    min-height: 250px;
}

/* pijlen */
.carousel-control {
    opacity: 0.25;
    color: #dee7f1;
    text-shadow: none;
}

.carousel-control:hover {
    opacity: 0.5;
}

/* indicatoren */
.carousel-indicators li {
    opacity: 0.5;
}


/* ================================================== */
/* 4. NIEUWS & AGENDA (GELIJKGETROKKEN)               */
/* ================================================== */

/* Titels zonder lijn en zonder kapitalen */
body.module-news h3,
body.module-events h3 {
    text-transform: none;
    border-bottom: none;
    display: block;
    padding-bottom: 0;
}

/* Titel links */
body.module-news h3 a,
body.module-events h3 a {
    color: var(--blue);
    font-weight: 700;
}

/* Links zonder onderstreping */
body.module-news a,
body.module-events a {
    text-decoration: none;
}

body.module-news a:hover,
body.module-events a:hover {
    text-decoration: underline;
}

/* Mobiel kleiner */
@media (max-width: 768px) {
    body.module-news h3,
    body.module-events h3 {
        font-size: 20px;
    }
}


/* ================================================== */
/* 5. META INFO (DATUM / TAGS)                        */
/* ================================================== */

.meta-list li {
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
}


/* ================================================== */
/* 6. HEADLINES & LIJNEN                              */
/* ================================================== */

/*section#content .headline {
    border-bottom: none;
    padding-bottom: 0;
}*/

section#content .headline h2,
section#content .headline h3,
section#content .headline h4,
section#content .headline h5,
section#content .headline h6 {
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--gold);
}

hr {
    border-color: var(--light-gold);
}

.headline {
    border-bottom: 1px solid var(--footer-bg);
}


/* ================================================== */
/* 7. SUBMENU                                         */
/* ================================================== */

#submenu a {
    color: var(--blue);
}

#submenu a:hover,
#submenu a:focus,
#submenu a:active {
    color: var(--light-gold);
}


/* ================================================== */
/* 8. TABS                                            */
/* ================================================== */

.nav-tabs > li > a {
    color: var(--blue);
}

.nav-tabs > li.active > a {
    color: var(--blue);
}

/* legend (formulier kopjes) */
legend {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}


/* ================================================== */
/* 9. FOOTER                                          */
/* ================================================== */

footer {
    background-color: var(--footer-bg);
    color: #fff;
    border-top: 6px solid var(--gold);
}

footer h3 {
    color: #fff;
    font-size: 19px;
}

footer .headline {
    border-bottom: 1px solid rgba(255,255,255,.1);
}

footer a {
    color: rgba(255,255,255,.9);
}

footer a:hover {
    color: #fff;
}

.social-icons li a {
    background-color: rgba(255,255,255,.2);
}

dl.headlines.headlines-footer dd .text-muted {
    color: rgba(255,255,255,.5);
}


/* ============================= */
/* FOOTER HEADLINE HERSTEL      */
/* ============================= */

footer .headline h2,
footer .headline h3,
footer .headline h4,
footer .headline h5,
footer .headline h6 {
    border-bottom: 3px solid #daa85e !important;
    display: inline-block;
    padding-bottom: 6px;
}

footer .headline {
    border-bottom: none !important;
}

/* ============================= */
/* FOOTER KOPPEN KAPITALEN FIX  */
/* ============================= */

footer .headline h2,
footer .headline h3,
footer .headline h4,
footer .headline h5,
footer .headline h6,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    text-transform: uppercase !important;
}


/* ============================= */
/* FOOTER MOBILE FIX (NIEUW)    */
/* ============================= */

@media (max-width: 768px) {
    footer .headline h2,
    footer .headline h3,
    footer .headline h4,
    footer .headline h5,
    footer .headline h6 {
        font-size: 17px !important;
        line-height: 1.3 !important;
    }

    footer h2,
    footer h3,
    footer h4,
    footer h5,
    footer h6 {
        font-size: 17px !important;
        line-height: 1.3 !important;
    }
}


/* ================================================== */
/* FOOTER: Laatste nieuws - titel + datum apart       */
/* ================================================== */

/* Titel wit */
footer dl.headlines-footer dd a {
    color: #fff !important;
}

/* Datum (time) weer subtiel grijs */
footer dl.headlines-footer dd time,
footer dl.headlines-footer dd .text-muted {
    color: rgba(255,255,255,0.5) !important;
}



/* ================================================== */
/* 10. OVERIG                                         */
/* ================================================== */

#map {
    height: 600px;
}

.leaflet-popup-content {
    font-family: "Open sans", sans-serif;
    font-size: 16px;
}



/* ============================= */
/* SIDEBAR MENU UNIFORM STYLING */
/* ============================= */

/* kopjes boven menu (bijv. Categorieën / Agenda) */
.aside .headline {
    border-bottom: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* gouden lijn onder de titel */
.aside .headline h4 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-block;
    border-bottom: 3px solid #daa85e;
    padding-bottom: 6px;
}
