/* ==========================================================================
   1. ALGEMENE INSTELLINGEN (BODY & BASIS)
   ========================================================================== */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-color: #F9F6F0; /* Rustgevende, zachte achtergrond */
    color: #1A2B3C; /* Zacht donkerblauwe tekst (geen hard zwart) */
    font-family: 'Inter', 'Open Sans', 'Lato', sans-serif; 
    font-size: 18px; 
    line-height: 1.65; 
    letter-spacing: 0.01em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
}

/* Titels en kopjes voor een duidelijke structuur */
h1, h2, h3 {
    color: #0E1A24; 
    margin-top: 1.8em; 
    margin-bottom: 0.6em;
    line-height: 1.3;
}

/* Instellingen voor de tekstcontainers */
.content-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Algemene container voor extra opvallen (zoals tips) */
.container {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    background: #f3e3c4;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


/* ==========================================================================
   2. DE LUXE SIDEBAR & HOVER SUBMENU
   ========================================================================== */
.luxury-sidebar {
    height: 100vh;
    width: 200px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #11141a; /* Luxe diep donkergrijs */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

/* Elegant logo */
.sidebar-brand a {
    text-decoration: none;
}

.sidebar-brand img {
    max-width: 150px;
    height: 118px;

}

.sidebar-brand {
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 20px 15px;
    background: linear-gradient(135deg, #fff 0%, #a6a6a6 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

/* Stijl van de hoofdmenu knoppen */
.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    color: #8a8f98; /* Rustig, elegant grijs */
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-item .icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* Hover-effect hoofdmenu: tekst licht op en icoon schuift fractie op */
.menu-item:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.menu-item:hover .icon {
    transform: translateX(3px);
}

/* Actieve knop met verfijnd goudkleurig verloop */
.menu-item.active, .main-kennisbank.active {
    color: #d4af37 !important; /* Luxe goudtint */
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%) !important;
    border-left: 2px solid #d4af37 !important;
    font-weight: 500;
}

.menu-item.active .icon, .main-kennisbank.active .icon {
    color: #d4af37 !important;
}

/* --- SUBMENU HOVER SYSTEM --- */
.menu-item-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main-kennisbank {
    cursor: pointer;
}

/* Het submenu is standaard onzichtbaar en dwingt een verticale lijst af */
.submenu {
    display: none !important;
    flex-direction: column !important; 
    align-items: flex-start !important; 
    padding-left: 53px;
    gap: 12px; 
    margin-top: 6px;
    margin-bottom: 12px;
    width: 100%; 
}

/* Als je over de container hovert OF als JS de pagina actief maakt (.open) -> tonen! */
.menu-item-container:hover .submenu,
.submenu.open {
    display: flex !important;
}

/* De losse subknoppen styling */
.submenu-item {
    color: #8a8f98; 
    text-decoration: none;
    font-size: 14px; 
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: block; 
    width: 100%;
}

/* Hover-effect voor de subknoppen */
.submenu-item:hover {
    color: #d4af37; 
    transform: translateX(4px); 
}

/* Actieve subpagina status */
.submenu-item.active {
    color: #d4af37 !important;
    font-weight: 500;
}

/* --- PROFIEL & COPYRIGHT ONDERAAN --- */
.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background-color: #d4af37;
    color: #11141a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.user-role {
    color: #626770;
    font-size: 12px;
}

.sidebar-copy {
    color: #ffffff;
    font-size: 12px;
    margin: 10px 0px 0px 0px;
}


/* ==========================================================================
   3. CONTENT LAYOUT & HOME-AFBEELDING
   ========================================================================== */
.content-wrapper {
    flex: 1 0 auto;
    margin-left: 200px; /* Ruimte voor de fixed zijbalk */
    padding: 40px;
    padding-bottom: 80px; 
    box-sizing: border-box; 
}

/* Home afbeelding container */
.home-afbeelding {
    max-width: 1500px; 
    margin: 20px auto;
    border: 1px solid #ffffff; 
    border-radius: 20px;
    overflow: hidden; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.home-afbeelding img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gekleurde tekstbalk onder afbeelding */
.tekst-balk {
    background-color: #f3e3c4; 
    color: #1A2B3C; 
    padding: 15px; 
    text-align: center; 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
}


/* ==========================================================================
   4. BLOG STRUCTUUR
   ========================================================================== */
header {
    background-color: #e4e4e4;
    padding: 20px;
}

.blog-container {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-hoofd {
    flex: 3;
    min-width: 300px;
}

.blog-post {
    background: #f3e3c4;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.blog-post img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}

.meta-data {
    font-size: 0.9rem;
    color: #777;
    margin: 5px 0 15px 0;
}

.lees-meer {
    display: inline-block;
    margin-top: 15px;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

/* Blog Rechter-zijbalk */
.sidebar {
    flex: 1;
    min-width: 250px;
    background: #f3e3c4;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: fit-content;
}

.blog-scheider {
      display: flex;
      align-items: center;
      text-align: center;
      margin: 80px 0;
      color: rgba(212, 175, 55, 0.3);
    }
    .blog-scheider::before, .blog-scheider::after {
      content: '';
      flex: 1;
      border-bottom: 1px dashed rgba(14, 26, 36, 0.1);
    }
    .blog-scheider:not(:empty)::before {
      margin-right: .5em;
    }
    .blog-scheider:not(:empty)::after {
      margin-left: .5em;
    }


/* ==========================================================================
   5. CONTACT FORMULIER
   ========================================================================== */
.contact-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f3e3c4;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
}

.form-group input, 
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}

/* Gekleurde, asymmetrische verstuurknop */
.submit-btn {
    background: #D97C65;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #fa9177;
}

.hidden-honeypot {
    display: none !important;
}

/* ==========================================================================
   6. RESPONSIVE DESIGN (VOOR TELEFOONS EN TABLETS) - GECORRIGEERD
   ========================================================================== */
@media screen and (max-width: 768px) {
    
    /* Maak van de zijbalk een strakke bovenbalk */
    .luxury-sidebar {
        height: auto;
        width: 100%;
        position: relative;
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Logo netjes gecentreerd met wat ademruimte */
    .sidebar-brand {
        margin: 0 0 20px 0;
        text-align: center;
        width: 100%;
    }
    
    .sidebar-brand a {
        display: inline-block;
    }

    /* Dwing de menuknoppen strak en georganiseerd ONDER elkaar */
    .sidebar-menu {
        flex-direction: column !important;
        gap: 4px;
        width: 100%;
    }

    /* Geef de knoppen een rustige, paginabrede look */
    .menu-item {
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
        justify-content: flex-start; /* Icoontje en tekst netjes links */
        border-bottom: 1px solid rgba(255, 255, 255, 0.02); /* Subtiel lijntje */
        border-radius: 8px;
    }
    
    /* Verwijder het lijntje bij de actieve status om overlapping te voorkomen */
    .menu-item.active, .main-kennisbank.active {
        border-left: 2px solid #d4af37 !important;
    }

    /* Container voor de kennisbank */
    .menu-item-container {
        width: 100%;
    }

    /* Het submenu op mobiel: springt iets in voor een duidelijke boomstructuur */
    .submenu {
        padding-left: 45px !important;
        margin-top: 4px;
        margin-bottom: 8px;
        gap: 10px;
        align-items: flex-start !important;
        background: rgba(255, 255, 255, 0.01);
        padding: 12px 12px 12px 45px;
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .submenu-item {
        text-align: left;
        font-size: 13px;
        padding: 4px 0;
        width: 100%;
    }

    /* Haal de grote linkermarge van de content weg */
    .content-wrapper {
        margin-left: 0 !important;
        padding: 20px;
    }

    /* Verberg zware elementen op mobiel */
    .sidebar-user, .sidebar-copy {
        display: none !important;
    }

    /* Klap blog en contact netjes onder elkaar */
    .blog-container {
        flex-direction: column;
    }
    
    .contact-container {
        margin: 1rem auto;
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ==========================================================================
   7. DONKERE MODUS STYLING (PRIKKELVERMINDERING)
   ========================================================================== */

/* Als de donkere modus aanstaat, veranderen we de hoofdkleuren van de body */
/* Als de donkere modus aanstaat, veranderen we de hoofdkleuren van de body */
body.dark-mode {
    background-color: #1a1f26 !important; /* Mat antraciet (achtergrond) */
    color: #94a3b8 !important; /* GECORRIGEERD: Gedempt, zacht grijs (veel rustiger voor de ogen!) */
}

/* Titels in de donkere stand maken we zacht gebroken wit (niet fel wit) */
body.dark-mode h1, 
body.dark-mode h2, 
body.dark-mode h3,
body.dark-mode h4 {
    color: #cbd5e1 !important; /* GECORRIGEERD: Gedempt gebroken wit */
}

/* De containers en blogposts */
body.dark-mode .container,
body.dark-mode .blog-post,
body.dark-mode .contact-container,
body.dark-mode .sidebar {
    background-color: #242b35 !important;
    color: #94a3b8 !important; /* GECORRIGEERD: Zacht grijs voor de tekst binnen de blokken */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}


/* Tekstbalk op de homepagina aanpassen */
body.dark-mode .tekst-balk {
    background-color: #242b35 !important;
    color: #e2e8f0 !important;
}

/* Links in de blogs goed leesbaar houden */
body.dark-mode .lees-meer,
body.dark-mode .blog-hoofd a {
    color: #d4af37 !important; /* Goudtint voor de links */
}

/* Formervelden in de donkere modus */
body.dark-mode .form-group label {
    color: #e2e8f0 !important;
}

body.dark-mode .form-group input, 
body.dark-mode .form-group textarea {
    background-color: #1a1f26 !important;
    color: #ffffff !important;
    border: 1px solid #3f4756 !important;
}

/* Zorg dat de knop in de zijbalk goud oplicht als donkere modus actief is */
body.dark-mode #dark-mode-toggle {
    color: #d4af37 !important;
}
body.dark-mode #dark-mode-toggle .icon {
    color: #d4af37 !important;
}

/* Zorg dat de Donkere Modus knop altijd strak onderaan de zijbalk staat */
#dark-mode-toggle {
    margin-top: auto !important; /* Duwt de knop met alle beschikbare ruimte omlaag */
    margin-bottom: 15px !important; /* Geeft een chique ademruimte boven je profiel */
}

/* ==========================================================================
   8. DISCLAIMER STYLING ONDERAAN DE CONTENT
   ========================================================================== */
.site-footer {
    margin-top: 60px; /* Geeft flink wat ademruimte onder je artikel */
    /*border-top: 1px solid rgba(0, 0, 0, 0.05); /* Subtiel scheidingslijntje in lichte modus */
    padding-top: 20px;
}

.disclaimer-text {
    font-size: 13px; /* Kleinere letters zodat het niet schreeuwt */
    line-height: 1.5;
    color: #626770; /* Rustig, gedempt grijs in lichte modus */
    margin: 0;
}

/* Automatische kleurcorrectie voor de disclaimer in de Donkere Modus */
/*body.dark-mode .site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Lijntje in donkere modus 
}*/

body.dark-mode .disclaimer-text {
    color: #64748b !important; /* Nog zachter grijs in de donkere modus */
}

/* ==========================================================================
   9. ALGEMENE LINKS STYLING (ALLEEN IN DE TEKST, MENU BLIJFT ORIGINEEL)
   ========================================================================== */

/* Hoe een link er standaard uitziet, ALLEEN binnen de contentpagina's */
.content-wrapper a {
    color: #d4af37 !important; /* Jouw luxe goudtint */
    text-decoration: none !important; /* Haalt de standaard blauwe onderstreping weg */
    transition: color 0.3s ease !important; /* Zorgt dat de kleurverandering soepel verloopt */
}

/* Wat er gebeurt als je met de muis over een link in de tekst heen beweegt (Hover) */
.content-wrapper a:hover {
    color: #fa9177 !important; /* Licht warm op bij hover, matcht met je verstuurknop */
    text-decoration: underline !important; /* Het chique dunne streepje verschijnt */
}

/* Zorg dat de tekstlinks in de donkere modus ook perfect goud blijven */
body.dark-mode .content-wrapper a {
    color: #d4af37 !important;
}
body.dark-mode .content-wrapper a:hover {
    color: #ffffff !important; /* In de donkere modus kleurt de hover naar zacht wit */
}



/* SEO & toegankelijkheid */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Donkere modus knop zichtbaar en stabiel in het menu */
.dark-mode-menu {
    margin-top: auto;
    margin-bottom: 10px;
}

#dark-mode-toggle.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 44px;
    color: #f5f5f5;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
    font: inherit;
}

#dark-mode-toggle.menu-item:hover,
#dark-mode-toggle.menu-item.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.10);
}

#dark-mode-toggle .icon {
    flex: 0 0 auto;
}

body.dark-mode #dark-mode-toggle.menu-item {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(212, 175, 55, 0.55);
}

/* ==========================================================================
   10. voorleesknop 
   ========================================================================== */

/* Standaard weergave voor computer/desktop */
.audio-player-container {
    display: inline-block;
    margin: 25px 0;
}

/* Verberg de voorleesknop volledig op mobiele schermen */
@media (max-width: 768px) {
    .audio-player-container {
        display: none !important;
    }
}

/* ==========================================================================
   11. zelftest pagina
   ========================================================================== */

#audhdForm {
    max-width: 850px;
    margin: 0 auto;
    padding: 10px 0;
    box-sizing: border-box;
}

.test-section {
    margin-bottom: 45px;
}

.test-section h2 {
    color: #0E1A24; /* Jouw diepblauwe huiskleur */
    border-bottom: 2px solid rgba(14, 26, 36, 0.1);
    padding-bottom: 12px;
    margin-top: 1rem;
}

.section-desc {
    color: #556270;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Vraag blokken gestyled als jouw luxe content-kaarten */
.question-block {
    background-color: #f3e3c4;
    border: 1px solid rgba(14, 26, 36, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.question-block p {
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 18px;
    color: #0E1A24;
}

/* Grote, duidelijke tikvlakken voor mobiele telefoons */
.question-block label {
    display: block;
    padding: 12px 16px;
    margin-bottom: 10px;
    background-color: #F9F6F0; /* Zachte bodykleur */
    border: 1px solid rgba(14, 26, 36, 0.1);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.question-block label:hover {
    background-color: rgba(212, 175, 55, 0.08); /* Zachte goud-glow */
    border-color: #d4af37;
}

.question-block input[type="radio"] {
    margin-right: 12px;
    accent-color: #d4af37; /* Maakt het bolletje goudkleurig */
    transform: scale(1.1);
}

/* Grote, luxe verzendknop die past bij de goudkleur */
#submitBtn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #11141a 0%, #202733 100%); /* Donkergrijze luxe knop */
    color: #d4af37; /* Gouden letters */
    border: 1px solid #d4af37;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

#submitBtn:hover {
    background: #d4af37;
    color: #11141a;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

/* --- POP-UP MODAL (100% RESPONSIVE EN RECHT IN HET MIDDEN) --- */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 20, 26, 0.7); /* Diep donkere zijbalk-overlay */
    backdrop-filter: blur(4px); /* Moderne vage achtergrond */
}

.modal-content {
    background-color: #ffffff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    border-radius: 20px;
    width: 92%;
    max-width: 650px;
    max-height: 85vh; /* Voorkomt dat het scherm buiten beeld valt op mobiel */
    overflow-y: auto; /* Scrollbalk voor mobiel indien nodig */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-content h2 {
    margin-top: 0;
    color: #0E1A24;
}

.modal-close {
    position: absolute;
    right: 22px;
    top: 15px;
    font-size: 34px;
    cursor: pointer;
    color: #8a8f98;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #d4af37;
}

/* Disclaimer passend bij de warme zand/goud-tinten */
.modal-disclaimer {
    background-color: #fff8ee;
    padding: 18px;
    border-left: 4px solid #d4af37; /* Luxe gouden rand */
    border-radius: 0 12px 12px 0;
    font-size: 0.9rem;
    color: #2c3e50;
    line-height: 1.6;
}

.modal-sluit-knop {
    margin-top: 25px;
    padding: 14px;
    background-color: #F9F6F0;
    color: #11141a;
    border: 1px solid rgba(14, 26, 36, 0.1);
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.modal-sluit-knop:hover {
    background-color: #11141a;
    color: #ffffff;
}

/* --- RESPONSIVE MEDIA QUERIES (DESKTOP OPTIMALISATIE) --- */
@media (min-width: 768px) {
    /* Op schermen groter dan mobiel kunnen de antwoorden horizontaal getoond worden */
    .question-block label {
        display: inline-block;
        margin-right: 8px;
        margin-bottom: 0;
        width: auto;
        padding: 10px 14px;
    }
    
    #submitBtn {
        width: auto;
        padding: 16px 50px;
        margin: 20px auto 0 auto;
    }
}

/* ==========================================================================
    12. veiligheids logo
   ========================================================================== */

.img-fluid {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* ==========================================================================
   13. PRIKKELARME CATEGORIE FOOTER (NAAST ELKAAR)
   ========================================================================== */


.warme-footer {
    display: block !important; /* Dwingt de computer om het vak te tonen */
    position: relative !important; /* Zet de links netjes terug op hun plek */
    left: 0 !important; /* Zorgt dat ze niet buiten het scherm vallen */
    
    background-color: transparent; /* Geen lelijke container-kleur, gewoon je eigen achtergrond */
    padding: 60px 20px;
    margin-top: 60px;
    font-family: 'Inter', sans-serif;
}

.warme-footer-flex {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px; /* Veel ademruimte tussen de kolommen */
}

.warme-footer-kolom {
    flex: 1;
    min-width: 200px;
}

/* Rustige, donkere titels */
.warme-footer-kolom h4 {
    color: #0E1A24;
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.warme-footer-kolom ul {
    list-style: none; /* Geen stipjes */
    padding: 0;
    margin: 0;
}

.warme-footer-kolom li {
    margin-bottom: 12px; /* Ruimte tussen de regels */
}

.warme-footer-kolom a {
    color: #1A2B3C; /* Je vertrouwde zacht donkerblauwe tekstkleur */
    text-decoration: none; /* Geen onderstrepingen */
    font-size: 15px;
}

.facebook-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    isolation: isolate;
    gap: 10px;
    margin-top: 6px;
    min-height: 68px;
    padding: 12px 16px 12px 78px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #0E1A24 !important;
    font-weight: 600;
    line-height: 1.15;
    overflow: visible;
    transition: color 0.2s ease, transform 0.2s ease;
}

.facebook-button::before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    top: 50%;
    width: 118px;
    height: 76px;
    transform: translateY(-50%) rotate(-4deg);
    background:
        radial-gradient(circle at 30% 35%, rgba(248, 243, 241, 0.92) 0 12%, transparent 13%),
        radial-gradient(circle at 78% 30%, rgba(212, 175, 55, 0.95) 0 7%, transparent 8%),
        radial-gradient(circle at 84% 78%, rgba(217, 124, 101, 0.85) 0 8%, transparent 9%),
        linear-gradient(135deg, #D97C65 0%, #d4af37 48%, #0E1A24 100%);
    clip-path: polygon(9% 45%, 0 28%, 16% 29%, 19% 8%, 35% 20%, 48% 0, 56% 18%, 76% 9%, 75% 30%, 98% 31%, 84% 49%, 100% 67%, 78% 67%, 78% 91%, 59% 76%, 45% 100%, 36% 78%, 14% 91%, 20% 68%);
    opacity: 0.96;
    filter: drop-shadow(0 6px 12px rgba(14, 26, 36, 0.18));
}

.facebook-button::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 45px;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d4af37;
    box-shadow:
        -28px 45px 0 -2px #D97C65,
        63px 12px 0 -3px #0E1A24,
        75px 48px 0 -2px rgba(212, 175, 55, 0.85);
}

.facebook-button:hover {
    color: #D97C65 !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.facebook-button svg {
    position: absolute;
    left: 24px;
    top: 50%;
    width: 42px;
    height: 42px;
    box-sizing: border-box;
    padding: 9px;
    transform: translateY(-50%);
    flex: 0 0 auto;
    color: #f8f3f1;
    background: linear-gradient(145deg, #0E1A24 0%, #1A2B3C 100%);
    border: 1px solid rgba(212, 175, 55, 0.65);
    border-radius: 13px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 6px 14px rgba(14, 26, 36, 0.28);
}

.warme-footer-kolom .facebook-button,
.disclaimer-text .facebook-button {
    display: inline-flex;
    width: 112px;
    min-height: auto;
    margin-top: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.warme-footer-kolom .facebook-button::before,
.warme-footer-kolom .facebook-button::after,
.disclaimer-text .facebook-button::before,
.disclaimer-text .facebook-button::after,
.warme-footer-kolom .facebook-button svg,
.disclaimer-text .facebook-button svg {
    display: none;
}

.facebook-splash-image {
    display: block;
    width: 112px;
    height: auto;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.facebook-button:hover .facebook-splash-image {
    transform: translateY(-2px) scale(1.03);
    filter: drop-shadow(0 6px 12px rgba(14, 26, 36, 0.18));
}
