
@import "compass";


@import url('https://fonts.googleapis.com/css2?family=Poppins');

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

}

a{
    text-decoration: none;
}

input{
    display: none;
}

html{
    height: 100%;
}
body{
    height: 100%;

}

header {
    width: 100%;
    height: 100vh;
    background-image: url('./foto1.jpg');
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    

}

.header-content{
    margin-bottom: 150px;
    color: rgba(236, 224, 210, 1);
    text-align: center;
}

.header-content h2{
    font-size: 4vmin;
    margin-top: 50px;

}


.line{
    width: 50%;
    height: 4px;
    background: #a88661;
    margin: 10px auto;
    border-radius: 5px;
}

.line2{
    width:50%;
    height: 2px;
    background: #a88661;
    margin: 10px auto;
    border-radius: 5px;
    margin-bottom: 70px;
}

.header-content h1{
    font-size: 7vmin;
    margin-top: 50px;
    margin-bottom: 30px;
}

.ctn {
    padding: 8px 15px;
    background:rgba(236, 224, 210, 1);
    border-radius: 30px;
    color: #a88661;
}

.cnt2{
    font-weight: 600;
    text-decoration: underline;
}
/* Services */
section {
    width: 80%;
    margin: 0px auto;
}

.title {
    text-align: center;
    font-size: 4vmin;
    color: #a88661;
}
 .row {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 60px;
 }

 .row .col {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    
 }

 .imgservice {
    width: 100%;
    height: 100%;
    border-radius: 10%;
 }

 .events .row {
    margin-top: 50px;
 }

 h4 {
    font-size: 3vh;
    color: #a88661;
    margin: 20px auto;
 }
 
 p{
    color: #7c7c7c;
    padding: 0px 40px;
    font-family: Helvetica;
    font-weight: 500;
    font-size: 17px;
 }




/* Über Uns*/

.text {
    padding: 5px 100px;
    text-align: center;
    color: #00142f;
    margin: 10px;
}

.logo{
	margin-top: 10px;
}

header{
    margin-bottom: 50px;
}

.overplay{
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.ueberuns {
    display: inline-flex;
    flex-direction: row;
    width: 100%;
    min-height: 100%;
    background-position: center;
    border-top-right-radius: 80px;
    border-top-left-radius: 80px;
    background-color: rgba(236, 224, 210, 1);
    
}

h1{
    margin-top: 30px;
}

.footer{
    width: 100%;
    min-height: 150px;
    padding: 20px 80px;
    margin: 0;
    background: #504e63;
    text-align: center;
}

.footer p{
    color: antiquewhite;
    margin: 20px auto;
    padding: 20px auto;
}

.imguu{
    width: 50%;
    height: 100%;
    display: block;
    margin-top: 0;
    border-radius: 80px;
}

@media screen and (max-width: 1350px){
    .imguu{
        display: none;
    }


}

/* Animationen*/

img {
    transition: transform .3s ease;
}
img:hover{
    transform: scale(1.05);
}

.toggle_button {
    width: 30px;
    height: 23px;

    position: absolute;
    top: 25px;
    right: 25px;

    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.bar{
    height: 4px;
    width: 100%;
    background: #ffffff;
    border-radius: 100px;    
}

nav{
    height: 80px;
    background: rgba(236, 224, 210, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul{
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}
nav li{
    height: 100%;
    width: 150px;
    text-align:center;
}
nav li:hover {
    background: #7c7c7c;
}
nav ul a {
    height: 100%;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #a88661;
    font-size: 22px;
}
nav .logo{
    margin-left: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    font-variant: small-caps;
    text-decoration: none;
    color: #a88661;
}

@media screen and (max-width: 950px){
    .toggle_button{
        display: flex;
    }
    nav ul{
        height: min-content;
        width: 100%;
        background: rgba(236, 224, 210, 1);

        display: none;
        position: absolute;
        top: 80px;

    }
    nav li{
        height: min-content;
        width: 100%;
    }

    nav ul a{
        padding: 30px 0;
    }

    #toggle_button:checked ~ ul{
        display: block;
        border-bottom-right-radius: 50px;
        border-bottom-left-radius: 50px;
    }
    #toggle_button:checked ~ 
    .footer{
        height: 50%;
    }
    
}
.formular{
    display: block;
    width: 100%;
}