/* Responsive design for mobile */
@media (max-width: 700px) {
    .inhoud {
        max-width: 100%;
        margin: 1rem 0;
        padding: 0 0.5rem;
        font-size: 1rem;
    }
    .schlager {
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0;
    }
    .schlager img {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    .button {
        width: 100%;
        font-size: 1rem;
        padding: 0.5rem;
    }
    .button-wrapper {
        margin-top: 0.5rem;
    }
}
@import url('Home.css');
/* Extra pagina-specifieke stijlen kunnen hier toegevoegd worden */

.inhoud {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #fff;
}

.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #DFA811;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 1rem;
    /* keep button inline-block and let wrapper center it */
}

.button-wrapper {
    text-align: center;
    margin-top: 1rem;
}


.schlager {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}
.schlager img {
    width: 420px;
    max-width: 100%;
    height: 320px;
    object-fit: contain;
    border-radius: 4px;
    display: block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}