@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/inter-latin.woff2") format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- reset ---- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
    font-weight: 300;
}

/*  General-Start   */

html {
    width: 100%;
    font-size: 16px;
    overflow-x: hidden;
    font-display:swap;
	scroll-behavior: smooth;
}

body {
    font-family:"Inter", sans-serif;
    font-weight: 300;	
	line-height:1.4em;
    color: #A5A2A2;
    width: 100%;
    overflow-x: hidden;
	background-color:#262323;
}

h1, h2{
	color:#fff;
	font-weight:200;
	font-size:2.25rem;	
	line-height:1.4em;
	margin-bottom:50px;
	padding-bottom:0;
}

h3{
	color:#fff;
	font-weight:200;
	font-size:1.44rem;	
	line-height:1.4em;
	margin-bottom:30px;
	padding-bottom:0;
}

h4{
	font-size:1rem;	
	line-height:1.4em;
	margin:0;
	padding:0;
	font-weight:300;
	color:#fff;
}

strong.white {
	color: #fff;
}

p{
	margin-bottom:30px;	
	line-height:1.7em;
}

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

.text-left{
	text-align:left;
}

.text-right{
	text-align:right;
}

.button{
	font-size:0.875rem;
	text-transform: uppercase;
	border:1px solid #fff;
	background-color:rgba(255,255,255,0);
	padding:7px 10px;
	color:#fff;
	border-radius:2px;
	line-height:1em;
	text-decoration: none;	
	transition: background-color 0.2s ease;
}

.button:hover{
	background-color:rgba(255,255,255,0.1);	
	transition: background-color 0.2s ease;
}

a{
	color:inherit;
}

.background-dark{
	background-color:#1C1919;
}

.container{
	width:100%;
	max-width:940px;
	padding:60px 20px;
	margin:0 auto;
}

#page-header{
	display:flex;
	justify-content: space-between;
	align-items: flex-start;
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index: 2;
	height:150px;
	background: linear-gradient(180deg, rgba(28,25,25,0.6014236749387255) 0%, rgba(28,25,25,0) 100%);
}

#hamburger {
    width: 77px;
    height: 68px;
}

#hamburger {
    background: 0 0;
    border: none;
    height: 50px;
    width: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
	position: relative;
	z-index: 4;
}

#hamburger span {
    width: 22px;
    height: 0;
    display: block;
    position: relative;
    left: 0;
    border-bottom: 1.5px solid #fff;
    transition: .3s ease transform;
}

#hamburger span:nth-child(1) {
    border-top: 1.5px solid #fff;
    border-bottom: none;
    top: -5px;
    transform-origin: left center;
}

#hamburger span:nth-child(2) {
    transition: .3s ease transform;
    transform-origin: center;
}

#hamburger span:nth-child(3) {
    top: 5px;
    transform-origin: left center;
}

.nav-active #hamburger span:nth-child(1) {
    transform: rotate(45deg) translateX(1px) translateY(-2px);
    transform-origin: left center;
    transition: .3s ease transform;
}

.nav-active #hamburger span:nth-child(2) {
    transform: scaleX(0);
    transition: .3s ease transform;
}

.nav-active #hamburger span:nth-child(3) {
    transform: rotate(-45deg) translateX(0) translateY(3px);
    transform-origin: left center;
    transition: .3s ease transform;
}

.nav-active #page-header{
	z-index: 3;
}

#header-navigation{	
	position:fixed;
	top:0;
	bottom:0;
	left:0;	
	z-index: 3;
	width:200%;	
	margin-left:-200%;
	transition:0.4s all ease-out;	
	background: rgb(28,25,25);
	background: -webkit-linear-gradient(left, rgba(28,25,25,.9) 0%, rgba(28,25,25,0.9) 25%, rgba(28,25,25,0) 100%);
	background: -o-linear-gradient(left, rgba(28,25,25,.9) 0%, rgba(28,25,25,0.9) 25%, rgba(28,25,25,0) 100%);
	background: linear-gradient(to right, rgba(28,25,25,.9) 0%, rgba(28,25,25,0.9) 25%, rgba(28,25,25,0) 100%);
	padding-top:50px;
}

.scroll-container{
	width:100vw;
	height:100%;
	padding:30px 30px 30px 30px;
	overflow-y:auto; 
	scrollbar-color: #A5A2A2 #1C1919;
	scrollbar-width: thin;
}

