:root 
{
	--theme: #ceaa86;
	--darktheme: #e0a061;
	--light: #fcf4ed;
	--mid: #edddce;
	--dark: #1d1d1b;
}

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

body 
{
	font-size: 1.1em;
	color: var(--dark);
	font-family: 'Krub';
	font-weight: 300;
	line-height: 1.65;
	overflow-x: hidden;
}

::selection 
{
	background-color: var(--theme);
 	color: var(--dark);
}

::-moz-selection 
{
  	background-color: var(--theme);
 	color: var(--dark);
}

h1, h2, h3
{
	font-weight: 700;
	line-height: 1.25;
	font-size: 3.6em;
}

h1 strong
{
	font-weight: 300;
	font-family: 'Sharlotte';
	font-size: 2.5em;
	display: block;
	position: relative;
	margin-top: -0.15em;
	z-index: -1;
}

h2, h3
{
	line-height: 1.35;
}

h2
{
	font-size: 3em;
}

h3
{
	font-size: 1.7em;
	color: var(--theme);
}

p + p, ul + p
{
	margin-top: 1em;
}

h2 + p, h2 + ul, h3 + p, h3 + ul
{
	margin-top: 0.5em;
}

h2 + h3, p + h3, ul + h3
{
	margin-top: 0.7em;
}

h2 strong
{
	font-weight: 300;
	font-family: 'Sharlotte';
	font-size: 1.8em;
}

.wrap
{
	max-width: 1000px;
	display: block;
	margin: auto;
	padding: 0px 40px;
	position: relative;
}

#header .wrap
{
	max-width: 1250px;
}

#header
{
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	transition: all 0.2s;
	box-shadow: 0px 0px 60px rgba(0,0,0,0);
}

#header.scrolled
{
	background-color: #fff;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.08);
}

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 40px;
	padding: 40px 0px;
	transition: all 0.2s;
}

#header.scrolled #navigation ul li
{
	padding: 30px 0px;
}

#navigation ul li a
{
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
	position: relative;
}

#navigation ul li a:after
{
	content: "";
	position: absolute;
	width: 0%;
	opacity: 0;
	height: 1px;
	background-color: #fff;
	left: 0;
	top: 110%;
	transition: all 0.2s;
}

#navigation ul li.active a:after, #navigation ul li a:hover:after
{
	opacity: 1;
	width: 100%;
}

#navigation ul li:last-child a
{
	display: inline-block;
	line-height: 1.4;
	text-align: center;
	color: #fff;
	border: 1px solid #fff;
	padding: 0.6em 1.1em 0.57em;
	font-weight: 500;
}

#header.scrolled #navigation ul li:last-child a
{
	color: var(--dark);
	border: 1px solid var(--theme);
}

#header.scrolled #navigation ul li:last-child a:hover
{
	background-color: var(--theme);
	color: #fff;
}

#navigation ul li:last-child a:hover
{
	background-color: #fff;
	color: var(--dark);
}

#navigation ul li:last-child a:after
{
	display: none;
}

#header.scrolled #navigation ul li a
{
	color: var(--dark);
}

#header.scrolled #navigation ul li a:after
{
	background-color: var(--theme);
}

.pageLogo
{
	position: absolute;
	height: 100%;
	padding: 30px 0px;
	transition: all 0.2s;
}

.pageLogo.white
{
	opacity: 1;
}

.pageLogo.color
{
	opacity: 0;
}

#header.scrolled .pageLogo.color
{
	opacity: 1;
}

#header.scrolled .pageLogo.white
{
	opacity: 0;
}

#header.scrolled .pageLogo
{
	padding: 25px 0px;
}

#opener
{
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

#opener:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 300;
	background: linear-gradient(180deg,rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%);
}

#openerSlideshow
{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.openerImg
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
}

#openerContent
{
	position: relative;
	width: 100%;
	z-index: 500;
	text-align: center;
	color: #fff;
	text-shadow: 0px 0px 1em rgba(0,0,0,0.5);
	padding: 150px 0px 100px;
}

#openerContent p
{
	font-weight: 500;
}

