.white-appbar {
    background-color: white;
    color: black;
}

html, body {
    height: 100%;
    margin: 0;
}

.main-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Zorgt dat hij minimaal de viewport vult */
}

.main-content {
    flex: 1; /* Vult alle resterende ruimte op */
    display: flex;
    flex-direction: column;
}

.h-100 {
    height: 100%;
}

.mud-typography-body1 {
    font-size: 18px; /* Kies hier je gewenste font-size */
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-space-between {
    justify-content: space-between;
}

.hero-wrapper {
    width: 100%;
    background: url('/img/bg01.jpg') center center / cover no-repeat;
}

.hero-section {
    /*min-height: 70vh;*/ /* hero neemt 70% van viewport hoogte in */
    /*background: #f9f9f9;*/ /* Lichtgrijs, fris */
    padding: 8rem 1rem;
    backdrop-filter: brightness(0.6);
    /*padding-top: 120px;
    padding-bottom: 120px;*/
}

.font-weight-bold {
    font-weight: 700;
}

.text-white {
    color: white;
    /*text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);*/
}

.btn-hero {
    background: #000 !important;
    color: #fff !important;
    /*border-radius: 50px;*/
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #333 !important;
}

.gradient-button {
    background: linear-gradient(135deg, #ff4081, #9c27b0); /* roze naar paars diagonaal */
    color: white !important;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    border: none;
    /*box-shadow: none;*/
}

.gradient-button:hover {
    filter: brightness(1.1);
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.menu-item {
    padding: 0.5rem 1rem;
}

.menu-item:hover {
    background-color: rgba(0,0,0,0.05);
    cursor: pointer;
}

.menu-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Zorgt dat alles links blijft uitgelijnd */
}

.header {
    border-bottom: 2px solid black;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.services-section {
    background: #fff;
    padding: 4rem 1rem;
}

.service-card {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.accent-blue {
    background: #E3F2FD;
}

.accent-green {
    background: #E8F5E9;
}

.accent-orange {
    background: #FFF3E0;
}

.blog-section {
    background: #161616; /* subtiel andere tint dan hero/services */
    padding: 4rem 1rem;
}

.diensten-lijst {
    display: flex;
    flex-direction: column;
}

.dienst-item {
    padding: 2rem 0;
    border-bottom: 2px solid black;
}

    .dienst-item:last-child {
        border-bottom: none;
    }

.button-right {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.blog-paper {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-paper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.blog-section .mud-button {
    text-transform: none;
}

.minimal-blog-card {
    border-bottom: 2px solid black;
    border-radius: 0 !important;
    box-shadow: none !important;
    background-color: white;
    transition: transform 0.2s ease-in-out;
}

.minimal-blog-card:hover {
    transform: translateY(-4px);
}

.markdown-render {
    font-family: Roboto, "Segoe UI", sans-serif;
    color: #212121;
    line-height: 1.6;
}

    /* Headings */
    .markdown-render h1 {
        font-size: 2rem;
        font-weight: 500;
        margin: 2rem 0 1rem;
    }

    .markdown-render h2 {
        font-size: 1.75rem;
        font-weight: 500;
        margin: 1.75rem 0 1rem;
    }

    .markdown-render h3 {
        font-size: 1.5rem;
        font-weight: 500;
        margin: 1.5rem 0 1rem;
    }

    .markdown-render h4 {
        font-size: 1.25rem;
        font-weight: 500;
        margin: 1.25rem 0 0.75rem;
    }

    .markdown-render h5 {
        font-size: 1.1rem;
        font-weight: 500;
        margin: 1rem 0 0.5rem;
    }

    /* Paragrafen */
    .markdown-render p {
        margin-bottom: 1rem;
    }

    /* Lijsten */
    .markdown-render ul {
        list-style-type: disc;
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Inline code */
    .markdown-render code {
        background-color: #f5f5f5;
        padding: 0.2rem 0.4rem;
        border-radius: 4px;
        font-family: Consolas, Menlo, monospace;
        font-size: 0.95rem;
        color: #c7254e;
    }

    /* Optioneel: voor pre blocks (multiline code) */
    .markdown-render pre {
        background-color: #f5f5f5;
        padding: 1rem;
        border-radius: 4px;
        overflow-x: auto;
        font-family: Consolas, Menlo, monospace;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }


