@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    font-family: 'Roboto';
    background-color: #f4f4f4;
    color: #333;
    scroll-behavior: smooth;
}

/* Navbar */

.navbar {
    background-color: #ffffff;
    overflow: hidden;
    padding: 1.5em 1em;
    max-width: 100%;
    min-width: 30%;
    border-bottom: #50505013 1px solid;
    display: flex;
    justify-content: space-between;
    scroll-behavior: smooth;
}

.navbar-links a {
    flex-direction: row;
    color: #000000;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    scroll-behavior: smooth;
}

.navbar-links a:hover {
    text-decoration: underline;
    color: black;
}

.navbar-image img {
    max-width: 300px;
    height: auto;
}

/* Banner */

.banner {
    background-color: #ff9012;
    color: #ffffff;
    padding: 4em 0em;
    margin-bottom: 4em;
    max-width: 100%;
    margin: auto;
    text-align: center;
}

.banner h1 {
    margin: auto;
    font-size: 36px;
}

/* content-all */

.content-all {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: auto;
    max-width: 80%;
}

/* Content */

.content {
    /* max-width: 50%; */
    width: 40%;
    /* margin: auto; */
    /* border: 2px solid #000000; */
}


.content h1,
.content h2,
.content h3 {
    font-weight: 900;
    font-size: xx-large;
    color: #000000;
}

/* Content2 */

.content2 {
    /* max-width: 30%; */
    width: 40%;
    align-items: flex-start;
    padding: 2em;
    /* margin: 0 auto; */
    /* border: 2px solid #000000; */

}

/* Content-box */

.content-box {
    background-color: #fcfcfc;
    border: 2px solid #000000;
    box-shadow: 8px 8px 8px 8px rgba(66, 66, 66, 0.1);
    border-radius: 25px;
    padding: 2em;
    margin-bottom: 4em;
    max-width: 80%;
}



/* Text content */

.text-content {
    padding: 1em 2em 1em 2em;
    line-height: 1.5;
    font-size: 18px;
}

.text-content h2 {
    margin-top: 0em;
    margin-bottom: 1em;
    font-weight: 600;
}

.text-content p {
    margin-bottom: 1em;
}

.text-content ul {
    margin-left: 2em;
    margin-bottom: 1em;
}

/* text-content2 */

.text-content2 {
    padding-bottom: 1em;
    font-size: 18px;
}

.text-content2 h2 {
    margin-top: 0em;
    font-weight: 600;
    color: rgb(74, 0, 97);
}

.text-content2 a {
    text-decoration: none;
}


/* Contactinformatie */

.contact-text p {
    margin: 0 0 1em 0;
    line-height: 1;
    font-size: medium;
    font-weight: 400;
}

/* Hulpaanbod */

.button_hulp {
    background-color: #cfcfcf;
    color: rgb(74, 0, 97);
    padding: 1em 15em 1em 1em;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
    border-radius: 25px;
    transition: 0.3s;
}

.button_hulp:hover {
    background-color: #a8a8a8;
    transition: 0.8s;
}

.button_hulp h3 {
    color: rgb(74, 0, 97);
    font-weight: 500;
}

.fa-regular {
    color: rgb(74, 0, 97);
    font-size: 2em;
}

/* Contactformulier */

.form {
    color: rgb(0, 0, 0);
    max-width: 50%;
}

.form .form_text {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    border-radius: 10px;
    width: 300px;
    height: 40px;
}

.form2 {
    color: rgb(0, 0, 0);
    max-width: 50%;
}

.form2 .form_text2 {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    border-radius: 10px;
    width: 300px;
    height: 150px;
}

.submit-button {
    background-color: #ff901200;
    color: rgb(74, 0, 97);
    padding: 10px 20px;
    border: 2px solid rgb(74, 0, 97);
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    margin-top: 2em;
}

.submit-button:hover {
    background-color: rgb(74, 0, 97);
    color: #ffffff;
    transition: 0.5s;
}

/* Bedankt pagina */

.bedankt {
    text-align: center;
    margin: auto;
    padding: 4em;
    max-width: 60%;
}

.bedankt-button {
    background-color: rgb(74, 0, 97);
    color: #ffffff;
    padding: 10px 20px;
    border: 2px solid rgb(74, 0, 97);
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.bedankt-button:hover {
    background-color: #ffffff;
    color: rgb(74, 0, 97);
    transition: 0.8s;
}


/* Responsive Design */

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 2em);
        padding: 1em;
        margin: auto;
        justify-content: center;
    }

    .navbar-image img {
        max-width: 200px;
        /* justify-content: center; */
        margin: auto;
    }

    .navbar-links a {
        display: none;
    }

    .banner {
        width: calc(100% - 2em);
        padding: 1em;
        margin: auto;
        margin-bottom: 1em;
    }

    .banner h1 {
        font-size: 28px;
    }

    .content {
        max-width: 95%;
        padding: 1em;
        width: unset;
    }

    .content-all {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: unset;
        justify-content: center;
    }

    .content2 {
        padding: unset;
        width: unset;
        max-width: 95%;
    }

    .text-content {
        padding: unset;
        font-size: 16px;
    }

    .text-content2 {
        padding: unset;
        font-size: 16px;

    }

    .button_hulp {
        padding: 1em 5em 1em 1em;

    }

    .form .form_text {
        width: 300px;
        height: 40px;
    }

    .form2 .form_text2 {
        width: 300px;
        height: 100px;
    }

}