.text.withButton p a, .text .buttonArea p a, .buttonArea p a, #accepted
{
	display: inline-block;
	line-height: 1.4;
	text-align: center;
	color: var(--dark);
	border: 1px solid var(--theme);
	padding: 0.67em 1.1em 0.65em;
	text-decoration: none;
	transition: all 0.2s;
	font-weight: 500;
}

.text.withButton p a:hover, .text .buttonArea p a:hover, .buttonArea p a:hover, #accepted:hover
{
	background-color: var(--theme);
	color: #fff!important;
}

#opener .buttonArea p a
{
	color: #fff!important;
	border-color: #fff!important;
	text-shadow: none!important;
}

#opener .buttonArea p a:hover
{
	background-color: #fff;
	color: var(--dark)!important;
}

.buttonArea
{
	margin-top: 25px;
}

.withButton
{
	margin-top: -75px;
}

.text
{
	margin: 100px 0px;
}

strong
{
	font-weight: 700;
}

.colored
{
	padding: 100px 0px;
	background-color: var(--light);
}

.gallery
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 10px);
	margin-left: -10px;
	margin-bottom: -10px;
}

.galleryItem
{
	width: calc(33.3% - 10px);
	margin-left: 10px;
	margin-bottom: 10px;
	cursor: zoom-in;
}

.galleryImg
{
	padding-bottom: 75%;
	background-size: cover;
	background-position: center;
}

.inline
{
	width: 100%;
	margin-bottom: -10px!important;
}

.withImg + .colored, .withImg + .jumper + .colored
{
	position: relative;
	margin-top: -110px;
}

.withImg + .colored:before, .withImg + .jumper + .colored:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100px;
	left: 0;
	bottom: 100%;
	background-color: var(--light);
	z-index: -1;
}

.imgFlex
{
	display: flex;
	margin-left: -60px;
	align-items: center;
}

.imgFlex.right
{
	flex-direction: row-reverse;
}

.imgFlexItem
{
	margin-left: 60px;
}

.imgFlex .imgFlexItem:nth-child(1)
{
	width: 40%;
}

.imgFlex .imgFlexItem:nth-child(2)
{
	width: 60%;
}

.text ul li
{
	position: relative;
	list-style: none;
	padding-left: 1.1em;
}

.text ul li:before
{
	content: "";
	position: absolute;
	width: 0.35em;
	height: 0.35em;
	left: 0;
	top: 0.66em;
	background-color: var(--theme);
}

.colored + .colored
{
	padding-top: 0;
	margin-top: -100px;
}

.negSpace
{
	margin-top: -50px;
}

.text p a, .text ul a, form a, #cookieNotice a
{
	color: var(--dark);
	border-bottom: 1px solid var(--theme);
	transition: all 0.2s;
	text-decoration: none;
}

.text p a:hover, .text ul a:hover, form a:hover, #cookieNotice a:hover
{
	color: var(--theme);
	border-bottom: 1px solid var(--theme);
}

#form
{
	padding-top: 170px;
	margin-top: -320px;
}

#formBox
{
	padding: 50px 60px 60px 60px;
	background-color: #fff;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.05);
}

form
{
	display: flex;
	flex-wrap: wrap;
	margin-left: -40px;
}

form div
{
	width: 50%;
	padding-left: 40px;
}

form label
{
	font-family: 'Krub';
	color: var(--dark);
	font-weight: 700;
	display: block;
	margin-bottom: 0.05em;
}

input[type = "text"], input[type = "email"], textarea, button, select
{
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
   	border-radius: 0px;
   	font-size: 1em;
   	width: 100%;
   	border: none;
   	font-family: 'Krub';
   	line-height: 1.6;
   	color: var(--dark);
   	font-weight: 300;
   	background-color: transparent;
}

input, textarea, select
{
	color: var(--dark);
	margin-bottom: 1.5em;
	transition: border-color 0.2s;
}

input[type = "text"], input[type = "email"], textarea, select
{
	border: 1px solid var(--mid);
	padding: 0.6em 1.2em 0.58em;
	background-color: #fff;
}

input:focus, textarea:focus, select:focus
{
	border-color: var(--theme);
	outline: 1px solid var(--theme);
}

