/* =========================================================
   BASIS
   ========================================================= */

* {
    box-sizing: border-box;
}

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

body {
    font-family: Tahoma, Arial, sans-serif;
    font-size: 10pt;
    color: #181B5D;
}


/* =========================================================
   LANDING PAGE
   ========================================================= */

.landing-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}


/* =========================================================
   ACHTERGROND
   ========================================================= */

.background {
    position: fixed;
    inset: 0;

    background-image: url("background.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    z-index: 0;

    /*
     * Subtiele zoom zodat er bij verschillende
     * schermformaten geen randen zichtbaar worden.
     */
    transform: scale(1.02);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.overlay {
    position: fixed;
    inset: 0;

    /*
     * Donkere transparante laag over de foto.
     */
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255,0.88) 0%,
            rgba(255, 255, 255,0.60) 45%,
            rgba(255, 255, 255,0.25) 100%
        );

    z-index: 1;
}


/* =========================================================
   CONTENT
   ========================================================= */

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

    min-height: 100vh;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   HEADER / LOGO
   ========================================================= */

.header {
    width: 100%;
    padding: 40px 60px;
}

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

.logo {
    display: block;

    max-width: 280px;
    

    width: auto;
    height: auto;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    flex: 1;

    display: flex;
    align-items: center;

    padding: 40px 60px;
}


/* Zwevend tekstblok */

.hero-box {
    max-width: 650px;

    padding: 45px 50px;

    /*
     * Transparante witte achtergrond.
     */
    background: rgba(255, 255, 255, 0.94);

    color: #181B5D;

    border-radius: 4px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);

    /*
     * Kleine beweging naar voren.
     */
    backdrop-filter: blur(4px);
}


/* =========================================================
   TITEL
   ========================================================= */

h1 {
    margin: 0 0 25px 0;

    font-family: Tahoma, Arial, sans-serif;
    font-size: 38pt;
    line-height: 1.1;
    font-weight: bold;

    color: #181B5D;
}

h1 span {
    color: #181B5D;
}


/* =========================================================
   INTRODUCTIE
   ========================================================= */

.intro {
    max-width: 560px;

    margin: 0 0 32px 0;

    font-size: 13pt;
    line-height: 1.7;

    color: #181B5D;
}


/* =========================================================
   CALL TO ACTION
   ========================================================= */

.cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 15px 24px;

    background: #181B5D;
    color: #ffffff;

    text-decoration: none;

    font-size: 11pt;
    font-weight: bold;

    border-radius: 3px;
	border: 3px solid #ED7125;

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

.cta:hover {
    background: #292C55;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(255, 255, 255,0.30);
}

.cta:hover .arrow {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 25px 60px;

    font-size: 9pt;

    color: #94B0DB;
}

.separator {
    opacity: 0.5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .header {
        padding: 30px 35px;
    }

    .hero {
        padding: 30px 35px;
    }

    .hero-box {
        max-width: 600px;
        padding: 35px 40px;
    }

    h1 {
        font-size: 31pt;
    }

    .footer {
        padding: 20px 35px;
    }
}


/* =========================================================
   MOBIEL
   ========================================================= */

@media (max-width: 600px) {

    .landing-page {
        min-height: 100svh;
    }

    .background {
        background-position: center center;
    }

    .overlay {
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255,0.72) 0%,
                rgba(255, 255, 255,0.50) 50%,
                rgba(255, 255, 255,0.78) 100%
            );
    }

    .content {
        min-height: 100svh;
    }

    .header {
        padding: 25px 20px;
    }

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

    .hero {
        padding: 20px;

        align-items: center;
    }

    .hero-box {
        width: 100%;

        padding: 30px 25px;

        border-radius: 3px;
    }

    h1 {
        font-size: 25pt;
        line-height: 1.15;

        margin-bottom: 20px;
    }

    .intro {
        font-size: 11pt;
        line-height: 1.6;

        margin-bottom: 25px;
    }

    .cta {
        width: 100%;

        justify-content: center;

        padding: 15px 20px;
    }

    .footer {
        justify-content: center;

        padding: 15px 20px;

        text-align: center;

        font-size: 8pt;
    }
}


/* =========================================================
   HEEL KLEINE SCHERMEN
   ========================================================= */

@media (max-height: 650px) and (max-width: 600px) {

    .header {
        padding: 15px 20px;
    }

    .logo {
        max-width: 150px;
    }

    .hero {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero-box {
        padding: 20px;
    }

    h1 {
        font-size: 21pt;
        margin-bottom: 15px;
    }

    .intro {
        margin-bottom: 18px;
    }

    .footer {
        padding: 10px 20px;
    }
}