/* FONTS */

/* open-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v44-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* COLORS */

/* dark     #262321 */
/* yellow   #FFF9ED */

/* GENERAL */

*{
	box-sizing: border-box;
	outline: 0px !important;
}

body{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #262321;
}

.clear{
	clear: both;
}

.maxwidth{
	max-width: 1200px;
	margin: 0 auto;
}

.align-center{
    align-items: center;
}

.nobreak{
    display: inline-block;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 200;
}

h1, h2{
    margin-bottom: 20px;
}

h3{
    margin-top: 40px;
}

p.subheadline{
    margin-bottom: 20px;
    font-size: 20px;
}

.marginmiddle{
    margin-top: 60px;
    margin-bottom: 60px;
}

a, a:hover{
    color: #262321;
    text-decoration: underline;
}

img{
    max-width: 100%;
}

img.round{
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

section{
    padding: 80px 0;
}

.pb0{
    padding-bottom: 0;
}

.btn{
    background-color: #9f928b;
    color: #FFF9ED;
    text-decoration: none;
    /* box-shadow: 0px 2px 4px rgba(0,0,0,0.2); */
}

.btn:hover{
    background-color: #262321;
    color: #FFF9ED;
}

.teaser-item{
    margin-top: 20px;
    margin-bottom: 20px;
}

section#einleitung,
section#buchung{
    background-color: #FFF9ED;
}

footer{
    padding: 20px 0;
}

footer .navi{
    text-align: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer .navi li{
    display: inline-block;
    border-right: 1px solid #bdbdbd;
    line-height: 12px;
    margin-right: 4px;
    padding-right: 6px;
}

footer .navi li:last-child{
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}

footer .navi a{
    color: #262321;
    font-size: 12px;
    text-decoration: none;
}

#klaro-cookie-notice .cn-buttons .cm-btn-success{
    background-color: #262321;
    color: #fff5de;
}

#klaro-cookie-notice .cn-buttons .cn-decline{
    background-color: transparent;
    color: #262321;
}

#klaro-cookie-notice .cn-learn-more{
    background-color: transparent;
    color: #262321;
    text-decoration: underline;
}

@media (max-width: 1400px){
	
	.maxwidth{
		max-width: 90%;
	}
	
}

@media (max-width: 991px){

    section#einleitung{
        text-align: center;
        padding: 30px 0 60px 0;
    }

    section#einleitung ul{
        text-align: left;
    }

    img.borismeinzer{
        box-shadow: 0px 14px 10px -14px rgba(0,0,0,0.4);
        max-width: 400px;
    }
	
	img.logo{
        margin-top: 50px;
    }
	
}

@media (max-width: 600px){
	
    h1{
        font-size: 2rem;
    }
    
    h2{
        font-size: 1.5rem;
    }
    
    h3{
        font-size: 1.2rem;
    }
    
    img.round{
        max-width: 100%;
        margin: 20px auto;
        display: block;
    }

    img.borismeinzer{
        max-width: 300px;
    }
	
}