.scroll-container::-webkit-scrollbar {
		width: 10px;
	}

.scroll-container::-webkit-scrollbar-track {
	background-color: #1C1919;
	border-radius: 100px;
}

.scroll-container::-webkit-scrollbar-thumb {
	border-radius: 100px;
	border: 3px solid transparent;
	background-clip: content-box;
	background-color: #A5A2A2;
}

#navigation-logo{
	width:100px;
	height:auto;
	margin-bottom:40px;
}

#header-navigation ul{
	margin-bottom:40px;
	list-style: none;
}

#header-navigation ul li a{
	color:#fff;
	text-decoration:none;
	font-size:1.5rem;
	font-weight: 300;
	padding:15px 0;
	display: inline-block;
}

#header-navigation ul li a:before{
	content:'';
	display:inline-block;
	height:1px;
	width:0;
	margin-top: -5px;
	margin-right: 0;
	background-color:#fff;
	vertical-align: middle;
	transition:0.3s all ease-out;
	opacity:0;
}

#header-navigation ul li a:hover:before{
	width:25px;
	margin-right:15px;
	opacity:1;
	transition:0.3s all ease-out;
}

.nav-active #header-navigation{
	margin-left:0;
	transition: all 0.4s ease-out;
}

#header-navigation .scroll-container *{
	opacity:0;
	transition: opacity 0.2s ease;
}

.nav-active #header-navigation .scroll-container *{
	opacity:1;	
	transition: opacity 0.2s ease 0.2s;
}

#header-navigation p{
	line-height:1.6875em;
}

#header-navigation p strong{
	font-weight:500;
}

#header-navigation .navigation-instagram, #header-navigation .contact-phone, #header-navigation .contact-mail, #header-navigation .navigation-facebook{
	display:inline-block;
	color:#fff;
	text-decoration: underline;
	margin-bottom:30px;
	transition:0.2s all ease-out;
}

.contact-mail, .contact-phone{
	transition:0.2s all ease-out;
}

.contact-mail:hover, .contact-phone:hover, #header-navigation .navigation-instagram:hover, #header-navigation .contact-phone:hover, #header-navigation .contact-mail:hover, #header-navigation .navigation-facebook:hover{
	font-weight:600;
	transition:0.3s all ease-out;
}

.navigation-instagram{
	color:#fff;
	margin-bottom:30px;
}

.navigation-instagram img{
	width:27px;
	height:27px;
	vertical-align: middle;
	margin-right:5px;
	position: relative;
	top:-2px;
}

.navigation-facebook{
	color:#fff;
	margin-bottom:0;
}

.navigation-facebook img{
	width:11px;
	height:27px;
	vertical-align: middle;
	margin-right:5px;
	position: relative;
	top:-2px;
}

.contact-phone {
	background-image:url('../images/schwarzer-reiter-icon-phone.svg');
	background-repeat: no-repeat;
	background-size: 13px 18px;
	background-position:left 2px;
	padding-left:25px;	
}

.contact-mail {
	background-image:url('../images/schwarzer-reiter-icon-mail.svg');
	background-repeat: no-repeat;
	background-size: 16px 12px;
	background-position:left center;
	padding-left:25px;	
}

#header-links{
	margin-top:10px;
	margin-right:20px;
}

#header-links a{
	vertical-align: middle;
	display:inline-block;
}

#header-links a:nth-child(1){
	margin-right:20px;
	padding-top: 4px;
}

#header-links a:nth-child(2){
	margin-right:25px;
	padding-top: 4px;
}

#header-links img{
	width:25px;
	height:25px;
}

#header-logo{
	width: 140px;
    height: auto;
    position: absolute;
    left: 50%;
    margin-left: -70px;
    top: 100px;
	z-index:2;
}

main{
	z-index:1;
	position:relative;
}

#index-slider{
	position:relative;
}

#index-slider .splide{
	height:100vh;
	width:100vw;
}

#splide01::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 300px;
	background: #000;
	z-index: 1;
	background: #1C1919;
	background: linear-gradient(180deg, rgba(28, 25, 25, .8) 0%, rgba(28, 25, 25, 0) 100%);
}

#index-slider .splide__track{
	height:100%;
}

#index-slider .splide .splide__slide img{
	object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