select
{
	cursor: pointer;
	background-image: url(down.svg);
	background-size: 0.45em;
	background-repeat: no-repeat;
	background-position: center right 1.2em;
}

textarea
{
	height: 12em;
	resize: none;
	margin-bottom: 1.25em;
}

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingaben.";
	font-weight: 700;
	color: red;
	display: block;
}

.alert.alert-danger
{
	margin-bottom: 1.5em;
}

.alert.alert-danger ul li
{
	color: red;
}

.alert.alert-danger ul li:before
{
	background-color: red;
}

.checkbox
{
	position: relative;
	padding-left: 1.6em;
	margin-left: 40px;
}

.checkbox label
{
	font-family: 'Krub';
	color: var(--dark);
	font-weight: 300;
	cursor: pointer;
	text-transform: none;
	line-height: 1.6;
}

.checkbox input
{
	position: absolute;
	left: 0px;
	top: 0.51em;
	cursor: pointer;
}

#yform-formular-nachricht, #yform-formular-personenanzahl, #yform-formular-accept, .alert
{
	width: 100%;
}

button
{
	display: inline-block;
	line-height: 1.4;
	text-align: center;
	color: var(--dark);
	border: 1px solid var(--theme);
	padding: 0.67em 1.1em 0.65em;
	text-decoration: none;
	transition: all 0.2s;
	font-weight: 500;
	width: auto;
	cursor: pointer;
	margin-left: 40px;
	margin-top: 1.3em;
}

button:hover
{
	background-color: var(--theme);
	color: #fff;
}

.colored + #footer, .colored + .dividerImg
{
	margin-top: -100px;
}

#footer
{
	padding: 45px 0px 43px;
	background-color: var(--theme);
	color: #fff;
	font-size: 0.85em;
}

#copy
{
	position: absolute;
	font-weight: 500;
}

#footerList
{
	text-align: right;
}

#footerList li
{
	display: inline-block;
	margin-left: 40px;
}

#footer a
{
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
	border-bottom: 1px solid transparent;
}

#footer a:hover
{
	border-bottom: 1px solid #fff;
}

#cookieNotice
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 0.85em;
	background-color: rgba(0,0,0,0.2);
	z-index: 999999999;
	display: none;
	align-items: center;
	justify-content: center;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
}

#cookieBox
{
	padding: 31px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	max-width: 420px;
	overflow: auto;
	display: block;
	margin: auto;
	position: relative;
	background-color: #fff;
}

#cookieBoxInner
{
	position: relative;
	z-index: 100;
}

#acceptWrap
{
	text-align: center;
}

#cookieCheckboxes
{
	margin-top: 1em;
	margin-bottom: 1em;
}

#cookieCheckboxes label
{
	position: relative;
	margin-right: 1.6em;
	padding-left: 1.8em;
	cursor: pointer;
	display: block;
	margin-top: 0.3em;
}

#cookieCheckboxes input
{
	position: absolute;
	left: 0;
	top: 49%;
	transform: translateY(-50%);
}

#accepted
{
	margin-top: 0.6em;
	cursor: pointer;
}

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

.dividerImg
{
	padding: 150px 0px;
	background-size: cover;
	background-position: center;
	position: relative;
	color: #fff;
}

.dividerImg .wrap
{
	z-index: 100;
}

.dividerImg:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: rgba(0,0,0,0.4);
}

.jumper
{
	position: relative;
	top: -200px;
}

.multiCalendarWidget a
{
	color: var(--dark)!important;
}

div div.multiCalendarWidget
{
	background: var(--light)!important;
	border-radius: 0!important;
	margin-top: -50px!important;
}

