
/* ===========================
   BASE & FONTS
=========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Roboto", "Lato", "Muli", sans-serif;
    color: #212529;
}

/* ===========================
   LINKER PANEEL
=========================== */

.left-wrap {
    padding: 0;
    filter: drop-shadow(15px 0px 10px rgba(50, 50, 0, 0.5));
}

.left {
    background-image: url("../img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;

    /* Diagonale snede zoals originele template */
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);

    /* Logo perfect centreren */
    display: flex;
    align-items: center;
    justify-content: center;
}

.left img {
    width: 200px;
    height: auto;
}

/* ===========================
   RECHTER PANEEL
=========================== */

.right {
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    /* Zorg dat tekst en footer op zelfde linkerlijn staan */
    padding-left: 4rem;
    padding-right: 2rem;
}

/* Centraal tekstblok, verticaal gecentreerd */
.mainInfo {
    max-width: min(100%, 75ch);
    margin-top: auto;
    margin-bottom: auto;
}

/* Koptekst */
.mainInfo h1 {
    font-family: "Muli", sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Slogan tekst */
.slogan {
    font-family: "Lato", sans-serif;
    line-height: 1.7;
    color: #6d6464;
    margin: 0;
}

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

.footer {
    margin-top: auto;         
    margin-bottom: auto;
    text-align: left;
    color: #6d6464;
    padding-bottom: 2rem;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 767px) {

    .left {
        clip-path: none;
        min-height: 40vh;
    }

    .right {
        min-height: auto;
        padding: 2rem 1rem;
        align-items: left;
        text-align: left;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mainInfo {
        max-width: 100%;
        margin-top: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .footer {
        text-align: center;
        width: 100%;
        padding-bottom: 1.5rem;
    }
}