*{
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;    
    @font-face {
        font-family: 'Handlee';
        src: url('..\fonts\Handlee\Handlee-Regular.ttf');
    } 
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: url(images/banner.JPG);
    background-position: top;
    background-size: cover;
    position: relative;

}
nav{
    background-color: #fff;
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 85px;
}
.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: #4e3604;
    text-decoration: none;
    font-size: 14px;    
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #c8ac32;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.flex { 
    display:flex; 
    justify-content: center; 
    align-items: center;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 18px;
    color: #4e3604;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #4e3604;
    border: 1px solid #4e3604;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #c8ac32;
    background: #c8ac32;
    color: #fff;
    transition: 1s;
}
nav .fa{
    display: none;
}
@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
        font-family: 'Handlee', cursive;
    }
    .nav-links ul li{
        display: block;        
    }
    .nav-links ul li a{
        color: #fff;
    }
    .nav-links{
        position: absolute;
        background: #c8ac32;        
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #4e3604;        
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;        
    }
}

/*----- WILLKOMMEN -----*/
.willkommen{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
    color:#c8ac32;
}
.txtwelcome{
    color:#4e3604;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    text-align: left;
    padding: 10px;
}
.welcome{
    flex-basis: 32%;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden; 
}
.welcome img{
    width: 75%;
    height: auto;    
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .txtwelcome{
        font-size: 16px;
        line-height: 24px;
    }
}

/*----- YOGA -----*/
.yoga{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
    color:#c8ac32;
}
p{
    color:#4e3604;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    padding: 10px;
    text-align: left;
}
.row{
    margin: 5%;
    display: flex;
    justify-content: space-between;
}
.course-col{
    flex-basis: 31%;
    background: #c8ac32;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    color:#fff;
    font-weight: 600;
    margin: 10px 0;
}
.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.5);    
}

.raum{
    flex-basis: 32%;
    border-radius: 10px;
    margin-top: 50px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;   
}
.raum img{
    width: 75%;
    height: auto;    
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .txtYoga{
        font-size: 16px;
        line-height: 24px;
    }
    .txtYogaStil{
        font-size: 16px;
        line-height: 24px;
    }    
}

/*----- KURSE UND PREISE -----*/
.kurse{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.kurse-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;    
}
.kurse-col img{
    width: 100%;
    display: block;
}
.kurstabelle{
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    min-width: 800px;
    border-collapse: collapse;    
    font-size: 18px;    
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);    
}
.kurstabelle thead tr{
    background-color: #c8ac32;
    color: #4e3604;
    text-align: left;
    font-weight: bold;
}
.kurstabelle th,
.kurstabelle td{
    padding: 12px 15px;    
}
.kurstabelle tbody tr{
    border-bottom: 1px solid #dddddd;
    text-align: left;    
}
.kurstabelle tbody tr:nth-of-type(even){
    background-color: #f5f2da;
}
.kurstabelle tbody tr:last-of-type{
    border-bottom: 2px solid #c8ac32;
}
p{
    margin-top: 25px;
    color: #4e3604;
}


@media(max-width: 700px){
    .kurstabelle{
        min-width: 250px;
        font-size: 13px;
        line-height: 24px;
    }
}

/*----- ÜBER MICH -----*/
.about{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
    color:#c8ac32;
}
.txtAboutMe{
    color:#4e3604;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    text-align: left;
    padding: 10px;
    margin-bottom: 5px;
}
.aboutme{
    flex-basis: 32%;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden; 
}
.liste{
    color:#4e3604;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    text-align: left;
    padding: 10px;
    margin-bottom: 25px;
}
.aboutme img{
    width: 75%;
    height: auto;    
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .txtAboutMe{
        font-size: 16px;
        line-height: 24px;
    }
    .liste{
        font-size: 16px;
        line-height: 24px;
    }
}

/*----- KONTAKT -----*/
.kontakt{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
    color:#c8ac32;
}
.txtKontakt{
    color:#4e3604;
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    text-align: left;
    padding: 10px;
}
.kontaktbild{
    flex-basis: 32%;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden; 
}
.kontakt img{
    width: 75%;
    height: auto;    
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    border-radius: 20px;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .txtKontakt{
        font-size: 16px;
        line-height: 24px;
    }
}
/*----- IMPRESSUM -----*/
.impressum{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
    color:#c8ac32;
}
.txtImpressum{
    color:#4e3604;
    font-size: 12px;
    font-weight: 300;
    line-height: 22px;
    text-align: left;
    padding: 10px;}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .txtKontakt{
        font-size: 16px;
        line-height: 24px;
    }
}