:root{
    --primary-color : #C3A460;
    --secondary-color : #2A2A2A;
    --main-txt-color : #ffffff;
    --secondary-txt-color : #000000;
    --btn-bg-color : #C3A460;
    --btn-bg-hover-color : #000000;
    --btn-txt-color : #fff;
    --btn-bg-shadow: 2px 2px 6.7px rgba(0, 0, 0, 0.112),10px 10px 22px rgba(0, 0, 0, 0.22);
    --hero-img-shadow:0.6px 0.6px 1.1px rgba(0, 0, 0, 0.073),2.8px 2.8px 4.5px rgba(0, 0, 0, 0.092),10.3px 10.3px 12.4px rgba(0, 0, 0, 0.105),30px 30px 25px rgba(0, 0, 0, 0.18);
    --scroll-bar-color:#C3A460;
    --scroll-hover-bar-color:#C3A460;
    --main-font-family: 'Poppins', sans-serif;
    --fs-large:3rem; 
    --fs-medium:1.8rem; 
    --fs-regular:1.4; 
    --fw-xlarge:900; 
    --fw-large:700; 
    --fw-medium:500; 
    --fw-regular:400; 
}

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

html{
    scroll-behavior: smooth;
}

body{
    background-color: var(--secondary-color);
    font-family: var(--main-font-family);
    transition: all .75s ease-in-out;
}

a {
    color: inherit;
    text-decoration: none;
}

.section{
    padding: 50px 140px;
    overflow: hidden;
}

