@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root {
    --green: #27ae60;
    --black: #192a56;
    --light-color: #666;
    --box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
}

* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    /*text-transform: capitalize;*/
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}

section {
    padding: 2rem 9%;
}

    section:nth-child(even) {
        /*background-color: lavender;*/
    }

.sub-heading {
    text-align: center;
    color: var(--green);
    font-size: 2rem;
    padding-top: 1rem;
}

.heading {
    text-align: center;
    color: var(--black);
    font-size: 3rem;
    padding-bottom: 2rem;
    text-transform: uppercase;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.8rem;
    color: #fff;
    background: var(--black);
    border-radius: .5rem;
    cursor: pointer;
    padding: .8rem 3rem;
}

    .btn:hover {
        /*background: var(--f-green);*/
        background: linear-gradient();
        letter-spacing: .1rem;
    }

.hoofd {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #b93131;
    padding: 1rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

    .hoofd .logo {
        color: var(--black);
        font-size: 2.5rem;
        font-weight: bolder;
    }

        .hoofd .logo i {
            color: var(--red);
           
        }

    .hoofd .navbar a {
        font-size: 1.7rem;
        border-radius: .5rem;
        padding: .5rem 1.5rem;
        color: var(--light-color);
    }

        .hoofd .navbar a.active,
        .hoofd .navbar a:hover {
            color: #fff;
            background: var(--green);
        }
  
header .icons i,
header .icons a {
    cursor: pointer;
    margin-left: .5rem;
    height: 4.5rem;
    line-height: 4.5rem;
    width: 4.5rem;
    text-align: center;
    font-size: 1.7rem;
    color: var(--black);
    border-radius: 50%;
    background: #eee;
}

    header .icons i:hover,
    header .icons a:hover {
        color: #fff;
        background: var(--green);
        /*transform: rotate(360deg);*/
    }

header .icons #menu-bars {
    display: none;
}


    .menu .box-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
        /*grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));*/ /* Aangepaste breedte van 22rem */
        /*grid-template-columns: repeat(4, 1fr);*/ /* 4 boxen naast elkaar */
        gap: 1.5rem;
    }

        /* Media query voor schermen met breedte 1024px en hoger */
     @media (min-width: 1024px) {
            .menu .box-container {
                grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr)); /* Aangepaste breedte van 35rem, box breder makan op het grote scherm */
            }
        }

    .menu .box-container .box {
        background: #fff;
        border: .1rem solid rgba(0,0,0,.2);
        border-radius: .5rem;
        box-shadow: var(--box-shadow);
    }

        

        .menu .box-container .box .image {
            height: 25rem;
            width: 100%;
            padding: 1.5rem;
            overflow: hidden;
            position: relative;
        }

            .menu .box-container .box .image img {
                height: 100%;
                width: 100%;
                border-radius: .5rem;
                object-fit: cover;
            }


        .menu .box-container .box .content {
            padding: 2rem;
            padding-top: 0;
        }



            .menu .box-container .box .content h3 {
                color: var(--black);
                font-size: 2.5rem;
            }

            .menu .box-container .box .content p {
                color: var(--light-color);
                font-size: 1.6rem;
                padding: .5rem 0;
                line-height: 1.5;
            }

            .menu .box-container .box .content .price {
                color: var(--grey);
                margin-left: 1rem;
                font-size: 2rem;
            }



.order form {
    max-width: 90rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: .1rem solid rgba(0,0,0,.2);
    background: #fff;
    padding: 1.5rem;
    margin: 0 auto;
}

    .order form .inputBox {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .order form .inputBox .input {
            width: 49%;
        }

            .order form .inputBox .input span {
                display: block;
                padding: .5rem 0;
                font-size: 1.5rem;
                color: var(--light-color);
            }

            .order form .inputBox .input input,
            .order form .inputBox .input textarea {
                background: #eee;
                border-radius: .5rem;
                padding: 1rem;
                font-size: 1.6rem;
                color: var(--black);
                text-transform: none;
                margin-bottom: 1rem;
                width: 100%;
            }

                .order form .inputBox .input input:focus,
                .order form .inputBox .input textarea:focus {
                    border: .1rem solid var(--green);
                }

            .order form .inputBox .input textarea {
                height: 20rem;
                resize: none;
            }

    .order form .btn {
        margin-top: 0;
    }



/* media queries  */

@media (max-width:991px) {

    html {
        font-size: 55%;
    }

    header {
        padding: 1rem 2rem;
    }

    section {
        padding: 2rem;
    }
}

@media (max-width:768px) {

    header .icons #menu-bars {
        display: inline-block;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: .1rem solid rgba(0,0,0,.2);
        border-bottom: .1rem solid rgba(0,0,0,.2);
        padding: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

        header .navbar.active {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        }

        header .navbar a {
            display: block;
            padding: 1.5rem;
            margin: 1rem;
            font-size: 2rem;
            background: #eee;
        }

    .home .home-slider .slide .content h3 {
        font-size: 5rem;
    }

     .Verberg {
            display:none;
        }
 

}

@media (max-width:450px) {

    html {
        font-size: 50%;
    }


    .order form .inputBox .input {
        width: 100%;
    }

     
}