#splide01-slide04 img, #splide01-clone04 img{
	object-position: center bottom !important;
}

.splide__arrow{
	position:absolute;
	top:50%;
	z-index: 2;
	background-color:rgba(28,25,25,0.4);
	border:1px solid rgba(112,112,112,0.4);
	border:none;
	border-radius:50%;
	width: 40px;
    height: 40px;
    margin-top: -20px;
	cursor: pointer;
	padding:0!important;		
}

.splide__arrow svg{
	fill: #fff;
	width: 40px;
    height: 40px;
    vertical-align: middle;
}

.splide__arrow.splide__arrow--prev{
	left:20px;
}

.splide__arrow.splide__arrow--next{
	right:20px;
	transform:rotate(180deg);
}

.splide__pagination{
	background-color:rgba(28,25,25,0.4);
	padding:6px 12px;
	border-radius:30px;
	display:flex;
	margin:0px auto 0;
	width:144px;
	position:relative;
	top:-50px;
	justify-content: space-between;
	align-items: center;
}

.splide__pagination li{
	display:flex;
}

.splide__pagination button{
	width:8px;
	height:8px;
	padding:0;
	border-radius:50%;
	display:inline-block;
	background:rgba(255,255,255,0.4);
	border:none;
	position: relative;
	cursor: pointer;
}

.splide__pagination button.is-active{
	background-color:rgba(255,255,255,1);
}

#slider-stoerer{
	background-color:rgba(0,0,0,0.6);
	padding:20px 25px;
	position:absolute;
	bottom:130px;
	left:0;
	right:0;
	font-size:1rem;
	line-height:1.4em;
	color:#fff;
	display:flex;
	align-items: center;
	padding-top:10px;
	padding-bottom:10px;
}

#slider-stoerer strong{
	display:block;
	margin-bottom:8px;
	font-size:1.2rem;
}

#slider-stoerer img{
	width:60px;
	height:auto;
	margin-right:20px;
}

#slider-stoerer div{
	padding-top:5px;
}

#slider-stoerer p{
	text-align:center;
}

#index-opening table{
	width:100%;
	max-width:420px;
	margin:0 auto 30px;
}

#index-opening table td{
	padding-bottom:30px;
	font-variant-numeric: tabular-nums;
	-webkit-font-feature-settings: "tnum" 1;
	-moz-font-feature-settings: "tnum" 1;
	-ms-font-feature-settings: "tnum" 1;
	-o-font-feature-settings: "tnum" 1;
	font-feature-settings: "tnum" 1;
}

#index-opening table tr td:first-child{
    width: 40%;
}
	
#index-opening table tr:last-child td{
	padding-bottom:0;
}

#index-opening .contact-phone{
	margin-bottom:0;
}

#index-vacation{
	text-align:left;
}

#index-vacation .container{
	padding-top:30px;
}

#index-vacation h3{
	display:flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
	align-items: center;
	text-align: center;
}

#index-vacation p{
	text-align:center;
}

#index-vacation img{
	width:100%;
	max-width: 500px;
}

#index-vacation ul{
	list-style:none;
}

#index-vacation ul li{
	margin-bottom:25px;
}

#index-opening #index-vacation table tr td{
	padding-bottom:15px;
}

#index-opening #index-vacation table tr td:first-child {
	width: auto;
	padding-right:40px;
}

#reservieren .contact-mail{
	color:#fff;
}

#reservieren small{
	white-space: nowrap;
}

#index-overnight h3{
	border-top:1px solid #B9B6B6;
	padding-top:60px;
}

#index-overnight img{
	width:100%;
	max-width:280px;
	margin:20px auto 50px;
}

#index-specialevents img{
	margin-bottom:30px;
}

#index-dining div{
	text-align:center;
}

#index-dining .open-card{
	color:#fff;
	border:1px solid #fff;
	border-radius:12px;
	text-decoration: none;
	padding:0 30px 30px;
	display:inline-block;
	width:220px;
	margin:15px 15px 30px;
	cursor: pointer;	
	background-color:rgba(255,255,255,0);
	transition: background-color 0.2s ease;
}

#index-dining .open-card:hover{
	background-color:rgba(255,255,255,0.1);	
	transition: background-color 0.2s ease;
}

#index-dining div .open-card img{
	height:114px;
	margin:20px auto;
	display:block;
}

