:root {
    --color-primary: #C9A96E;
    --color-secondary: #E5D1B6;
    --color-accent: #999A72;
    --color-dark: #252E26;
    --color-dark-o60: rgba(37, 46, 38, 0.6);
    --color-dark-o80: rgba(37, 46, 38, 0.8);
    --color-light: #f5f5f5;
    --color-light-o10: rgba(245, 245, 245, 0.1);
    --color-white: #ffffff;
    --color-black: #000000;

    --font-primary: 'Lexend', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;
    --font-size: 13px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark);
    font-size: var(--font-size);
}

header {
    position: fixed;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: background-color 0.75s ease-in-out;
}

header.scrolled {
    background-color: var(--color-dark-o80);
    backdrop-filter: blur(1px);
}

header nav {
    box-shadow: 0 0 75px 0 rgba(0, 0, 0, 0.5);
    background-color: var(--color-dark);
    margin: 25px;
    padding: 20px 30px;
    border-radius: 50px;
}

header .btn.menu {
    padding: 16px 14px 11px 14px;
    border-radius: 50px;
    right: 10px;
    position: fixed;
}

header .btn b {
    position: absolute;
    color: var(--color-secondary);
    margin-left: -45px;
}

header .btn.menu span {
    display: block;
    width: 21px;
    height: 3px;
    margin-bottom: 4px;
    position: relative;

    background: var(--color-secondary);
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        opacity 0.55s ease;
}

header .btn.menu:first-child {
    transform-origin: 0% 0%;
}

header .btn.menu:nth-last-child(2) {
    transform-origin: 0% 100%;
}


header nav a {
    color: var(--color-white);
    text-decoration: none;
    margin: 0 25px;
}

header .btn {
    display: none;
}



header img {
    left: 0;
    position: fixed;
    margin: 25px;
    max-height: 80px;
}

.v_olive {
    position: absolute;
    width: 450px;
    top: -60px;
    opacity: .6;
}


section {
    position: relative;
    overflow: hidden;
    min-height: 30vh;
    padding-bottom: 20px;
    z-index: 2;
}

section .wrapper {
    max-width: 1000px;
    padding: 50px 25px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;

    justify-content: space-between;
}

section .text {
    font-size: 18px;
    line-height: 30px;
    max-width: 48%;
    margin-top: 60px;
    color: var(--color-secondary);
    font-weight: 200;
}


section#hero-section {
    background: url('../img/bg.jpg') top center no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

section#hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100vh;
    background-color: var(--color-dark-o60);
}

section#hero-section>img {
    position: relative;
    z-index: 5;
    width: 400px;
}

section#hero-section>img:nth-child(3) {
    margin: 50px 0 25px 0;
    width: 600px;
}



section.white {
    background-color: var(--color-light);
    border-top: 5px solid var(--color-primary);
}

section.curve {
    position: relative;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" preserveAspectRatio="none"><path d="M 0 50 C 355 -81 509 116 1000 50 L 1000 1000 L 0 1000 Z" fill="black" /></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" preserveAspectRatio="none"><path d="M 0 50 C 355 -81 509 116 1000 50 L 1000 1000 L 0 1000 Z" fill="black"/></svg>');
    margin-top: -10vh;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: var(--color-primary);
}

section.margin-hight {
    margin-top: -20vh;
}

section.curve:after {
    content: '';
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" preserveAspectRatio="none"><path d="M 0 50 C 355 -81 509 116 1000 50 L 1000 1000 L 0 1000 Z" fill="black" /></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" preserveAspectRatio="none"><path d="M 0 50 C 355 -81 509 116 1000 50 L 1000 1000 L 0 1000 Z" fill="black"/></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: var(--color-dark);
    margin-top: 5px;
}

section * {
    position: relative;
    z-index: 4;
}

.wrapper.menuwrap {
    display: block;
}


h2 {

    font-weight: 300;
    line-height: 60px;
    margin-top: -15px;
    font-family: var(--font-secondary);
    color: var(--color-white);
    font-size: 40px;
}

h3 {
    border-bottom: 2px solid #000;
    padding: 15px 0 9px 0;
    font-family: var(--font-secondary);
    font-size: 25px;
    color: var(--color-white);
}

h3 span {
    color: var(--color-primary);
    font-size: 18px;
    margin-top: 8px;
    margin-left: 15px;
}

.item {
    position: relative;
    margin-top: 25px;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    font-size: 25px;
    display: grid;
    grid-template-columns: auto 59px;
    grid-template-rows: repeat(1, 1fr);
    column-gap: 5px;
    justify-content: stretch;
    justify-items: stretch;
    align-content: start;
}

