html,
body {
    margin: 0;
    padding: 0;
    background: #FCFFF9;
}


/* MAIN */

section {
    margin: auto;
    width: clamp(900px, calc(100% - 4rem), 1200px);
    position: relative;
}

.grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 1rem;
}

.grid > div {
    width: calc(100% - 1rem);
}


/* HEADER */

header {
    margin: 0;
}

header > div {
    margin: auto;
    width: clamp(900px, calc(100% - 4rem), 1200px);
    position: relative;
}

header.top {
    height: .8rem;
    padding: .75rem 2rem;
    position: relative;
}

header.top b {
    font-family: "MontBlack";
}

header.main {
    padding: 1rem 0;
    position: relative;
    background-color: #768369;
}

.social--icons {
    height: 2.3rem;
    position: absolute;
    top: 0;
    right: 0;
}

@media screen and (max-width: 950px) {
    header > div {
        width: 100%;
    }
}


/* MENU */

nav {
    position: absolute;
    top: -1rem;
    right: 0;
    margin: 0;
    z-index: 7;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    font-family: 'DreamLife';
    list-style: none;
    display: inline-block;
    margin: 1rem .5rem;
    padding: 1rem 1rem .65rem 1rem;
    color: #FCFFF9;
    font-size: .9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

li:hover {
    transform: scale(1.1);
    text-shadow: 0 0 .25rem rgba(0, 0, 0, .5);
}

@media screen and (max-width: 950px) {
    nav {
        display: none;
    }
}


/* BANNER */

.banner {
    padding: 7rem 0;
    position: absolute;
    background: #768369;
    background-image: url("/img/haelta-achtergrond-kruiden-herbalist-herbalism.jpg");
    background-position: center;
    background-size: cover;
    background-blend-mode: soft-light;
    top: 2.3rem;
    width: 100%;
    z-index: 5;
}

.banner > div {
    margin: auto;
    width: clamp(900px, calc(100% - 4rem), 1200px);
    position: relative;
}

.banner::after {
    content: " ";
    width: 100%;
    height: 6rem;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 950px) {
    .banner {
        padding: 4rem 0;
    }

    .banner > div {
        width: 100%;
        text-align: center;
    }
}


/* HERBARIUM */

.herb--feature {
    
}

.herb--feature img {
    width: 100%;
    border-radius: .5rem;
}


/* SVG */

svg {
    fill: #605245;
}

header.main svg {
    fill: #FCFFF9;
    height: 2.5rem;
}

.banner svg {
    fill: #FCFFF9;
    width: 40%;
    z-index: 8;
    
    -webkit-filter: drop-shadow(0 0 .5rem rgba(0, 0, 0, .5));
    filter: drop-shadow(0 0 .5rem rgba(0, 0, 0, .5));
}

@media screen and (max-width: 950px) {
    .banner svg {
        width: 60%;
        margin: auto;
    }
}


/* TEXT */

body {
    color: #605245;
    letter-spacing: 25%;
    font-family: 'Helvetica';
    font-size: .9rem;
}

header.top {
    font-family: 'Mont';
    font-size: .7rem;
}

header.top b {
    font-family: "MontBlack";
}


/* LINK */

a:any-link {
    text-decoration: none;
    color: #605245;
    transition: 0.3s;
}

a:hover {
    color: #768369;
}