:root {
    --background: #1b2740;
    --accent: #ffb426;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.78);
}

/* --------------------------------------------------
   Basis
-------------------------------------------------- */

* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;

    background-color: var(--background);
    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}


/* --------------------------------------------------
   Pagina
-------------------------------------------------- */

.page {
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    /*
     * De volledige achtergrondafbeelding wordt
     * over de gehele desktop-pagina geplaatst.
     */
    background-image:
        url("/assets/images/background.png");

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    background-color: var(--background);
}


/* --------------------------------------------------
   Layout
-------------------------------------------------- */

.main {
    display: flex;

    min-height: 100vh;

    align-items: stretch;
}


/* --------------------------------------------------
   Content links
-------------------------------------------------- */

.content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    width: 58%;
    min-height: 100vh;

    padding:
        80px
        50px
        80px
        10%;
}

.content-inner {
    width: 100%;
    max-width: 760px;
}


/* --------------------------------------------------
   Kleine titel bovenaan
-------------------------------------------------- */

.eyebrow {
    margin: 0 0 18px;

    color: var(--accent);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* --------------------------------------------------
   Hoofdtitel
-------------------------------------------------- */

h1 {
    max-width: 760px;

    margin: 0 0 28px;

    /*
     * Iets kleiner dan voorheen.
     * Hierdoor past "gereserveerd voor een klant van"
     * op grotere schermen mooier op één regel.
     */
    font-size: clamp(30px, 2.5vw, 42px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.025em;
}

.domain-name {
    color: var(--accent);
}


/* --------------------------------------------------
   Logo
-------------------------------------------------- */

.logo-link {
    display: inline-block;

    margin: 0 0 28px;
}

.logo {
    width: 300px;
    max-width: 100%;

    height: auto;
}


/* --------------------------------------------------
   Beschrijving
-------------------------------------------------- */

.description {
    max-width: 650px;

    margin: 0;

    color: var(--text-muted);

    font-size: 18px;

    line-height: 1.7;
}


/* --------------------------------------------------
   Knop
-------------------------------------------------- */

.actions {
    display: flex;
    flex-wrap: wrap;

    margin-top: 36px;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 27px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--accent);

    color: var(--background);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.20);
}

.button-primary:hover {
    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.28);
}


/* --------------------------------------------------
   Rechtergedeelte
-------------------------------------------------- */

/*
 * De daadwerkelijke afbeelding staat op .page.
 * Dit element zorgt alleen voor de beschikbare
 * ruimte aan de rechterkant.
 */

.visual {
    width: 42%;

    min-height: 100vh;
}


/* --------------------------------------------------
   Kleinere desktop / tablet
-------------------------------------------------- */

@media (max-width: 1200px) {

    .content {
        width: 60%;

        padding-left: 7%;
        padding-right: 40px;
    }

    .content-inner {
        max-width: 700px;
    }

    .visual {
        width: 40%;
    }

    h1 {
        max-width: 700px;

        font-size: clamp(30px, 3vw, 40px);
    }

}


/* --------------------------------------------------
   Tablet
-------------------------------------------------- */

@media (max-width: 950px) {

    .content {
        width: 62%;

        padding-left: 6%;
        padding-right: 35px;
    }

    .visual {
        width: 38%;
    }

    h1 {
        font-size: 36px;
    }

    .description {
        font-size: 17px;
    }

    .logo {
        width: 270px;
    }

}


/* --------------------------------------------------
   Mobiel
-------------------------------------------------- */

@media (max-width: 800px) {

    html,
    body {
        min-height: 100%;
    }

    body {
        background-color: var(--background);
    }

    .page {
        min-height: 100vh;

        overflow: visible;

        /*
         * Achtergrondafbeelding volledig uitschakelen
         * op mobiele apparaten.
         */
        background-image: none;

        background-color: var(--background);
    }

    .main {
        display: block;

        min-height: 100vh;
    }

    .content {
        width: 100%;
        min-height: 100vh;

        padding:
            60px
            25px;

        align-items: center;
    }

    .content-inner {
        width: 100%;
        max-width: 100%;
    }

    /*
     * Het rechtergedeelte is op mobiel
     * helemaal niet nodig.
     */
    .visual {
        display: none;
    }

    .eyebrow {
        margin-bottom: 16px;

        font-size: 13px;
    }

    h1 {
        max-width: 100%;

        margin-bottom: 26px;

        font-size: 34px;

        line-height: 1.15;
    }

    .logo {
        width: 250px;
    }

    .description {
        max-width: 100%;

        font-size: 16px;

        line-height: 1.65;
    }

    .actions {
        margin-top: 32px;
    }

}


/* --------------------------------------------------
   Kleine telefoons
-------------------------------------------------- */

@media (max-width: 480px) {

    .content {
        padding:
            45px
            22px;
    }

    .eyebrow {
        font-size: 12px;
    }

    h1 {
        font-size: 29px;

        line-height: 1.18;
    }

    .logo {
        width: 220px;
    }

    .description {
        font-size: 16px;
    }

    .button {
        width: 100%;

        min-height: 52px;

        padding:
            0
            20px;
    }

}