:root {
    --yellow: #f6c01f;
    --blue: #004aad;
}

/* Algemene stijl */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #222;
}

/* Zwarte balk met logo */
.logo-bar {
    background: #000000;
    padding: 20px 0; /* ruimte boven en onder het logo */
    display: flex;
    justify-content: center;
    align-items: center;
}


.logo {
    height: 390px;
    width: auto;
}

/* Tablet */
@media (max-width: 1024px) {
    .logo {
        height: 300px;
    }
}

/* Grote telefoons */
@media (max-width: 768px) {
    .logo {
        height: 220px;
    }
}

/* Kleine telefoons */
@media (max-width: 480px) {
    .logo {
        height: 160px;
    }
}

/* Titelblok */
.site-header {
    text-align: center;
}

.title-block {
    background: #ffffff;
    padding: 25px 10px 10px;
}

/* H1 */
.title-block h1 {
    margin: 0 0 6px;
    font-size: 2.1rem;
    color: var(--yellow);
    font-weight: 700;
}

/* Subtitle + brede streep */
.subtitle-wrapper {
    width: 100%;
    max-width: 420px; /* breedte van de H1 */
    margin: 0 auto;
    padding-bottom: 12px;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0) 0%,
        #cccccc 50%,
        rgba(0,0,0,0) 100%
    );
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 1px;
}

.subtitle {
    margin: 0;
    font-size: 1.05rem;
    color: #777777;
}

/* Blauw vlak */
.info {
    background: var(--blue);
    color: #ffffff;
    padding: 25px 20px 30px;
    max-width: 700px;
    margin: 0 auto 40px;
    box-sizing: border-box;
}

.info h2 {
    margin: 0 0 12px;
    font-size: 1.3rem;
}

/* Lijst zonder streepjes */
.info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info li {
    padding: 8px 0;
    border: none; /* alle streepjes weg */
}

/* Alleen de streep tussen KvK en Postadres */
.info li:nth-child(4) {
    padding-bottom: 12px;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.7) 50%,
        rgba(255,255,255,0) 100%
    );
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 2px;
}

.info li strong {
    font-weight: 700;
}

.info a {
    color: #ffffff;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline;
}