div div.multiCalendarWidget .singleCalendarWidget table td.arrival, .multiCalendarWidget .singleCalendarWidget h2 table td.arrival
{
	background: linear-gradient(to right bottom, var(--light) 50%, #ff8e8e 50%) !important
}

div div.multiCalendarWidget .singleCalendarWidget table td.departure, .multiCalendarWidget .singleCalendarWidget h2 table td.departure
{
	background: linear-gradient(to right bottom, #ff8e8e 50%, var(--light) 50%) !important
}

div div.multiCalendarWidget .singleCalendarWidget table td.normal, .multiCalendarWidget .singleCalendarWidget h2 table td.normal
{
	background-color: #ff8e8e!important;
}

div div.multiCalendarWidget
{
	color: var(--dark)!important;
	font-family: 'Krub'!important;
}

div div.multiCalendarWidget .singleCalendarWidget table tbody, .multiCalendarWidget .singleCalendarWidget h2 table tbody
{
	color: var(--dark)!important;
}

div div.multiCalendarWidget .singleCalendarWidget table td.current-day, .multiCalendarWidget .singleCalendarWidget h2 table td.current-day
{
	border-color: var(--dark)!important;
}

.ui-datepicker td 
{
	width: 1px!important;
	padding: 2px!important;
} 

.ui-datepicker th
{
	font-weight: 500!important;
	color: var(--dark);
}

.ui-datepicker td a
{
	text-align: center;
}

.ui-datepicker .ui-datepicker-title
{
	font-family: 'Krub';
	font-weight: 700;
	color: var(--dark);
}

.ui-datepicker table
{
	font-family: 'Krub';
	font-weight: 300!important;
	text-shadow: none;
	color: var(--dark);
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default
{
	color: var(--dark);
	font-family: 'Krub';
	background-color: var(--light);
	border-radius: 0px;
	border: 0px solid #fff;
	padding-top: 3px;
	padding-bottom: 3px;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active
{
	background-color: var(--theme);
	border: 0px solid #fff!important;
	color: #fff!important;
	font-weight: 500!important;
}

.ui-datepicker-today > a
{
	color: #fff!important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight
{
	border: 0px solid #fff;
}

.ui-widget-header
{
	border: none;
	background-color: rgba(0,0,0,0);
	border-radius: 0px;
	border-bottom: 1.5px solid #fff;
}

.ui-widget-content
{
	background-color: #fff;
	border: 1px solid var(--theme);
	padding: 0.6em 1em 0.5em 1em;
	border-radius: 0px;
	z-index: 100 !important;
}

.ui-datepicker-next.ui-corner-all.ui-state-hover.ui-datepicker-next-hover, .ui-datepicker-prev.ui-corner-all.ui-state-hover.ui-datepicker-prev-hover
{
	border: 0px solid #fff;
	top: 7px;
	right: 2px;
	background-color: rgba(0,0,0,0);
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next
{
	top: 3px!important;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span
{
	top: 52%;
}

.ui-datepicker-next, .ui-datepicker-prev
{
	position: relative;
}

.ui-datepicker-next:after
{
	content: ">";
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-family: 'Krub';
	font-weight: 500;
	color: var(--dark);
	letter-spacing: 0.02em;
	font-size: 1em;
	cursor: pointer;
}

.ui-datepicker-prev:after
{
	content: "<";
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-family: 'Krub';
	font-weight: 500;
	color: var(--dark);
	letter-spacing: 0.02em;
	font-size: 1em;
	cursor: pointer;
}

.ui-datepicker table tr
{
	border-bottom: 1px solid #fff!important;
}

.ui-state-default.ui-state-highlight
{
	background-color: var(--theme);
	font-weight: 500!important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default
{
	font-weight: 300;
}

.ui-datepicker th
{
	padding-bottom: 0!important;
	margin-bottom: 0!important;
}

.colored + .withImg
{
	position: relative;
	margin-top: -150px;
}

.colored + .withImg:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 50%;
	left: 0;
	top: 0;
	z-index: -1;
	background-color: var(--light);
}

@media all and (max-width: 450px){
	#cookieBox
	{
		padding: 18px 25px 25px 25px;
	}

	#formBox
	{
		padding: 18px 25px 25px 25px!important;
	}
}

@media all and (max-width: 500px){
	.galleryItem
	{
		width: calc(100% - 10px);
	}
}

@media all and (max-width: 750px){
	h1
	{
		font-size: 1.7em!important;
	}

	h2
	{
		font-size: 1.5em!important;
	}

	h3
	{
		font-size: 1.3em!important;
	}

	#copy
	{
		position: relative;
		display: block;
		margin-bottom: 4px;
	}

	#footerList
	{
		text-align: left;
	}

	#footerList li
	{
		display: block;
		margin-left: 0;
		margin-top: 2px;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}

	.imgFlexItem
	{
		width: 100%!important;
		margin-left: 0!important;
	}

	.imgFlex
	{
		margin-left: 0!important;
		display: block;
	}

	.textBox
	{
		margin-top: 35px;
	}

	.dividerImg
	{
		padding: 60px 0px!important;
	}
}

@media all and (max-width: 1110px){
	#navigation
	{
		display: none;
		position: fixed;
		width: 100%;
		left: 0;
		top: 0;
		max-height: 100%;
		overflow: auto;
		background-color: #fff;
		box-shadow: 0px 0px 60px rgba(0,0,0,0.08);
	}

	#navigation ul li, #header.scrolled #navigation ul li
	{
		padding: 0px;
		margin-left: 0;
		display: block;
		margin-bottom: 5px;
	}

	#navigation ul li a
	{
		color: var(--dark);
	}

	#navigation ul li a:after
	{
		background-color: var(--theme);
		top: 105%;
	}

	#navigation ul li:last-child a
	{
		display: block;
		margin-bottom: 12px;
		margin-top: 15px;
		color: var(--dark);
		border: 1px solid var(--theme);
	}

	#navigation ul li:last-child a:hover
	{
		color: #fff;
		background-color: var(--theme);
	}

	#navigation ul
	{
		padding: 82px 40px 10px;
	}

	#navOpener, .pageLogo
	{
		z-index: 1500;
	}

	#header.active .pageLogo.white
	{
		opacity: 0;
	}

	#header.active .pageLogo.color
	{
		opacity: 1;
	}

	#navOpener
	{
		position: absolute;
		width: 26px;
		height: 20px;
		cursor: pointer;
		top: 50%;
		transform: translateY(-50%);
		right: 40px;
	}

	.line
	{
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #fff;
		transition: all 0.2s;
	}

	#navOpener.active .line, #header.scrolled .line
	{
		background-color: var(--dark);
	}

	#navOpener .line:nth-child(1)
	{
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	#navOpener .line:nth-child(2)
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	#navOpener .line:nth-child(3)
	{
		bottom: 0;
		width: 50%;
		right: 0;
	}

	#navOpener.active .line:nth-child(1)
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	#navOpener.active .line:nth-child(2)
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	#navOpener.active .line:nth-child(3)
	{
		width: 0;
	}

	#header .wrap
	{
		height: 90px;
	}

	.pageLogo, #header.scrolled .pageLogo
	{
		padding: 15px 0px;
	}

	.imgFlexItem
	{
		margin-left: 40px;
	}

	.imgFlex
	{
		margin-left: -40px;
	}

	#formBox
	{
		padding: 30px 40px 40px 40px;
	}

	#openerContent
	{
		padding: 90px 0px 60px;
	}

	.text
	{
		margin: 60px 0px;
	}

	.colored
	{
		padding: 60px 0px;
	}

	.colored + .colored
	{
		margin-top: -60px;
	}

	.negSpace
	{
		margin-top: -25px;
	}

	.withButton
	{
		margin-top: -35px;
	}

	.withImg + .colored, .withImg + .jumper + .colored
	{
		margin-top: -70px;
	}

	.withImg + .colored:before, .withImg + .jumper + .colored:before
	{
		height: 60px;
	}

	.colored + .dividerImg
	{
		margin-top: -60px;
	}

	#footer
	{
		padding: 25px 0px 24px;
	}

	.dividerImg
	{
		padding: 90px 0px;
	}

	#form
	{
		padding-top: 130px;
		margin-top: -210px;
	}

	h1
	{
		font-size: 2.8em;
	}

	h2
	{
		font-size: 2em;
	}

	h3
	{
		font-size: 1.4em;
	}

	.jumper
	{
		top: -148px;
	}

	div div.multiCalendarWidget
	{
		margin-top: -20px!important;
	}

	.colored + .withImg
	{
		margin-top: -80px;
	}
}

@media all and (min-width: 1111px){
	#navigation
	{
		display: block!important;
	}
}