#index-dining div .open-card:first-child img{
	height: 155px;
	margin: 10px auto -11px;
	display: block;
}

#index-dining div .open-card:last-child img{
	height:97px;
	margin:29px auto 28px;
	display:block;
}

.vacancy-item{
	color:#fff;
	border:1px solid #fff;
	border-radius:12px;
	text-decoration: none;
	padding:30px;
	display:inline-block;
	width:220px;
	margin:15px;
	cursor: pointer;	
	background-color:rgba(255,255,255,0);
	transition: background-color 0.2s ease;
}

.vacancy-item:hover{
	background-color:rgba(255,255,255,0.1);	
	transition: background-color 0.2s ease;
}

.vacancy-item small{
	font-size:0.889rem;
	color:#A5A2A2;
}


#index-contact .contact-mail, #index-contact .contact-phone, #reservieren .contact-phone{
	color:#fff;
}

#index-contact small, #reservieren small{
	font-size:0.75rem;
}

#index-map{
	height:400px;
	overflow: hidden;
}

#index-map a{
	display:block;
	height:100%;
}

#index-map a img{
	object-fit: cover;
	object-position: center;
	width: 100%;
    height: 100%;
	transform:scale(1.5);
}

#static ul{
	margin:0 0 30px 40px;
}

#page-footer.container{
	padding-top:50px;
	padding-bottom:20px;
	font-size:0.75rem;
}

#page-footer ul{
	list-style:none;
	margin-top:25px;
}

#page-footer ul li{
	margin-bottom:10px;
}

#page-footer ul li a{
	color:#A5A2A2;
	text-decoration: none;
}

.pswp__img{
	box-shadow: 0 0 100px 0 rgba(255,255,255,0.2);
}

@media screen and (min-width:768px) {

	.container{
		width:100%;
		max-width:980px;
		padding:100px 40px;
	}
	
	#hamburger{
		height:65px;
	}
	
	#header-logo{
		top: 50px;
	}
	
	#header-navigation{
		width:100vw;
		max-width:1190px;
		margin-left:-100%;
		background: rgb(28,25,25);
		background: -webkit-linear-gradient(left, rgba(28,25,25,0.9) 0%, rgba(28,25,25,0.9) 45%, rgba(28,25,25,0) 100%);
		background: -o-linear-gradient(left, rgba(28,25,25,0.9) 0%, rgba(28,25,25,0.9) 45%, rgba(28,25,25,0) 100%);
		background: linear-gradient(to right, rgba(28,25,25,0.9) 0%, rgba(28,25,25,0.9) 45%, rgba(28,25,25,0) 100%);
	}
	
	#header-navigation .scroll-container{
		padding:80px 20px 30px 170px;
		width:100%;
		max-width:600px;
	}
	
	#header-navigation ul li a{
		font-size:1.75rem;
	}
	
	.splide__arrow{
		width:54px;
		height:54px;
		margin-top:-27px;
	}
	
	.splide__arrow svg{
		width: 54px;
		height: 54px;
	}

	.splide__arrow.splide__arrow--prev{
		left:20px;
	}

	.splide__arrow.splide__arrow--next{
		right:20px;
	}

	#slider-stoerer{
		top:250px;
		font-size:1rem;
		display:flex;
		flex-direction:row;
		align-items: center;
		justify-content: center;
		bottom: auto;
	}

	#slider-stoerer img{
		margin-right:30px;
		margin-bottom:0;
		width:85px;
	}
	
	.openings-container{
		display: flex;
		gap: 100px;
		justify-content: center;
		width: 100%;
		padding: 0 50px;
	}

	.openings-container > div{
		flex:0 0 50%;
	}

	#index-overnight h3{	
		padding-top:100px;
	}

	#index-overnight img{
		max-width:350px;
	}
	
	#index-dining .container div{
		display:flex;
		justify-content: space-around;
	}
		
	#index-map a img{
		transform:scale(1);
	}
	
	#page-footer.container{
		padding-top:50px;
		padding-bottom:20px;		
		display:flex;
		justify-content: space-between;
		align-items: center;
	}

	#page-footer.container{
	}
	
	#page-footer.container ul{
		display:flex;
		margin-top:0;
		justify-content: space-between;
		align-items: center;
	}
	
	#page-footer.container ul li{
		margin:0 0 0 20px;
	}
}

