html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: system-ui, Arial, sans-serif;
    background: #faf7fc;
}

/* ===== HEADER ===== */
.site-header {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 70%,
            #ffffff 100%),
        linear-gradient(90deg,
            #f6b6da 0%,
            #f4c1e6 25%,
            #e8c8f2 50%,
            #d9c4fa 75%,
            #cdbbff 100%);
}

.logo-link {
    display: inline-block;
}

.logo {
    max-height: 110px;
    /* was 200 */
    width: auto;
    display: block;
}

/* ===== PAGINA (ZELFDE ALS BESTELLEN) ===== */
.page {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* smalle middenkolom */
.page>* {
    max-width: 520px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Titel bovenaan */
.page h1 {
    text-align: center;
    margin-bottom: 40px;
}

/* Subtitels exact als Bestellen */
.page h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 40px 0 16px;
    color: #000;
}

/* Tekst */
.page p {
    margin: 6px 0;
}

/* Lijsten zoals Bestellen */
.page ul,
.page ol {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px;
}

.page li {
    margin: 6px 0;
}

/* Intro */
.intro {
    text-align: center;
}

/* ===== MOBIEL DROPDOWN ===== */
.mobile-dropdown {
    display: none;
}

@media (max-width: 700px) {
    .site-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 10px;
        padding-top: 50px;
    }

    .logo-link {
        padding-top: 20px;
    }

    .logo {
        max-width: 180px;
        height: auto;
    }

    .mobile-dropdown {
        display: block;
        width: 95%;
        margin: 14px auto 20px;
    }

    .mobile-dropdown select {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        border-radius: 12px;
        border: 1px solid #ddd;
        background: #f2f2f2;
        text-align: center;
        text-align-last: center;
    }

    .mobile-dropdown option {
        text-align: center;
    }

    main.page {
        margin-top: 24px;
        padding-top: 12px;
    }
}