*{
    margin: 0;
    padding: 0;
    font-family: 'mr-eaves-sans', sans-serif;
}

.logo{
    width: 80%;
    display: flex;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(
        rgba(26, 16, 51, 0.7), 
        rgba(57, 49, 20, 0.7)),
        url(images/Bannercop.jpg);
        background-position: center;
        background-size: cover;
        position: relative;
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 150px;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: rgba(156, 134, 53, 0.7);
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: white;
}

.hero-btn{
    display: inline-block;
    font-weight: 500;
    font-size: 40px;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    margin-top: 30px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid rgba(57, 49, 20, 0.7);
    background: rgba(57, 49, 20, 0.7);
    transition: 0.5s;
}

nav .bi{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: rgba(57, 49, 20, 0.7);;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.7s;
    }

    nav .bi{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul{
        padding: 30px;
    }
}

/*------ videos ----*/

.videos{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

h1{
    font-size: 36px;
    font-weight: 600;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.videos-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;  
}

.videos-col iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*------music----*/
.music{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.music-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.music-col img{
    width: 100%;
    display: block;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.7s;
}
.layer:hover{
    background: rgba(57, 49, 20, 0.7);
}
.layer iframe{
    width: 100%;
    height: 90px;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover iframe{
    bottom: 40%;
    opacity: 1;
}

/*-------Events---------*/

.events{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

p{
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.content-table{
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    width: 100%;
    text-align: center;
}

.content-table thead tr{
    background-color: rgba(57, 49, 20, 0.7);
    opacity: 0.7;
    color: #fff;
    font-weight: 500;
}

.content-table th,
.content-table td {
padding: 12px 15px;
font-weight: 400;
}

.content-table tbody tr {
    border-bottom: 1px solid #dddddd;
}



/*-------Kontakt-------*/
.contact{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.antispam{display: none;}

p{
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.contact h1{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.icons{
    margin-top: 20px;
}

.icons .bi{
    color: rgba(57, 49, 20, 0.7);
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

form{
    margin-top: 50px;
    transition: all 4s ease-in-out;
}

.form-control{
    width: 600px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid gray;
    color: black;
    font-size: 18px;
    margin-bottom: 16px;
}
input{
    height: 45px;
}

form .submit{
    background: rgba(57, 49, 20, 0.7);
    border-color: transparent;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    height: 50px;
    margin-top: 20px;
}

form .submit:hover{
    background-color: rgba(57, 49, 20, 0.7);
    opacity: 0.8;
    cursor: pointer;
}

@media(max-width: 700px){
    .form-control{
        max-width: 300px;
    }
}

.footer{
    text-align: center;
    padding: 10px;    
}

.footer a{    
    color: rgba(57, 49, 20, 0.7);    
    margin-right: 15px;
}

.impressum{
    text-align: center;
}