.item h4 {
    grid-column: 1;
    font-weight: 300;
    font-size: 18px;
    padding-right: 55px;
    color: var(--color-white);
}

.item .desc {
    grid-column: 1;
    grid-row: 1/2;
}


.item p {
    grid-column: 1;
    padding-top: 5px;
    padding-right: 55px;
    line-height: 20px;
    margin-top: 0;
    text-align: left;
    font-size: 15px;
    color: var(--color-primary) !important;
}

.item .price {
    text-align: right;
    grid-column: 2;
    grid-row: 1/2;

}

.item .price>span {
    color: var(--color-white);
    font-size: 18px;
    font-family: var(--font-primary);
    display: block;
    position: relative;
}



.item .price>span>span {
    display: block;
    font-size: 10px;
    opacity: 0.7;
    right: 0;
    margin-bottom: 10px;
}


section.white h3,
section.white h2,
section.white .item h4,
section.white .item h3 {
    color: var(--color-dark);
}


p {
    font-size: 18px;
    line-height: 30px;
    margin-top: 20px;
    color: var(--color-white);
    font-weight: 400;
    min-width: 50%;
}

section.white p,
section.white .item span {
    color: var(--color-dark);
}


.quote {
    font-weight: 300;
    line-height: 60px;
    font-family: var(--font-secondary);
    color: var(--color-white);
    font-size: 80px;
}

.quote i {
    display: block;
    font-size: 40px;
    color: var(--color-primary);
}



.visual {
    overflow: hidden;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center center;
    margin-bottom: -20px;
    opacity: .6;
    position: relative;
}

.visual:before {
    height: 69px;
    width: 106%;
    content: "";
    position: absolute;
    background-color: var(--color-dark);
    transform: rotate(-2deg);
    margin-top: -38px;
    margin-left: -3px;
}

.white .visual:before {
    background-color: var(--color-light);

}

#imprint-section p {
    font-size: 15px;
    line-height: 18px;
    font-weight: 300;
}

#imprint-section p a {
    color: var(--color-primary);
}





@media screen and (max-width: 900px) {

    header nav {
        visibility: hidden;
    }

    header.active nav {
        display: block;
        transform: translateX(0px);
        visibility: visible;
    }

    header.active .btn.menu {
        z-index: 5;

    }

    .v_olive {
        position: absolute;
        width: 250px;
        top: -50px;
        opacity: .6;
        right: -30px;
        transform: scaleX(-1);
    }

    header nav {
        transform: translateX(500px);
        position: fixed;
        top: 0;
        left: 26px;
        bottom: 0;
        right: 0;
        margin: 0;
        z-index: 5;
        padding-top: 50px;
        background-color: var(--color-dark);
        backdrop-filter: blur(13px);
        height: 100vh;
        border-radius: 0;
        transition: all .5s ease-in-out;
    }

    header nav a {
        display: block;
        margin: 0;
        font-size: 35px;
        padding: 15px 0px;
    }


    header {
        min-height: 74px;
    }

    header img {
        max-height: 50px;
        margin: 15px;
    }

    header .btn {
        display: block;
    }


    .visual {
        height: 200px;

    }

    .visual:before {
        height: 46px;
        transform: rotate(-2deg);
        margin-top: -20px;
    }


    section#hero-section {
        justify-content: start;
        padding-top: 38vw;
        height: 70vh;
        background-size: 148vw;
    }

    section#hero-section .overlay {
        height: 70vh;
    }

    section#hero-section>img {
        position: relative;
        z-index: 5;
        width: 60%;
    }

    section#hero-section>img:nth-child(3) {
        width: 80%;
        margin: 30px 0 15px 0;
    }

    section#hero-section>img:nth-child(4) {
        width: 70%;
    }

    section.curve {
        margin-top: -40px;
    }



    section .wrapper {
        display: block;
        margin: 0px;
    }


    .quote {
        line-height: 40px;
        font-size: 50px;
    }

    .quote i {
        font-size: 25px;
    }

    h2 {
        text-align: center;
        font-size: 25px;
        margin-top: -35px;
    }

    p {
        text-align: center;
    }

}

@media screen and (max-width: 700px) {
    .visual:before {
        height: 46px;
        transform: rotate(-3deg);
        margin-top: -20px;
    }
}

@media screen and (min-width: 2000px) {
    .visual {
        max-width: 2000px;
        margin-left: auto;
        margin-right: auto;
    }
}