.section-header{
    font-size: var(--fs-large);
    font-weight: var(--fw-large);
    color: var(--main-txt-color);
    text-align: center;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 10px;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.nav li{
    list-style-type: none;
}
.nav li a{
    text-decoration: none;
}

.btn{
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    background-color: var(--btn-bg-color);
    font-size: var(--fs-regular);
    font-weight: var(--fw-large);
    color: var(--btn-txt-color);
    cursor: pointer;
    transition: all .5s ease;
}
.btn i{
    padding-left: 10px;
}
.btn:hover{
    transform: translateY(-5px) scale(1.05);
    background-color: var(--btn-bg-hover-color);
    box-shadow: var(--btn-bg-shadow);
}

/* //////////// HOME //////////// */

.home-section{
    min-height: 100vh;
    width: 100%;
    flex-direction: column;
    position: relative;
}

.header-nav{
    width: 100%;
    position: relative;
}

.header-nav-list{
    height: 0;
    width: 0;
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 80px;
    background-color: rgb(39, 37, 38);
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    z-index: 99;
    overflow: hidden;
    transition: all .5s cubic-bezier(0.55, 0.085, 0.68 , 0.53) 0.1s;
}
.header-nav-list.open{
    height: 50vh;
    width: 350px;
    visibility: visible;
    opacity: 1;
}
.header-nav-list li{
    opacity: 0;
    transform: translateX(500%);
    transition: transform .75s ease-in-out;
    transition-delay: 1s;
}
.header-nav-list li.open{
    opacity: 1;
    transform: translateX(0);
}
.nav-link{
    font-size: var(--fs-medium);
    font-weight: var(--fw-medium);
    color: var(--main-txt-color);
}
.nav-link:hover,
.nav-link.active{
    color: var(--primary-color) !important;
}

/* //////////// MENU //////////// */

.menu-icon{
    position: absolute;
    top: 0;
    right: 10px;
    cursor: pointer;
    font-size: var(--fs-medium);
    color: var(--main-txt-color);
}

.home-section .hero{
    height: 100%;
    width: auto;
    flex-direction: column;
}
.hero .hero-img{
    height: 50%;
    width: auto;
    position: relative;
    padding-bottom: 40px;
}

.hero-img img{
    width: 70%;
    z-index: 2;
}

.hero-img-bg{
    content: "";
    position: absolute;
    height: 300px;
    width: 300px;
    background-color: #C3A460;
    border-radius: 50%;
    box-shadow: var(--hero-img-shadow);
}

.hero-content{
    height: 35vh;
    width: 100%;
    padding: 20px 0;
    flex-direction: column;
    text-align: center;
    color: var(--main-txt-color);
    overflow: hidden;
}

.hero-content .header{
    font-size: var(--fs-large);
}
.hero-content span{
    color: var(--primary-color);
}

.footer-nav{
    width: 300px;
    font-size: var(--fs-medium);
    color: var(--primary-color);
}

.li, .footer-nav li{
    cursor: pointer;
    transition: transform .5s ease-in-out;
}

.li:hover,
.footer-nav li:hover{
    transform: translateY(-5px) scale(1.5);
}

/* //////////// BEREICH 1 //////////// */
.waswirbieten-section{
    height: auto;
    width: 100%;
}

.waswirbieten{
    height: auto;
    width: 100%;
    margin: 50px 0;
    overflow: hidden;
}

.waswirbieten .waswirbieten-img{
    height: 100%;
    width: 60%;
    /*display: flex;
    justify-content: center;*/
}

.waswirbieten-img img{
    width: 100%;
    border-radius: 1.5rem;
}

.waswirbieten .waswirbieten-content{
    min-height: 30vh;
    width: 50%;
    padding-inline:50px ;
    flex-direction: column;
    align-items: flex-start;
    color: var(--main-txt-color);
}

.waswirbieten-content .btn-group button{
    margin-right: 20px;
}
/* //////////// BEREICH 2 //////////// */
.ueberuns-section{
    height: auto;
    width: 100%;
}

.ueberuns-content{
    height: 90%;
    width: 100%;
    padding: 50px 0;
}

.ueberuns-section .ueberuns-img{
    height: 100%;
    width: 50%;
}

.ueberuns-img img{
    width: 80%;
}

.ueberuns-content .ueberuns-info{
    height: 100%;
    width: 50%;
    color: var(--main-txt-color);
}

.ueberuns-info h1{
    font-size: var(--fs-medium);
}

.ueberuns-info p{
    font-size: var(--fs-regular);
}
/* //////////// BEREICH 3 //////////// */
.kontakt-section{
    height: auto;
    width: 100%;
    padding: 50px 0;
}
.kontakt-section form {
    padding-top: 20px;
}

.kontakt-section form,
form .kontakt-group{
    flex-direction: column;
}

.kontakt-group{
    height: auto;
    width: 100%;
}

.kontakt-group input,
textarea{
    width: 350px;
    margin: 10px 0;
    padding: 1rem 1.2rem;
    border-radius: .5rem;
    background-color: rgba(238,220,238,0.6);
    color: #000;
    font-family: var(--main-font-family);
    font-size: var(--fs-regular);
    font-weight: var(--fw-medium);
}

.kontakt-group input::placeholder,
textarea::placeholder{
    font-size: var(--fs-regular);
}

textarea{
    height: 11rem;
}

.submit-btn{
    margin: 20px;
}

/* //////////// BEREICH FUß //////////// */
.footer-section{
    background-color: var(--primary-color);
    color: #fff;
    overflow: hidden;
}

.footer-nav li{
    color: #fff;
}

/* //////////// SCROLLING //////////// */
::-webkit-scrollbar{
    height: 10px;
    width: 10px;
}

::-webkit-scrollbar-track{
    background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb{
    background-color: var(--scroll-bar-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover{
    background-color: var(--scroll-hover-bar-color);
}
/* //////////// SCROLL BUTTON //////////// */
.scroll-top-icon{
    visibility: hidden;
    position: fixed;
    bottom: 20px;
    right: 40px;
    font-size: var(--fs-large);
    color: var(--primary-color);
    cursor: pointer;
    z-index: 9999;
}
.show-scroll{
    visibility: visible;
}

/* //////////// RESPONSIVES DESIGN //////////// */

@media (max-width: 767px) {
    :root{
        /* font sizes  */
        --fs-large: 1.5rem; 
        --fs-medium: 1rem; 
        --fs-regular: 1rem; 
    }
    
    .section{
        padding: 0 20px;
        padding-bottom: 5%;
    }

    .header-nav-list{
        top: 50px;
    }

    .hero .hero-img{
        height: 400px;
    }

    .waswirbieten{
        flex-direction: column;
    }

    .waswirbieten .waswirbieten-img{
        height: 50%;
        width: 100%;
    }

    .waswirbieten-img img{
        height: 100%;
    }

    .waswirbieten .waswirbieten-content{
        min-height: 45vh;
        width: 100%;
        padding-inline: 20px;
        align-items: center;
        text-align: center;
    }

    .waswirbieten-content .btn-group button{
        margin-right: 20px;
    }

    .ueberuns-section .ueberuns-img{
        height: 50%;
        width: 100%;
    }
    .ueberuns-content{
        flex-direction: column;
        text-align: center;
    }

    .ueberuns-content .ueberuns-info{
        width: 100%;
        padding-top: 20px;
    }

    .footer-section{
        padding: 10px;
        background-color: var(--primary-color);
        color: #fff;
        flex-direction: column;
    }

}