*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

a,
a:visited,
a:link {
    color: #F9BF77;
    text-decoration: none;
    text-decoration: bold;
}

.list:hover {
    text-decoration: bold;
}

body {

    font-size: 2rem;
    font-family: 'Lato', sans-serif;
    background: #F9BF77;
}

.nav {
    width: 100%;
    background: rgba(128, 89, 0, 0.7);
    display: flex;
    justify-content: space-between;
    min-height: 7rem;
    align-items: center;
    color: #eee;
    padding: 2rem;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.seedling {
    font-size: 150%;
    color: #F9BF77;
    border: 0.5rem solid #F9BF77;
    border-radius: 50%;
    padding: 1.5rem;
}

.list {
    display: flex;
    list-style: none;
    gap: 4rem;
    font-size: 120%;
}

.cta {
    width: 11rem;
    padding: 1rem;
    font-size: 70%;
    background: #E67E22;
    border: none;
    color: #eee;
    border-radius: 1rem;
    text-transform: uppercase;
}

.cta:hover {
    cursor: pointer;
    background: hsl(30, 100%, 50%);
    transition: 0.2s;
}

.banner {
    height: 100vh;
    width: 100%;
    position: relative;
}

.banner>figure {
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom right, rgba(128, 89, 0, 0.7), 80%, rgba(233, 69, 96, 0.5)), url(../images/pexels-rachel-claire-4577555.jpg);
    object-position: bottom;
    object-fit: cover;

}

.banner>figure>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    color: #eee;
    text-align: center;
}



.heading {
    font-family: 'Chewy', cursive;
    font-size: 400%;
    Color: #BF5700
}

.heading2 {
    font-family: 'Chewy', cursive;
    font-size: 300%;
    Color: #BF5700
}

.logo {
    font-size: 250%;
    color: #F9BF77;
    border: 0.5rem solid #F9BF77;
    border-radius: 50%;
    padding: 1.5rem;
}

.over {
    padding: 4rem;
    height: 80rem;
    border-bottom: 0.5rem solid #E94560;
}

.over>header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.over>header>h2 {
    Color: #BF5700;
    font-size: 350%;
    font-family: 'Chewy', cursive;
}

.over>div {
    display: flex;
    gap: 4rem;
    justify-content: center;
    height: 100%;
}

.over>div>div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.over>div>div>p {
    width: 55ch;
    color: #BF5700
}

.over>div>figure>img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

.over>div>figure {
    position: relative;
    width: 50rem;
    height: 40rem;
}


.over>div>figure::after {
    content: "";
    background: linear-gradient(to bottom right, rgba(191, 160, 130, 0.8), rgba(178, 121, 73, 0.5));
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.kenmerken {
    height: 130vh;
    border-bottom: 0.5rem solid #E94560;
    padding: 4rem;
}

.kenmerken>header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem;
    height: 20%;
}

.kenmerken>header>h2 {
    color: #BF5700;
    font-size: 350%;
    font-family: 'Chewy', cursive;
}

.onzeKenmerken {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 80%;
    padding: 2rem;
    color: #BF5700;

}

.kenmerk {
    list-style: none;
    Color: #BF5700;
    width: 40%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.kenmerk>p {
    width: 40ch;
}

.kenmerkIcon {
    font-size: 200%;
    border: 0.2rem solid #E94560;
    padding: 2rem;
    border-radius: 50%;
}

.gallerij {
    height: 80vh;

}

.gallerij>header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 6rem;
}

.gallerij>header>h2 {
    color: #BF5700;
    font-size: 350%;
    font-family: 'Chewy', cursive;
}

.fotos {
    display: flex;
    flex-wrap: wrap;

}

.foto {
    width: 25%;
    height: 40rem;
    list-style: none;
    position: relative;
}

.foto>section {
    content: "Hallo!";
    width: 100%;
    height: 100%;
    background: red;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(223, 185, 130, 0.8), rgba(178, 121, 73, 0.5));
    transform: scaleX(0);
    transition: 0.8s;
    transform-origin: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foto>section>.cta {
    opacity: 0;
    transition-delay: 0.45;
}

.foto:hover>section>.cta {
    opacity: 1;

}

.foto:hover>section {
    transform: scale(1);
}

.foto>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 75rem) {
    body {
        font-size: 1.6rem;
    }

    .banner {
        height: 140rem;
    }

    .over {
        min-height: 140rem;
    }

    .over>header {
        height: 20%;
    }

    .over>div {
        flex-direction: column;
        height: 80%;
    }

    .over>div>div {
        height: 60%;
    }

    .over>div>div>p {
        width: 100%;
        color: #eee;
    }

    .over>div>figure {
        position: relative;
        width: 100%;
        height: 40%;
    }

    .kenmerken {
        min-height: 120rem;
    }

    .kenmerk {
        width: 100%;
    }

    .gallerij {
        height: auto;
    }

    .foto {
        height: 20rem;
        width: 100%;

    }

    .fotos {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
        border-radius: 2rem;
        margin: 1rem;
    }

    .foto:hover>section>.cta {
        opacity: 0;
    }

    .foto:hover>section {
        transform: scale(0);
    }
}

@media screen and (max-width: 50rem) {

    .list {
        flex-direction: column;
    }

}