@charset "utf-8";

/* *** Schriften *** */
@import url("../../webfonts/NunitoSans/stylesheet.css");

/* great-vibes-regular - latin */
	
@font-face {
	font-display: swap; /* Check https://https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Great Vibes';
	font-style: normal;
	font-weight: 400;
	src: url('../schriften/Great_Vibes/great-vibes-v19-latin-regular.eot'); /* IE9 Compat Modes */
	src: url('../schriften/Great_Vibes/great-vibes-v19-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../schriften/Great_Vibes/Great_Vibes/GreatVibes.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	url('../schriften/Great_Vibes/great-vibes-v19-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
	url('../schriften/Great_Vibes/great-vibes-v19-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
	url('../schriften/Great_Vibes/great-vibes-v19-latin-regular.svg#GreatVibes') format('svg'); /* Legacy iOS */
}

/* reenie-beanie-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: 'Reenie Beanie';
	font-style: normal;
	font-weight: 400;
	src: url('../schriften/reenie-beanie/reenie-beanie-v20-latin-regular.eot'); /* IE9 Compat Modes */
	src: url('../schriften/reenie-beanie/reenie-beanie-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../schriften/reenie-beanie/reenie-beanie-v20-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	url('../schriften/reenie-beanie/reenie-beanie-v20-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
	url('../schriften/reenie-beanie/reenie-beanie-v20-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
	url('../schriften/reenie-beanie/reenie-beanie-v20-latin-regular.svg#ReenieBeanie') format('svg'); /* Legacy iOS */
}


/* CSS Document */

/* *** Generell *** */

:root {
	--body-farbe: #DDCAA5;
	--article-farbe: #DFD7C4;
	--header-farbe: #253F72;
	--hover-nav-farbe: #F68979;
	--hover-ankerfarbe: ##96C6EC;
	--footer-gradient: linear-gradient(170deg,rgba(37,63,114,1.00) 0%,rgba(37,63,114,1.00) 30.05%,rgba(111,172,228,1.00) 100%);
}

html {
	box-sizing: border-box; 		/* +++ vereinfacht die Berechnung der Boxgrößen +++ */
	font-size: 16px; 				/* +++ legt die Bezugsgröße für "rem" fest +++ */
}

*, *:before, *:after {
    box-sizing: inherit;
}

.clearfix::after {					/* +++ Clearfix-Hack +++ */
	content: "";
	display: block;
	clear: both;
	width: 1px;
}

/* *** Übergreifend *** */

body {
  background-color: var(--body-farbe);
  margin: 0;
  font-family: NunitoSans, Tahoma, Verdana, Arial, "Sans Serif Collection";
}

#wrapper {
	min-width: 320px;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
}

header {
    display: flex;
    flex-direction: column;
  	background-color: var(--header-farbe);
    padding: 5px;
	width: 100%;
}

#logo {
	max-width: 150px;
	max-height: 150px;
	width: 20%;
	margin: 3rem;
}

h1 {
	font-family: "Great Vibes", Verdana, "Sans Serif Collection";
	font-size: 2.0rem;
	font-weight: lighter;
	letter-spacing: 0.25rem;
	text-align: center;
	margin-top: 10px;
	color: #FFFFFF;
	order: 20;
}

#viewport_gross {
	display: none;
}

/* *** Navigation *** */

nav {
	display: flex;
	justify-content: flex-end;
	width: 30%;
	order: 30;
}

#menulink {
	width: 100%;
	margin: 0 0 0 5rem;
    text-align: right;
	font-size: 4rem;
}

#menulink a {
    color: white;
	text-decoration: none;
	}

#navlinks {
	position: absolute;
	float: right;
	width: auto;
	top: 1.25rem;	/* +++ wichtig, dass dieser Block direkt an den Block der Nav-Leiste anschließt, damit beim Hovern der Übergang wie gewünscht funktioniert +++ */
	list-style-type: none;
	margin: 0 12vw 0 0;
	display: none;
	padding: 1rem 0.5rem;
	text-align: center;
	background-color: #446B8F; 		/* +++ nur für alte Browser erforderlich +++ */
	background-color: rgba(68,107,143,0.9);
}

#navlinks a {
    display: block;
	width: 10rem;
    padding-top: 10px;
	padding-bottom: 5px;
	color: white;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
}

#navlinks a:hover {
	color: var(--hover-nav-farbe);
	text-decoration: underline;
}

#navlinks li.thispage > a {			/* +++ kennzeichnet aktuelle Site +++ */
	color: #F6B779;
	text-decoration: none;
}

nav:hover > #navlinks {				/* +++ das ist der Trick! +++ */
	display: flex;
}

nav ul{
    display: flex;
    list-style: none;
    justify-content: center;
}

/* *** Hauptteil *** */

main{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

aside {
	display: flex;
	flex-direction: column;
	color: #FFFFFF;
    background-color: var(--header-farbe);
    text-align: center;
    padding: 1rem;
}

.center_orange {
    color: #f79900;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
	padding-left: 0.5rem;
}

#wetter {
	margin-right: auto;
	margin-left: auto;
	margin-top: 3rem;
}

article {
    background-color: var(--article-farbe);
	font-size: 1.2;
	width: 80%;
    padding: 1rem;
}

/* *** Fußzeile *** */

footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-image: -webkit-linear-gradient(260deg,rgba(37,63,114,1.00) 0%,rgba(26,69,124,1.00) 30.05%,rgba(111,172,228,1.00) 100%);
	background-image: -moz-linear-gradient(260deg,rgba(37,63,114,1.00) 0%,rgba(26,69,124,1.00) 30.05%,rgba(111,172,228,1.00) 100%);
	background-image: -o-linear-gradient(260deg,rgba(37,63,114,1.00) 0%,rgba(26,69,124,1.00) 30.05%,rgba(111,172,228,1.00) 100%);
	background-image: var(--footer-gradient);
	width: 100%;
	}

#footer-nav {
	width: 60%;
	margin-top: 3rem;
}

#footer-nav ul {
	color: #FFFFFF;
	list-style-type: none;
	padding-left: 50px;
}

#footer-nav li {
	padding-bottom: 15px;
	width: 100%;
}

#footer-nav a {
	color: #FFFFFF;
	text-decoration: none;
}

#footer-nav a:hover {
	color: var(--hover-nav-farbe);
}

#copyright {
	width: 100%;
	color: #FFFFFF;
	font-size: 0.75rem;
	text-align: center;
	padding-bottom: 1rem;
}

#secure {
	width: 128px;
	padding-top: 2rem;
	padding-right: 10px;
}

/* *** Seitenspezifisches *** */

/* *** Buchungslink *** */

#buchung {
	display: inline-block;
	border-radius: 10px;
	background-color: var(--body-farbe);
	border: none;
	padding: 0.2rem;
	width: 250px;
	height: 2.5rem;
	transition: all 0.5s;
	cursor: pointer;
	margin: 2rem;
	-webkit-box-shadow: 10px 10px 25px #707070;
	box-shadow: 10px 10px 25px #707070;
}

#buchung span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}

#buchung span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}

#buchung:hover {
	background-color: var(--header-farbe);
}

#buchung:hover span {
	padding-right: 30px;
	color: white;
}

#buchung:hover span:after {
	opacity: 1;
	right: 0;
}

#buchung a {
	font-family: Termina, Verdana, Arial, "Sans Serif Collection";
	font-size: 0.9rem;
	color: #010D82;
	text-decoration: none;
	font-weight: 600;
}

/* *** Impressum *** */

#verb {
    display: flex;
    justify-content: center;
    width: 275px;
    padding: 0px;
}

.anker {
	float: right;
	border: medium solid #010D82;
	border-bottom-left-radius: 10px;
	border-top-right-radius: 10px;
	padding: 0.2rem;
	background-color: var(--body-farbe);
	-webkit-box-shadow: 10px 10px 25px #707070;
	box-shadow: 10px 10px 25px #707070;
	margin-bottom: 2rem;
}

.anker:hover {
	background-color: var(--hover-ankerfarbe);
	border-bottom-right-radius: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 0px;
	border-top-right-radius: 0px;
}

.anker a {
	font-family: Termina, Verdana, Arial, "Sans Serif Collection";
	font-size: 0.5rem;
	color: #010D82;
	text-decoration: none;
	font-weight: 600;
}

/* *** Galerie *** */

#galerie {
	display: flex;
	flex-direction: column;
	align-content: center;
}

#galerie figure {
	background: #FFF;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
	display: inline-block;
	height: 18rem;
	margin: 1rem auto;
	overflow: hidden;
	padding: 0px;
	width: 15rem;
	transition: all 0.25s ease-in;
}

#galerie figure img {
	width: 15rem;
	height: 15rem;
}

#galerie figure:hover, #galerie figure:focus {
	background-color: white;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
	margin: -1em 0px 0 60px;
	padding: 5px 5px 30px 5px;
	width: 15.7rem;
	z-index: 2;
	transform: scale(1.5);
}

#galerie figcaption {
	color: #333;
	font: cursive 10px 150%;
	font-family: "Reenie Beanie", cursive;
	position: relative;
	text-align: center;
	width: 15em;
}

#galerie figure:nth-child(3n-2):hover, #galerie figure:nth-child(3n-2):focus {
	transform: scale(1.5) rotate(-2.5deg);
}

#galerie figure:nth-child(5n):hover, #galerie figure:nth-child(5n):focus {
	transform: scale(1.5) rotate(3.5deg);
}

#galerie:after {
	clear: both;
	content: " ";
	display: block;
}

/* *** Media-Queries *** */

@media (max-width: 768px) {
	
	#logo {
		display: none;
	}
	
	#viewport_klein {
		width: auto;
	}
	
	#menulink {
		width: 50%;
	}
	
	article {
		width: 100%;
	}
	
	#footer-nav ul {
		padding-left: 15%;
	}
}

@media (min-width: 300px) {
       
    #Anschrift {
        font-size: 0.8rem;
        flex-basis: 55%;
    }
    
    nav {
		width: 100%;
		margin-right: 3rem;
		order: 15;
    }   
    
    nav ul {
        flex-direction: column;
        margin: 2px;
        padding: 5px;      
    }
    
    nav a {
        
        width: 65%;
        justify-content: center;
    }
    
    main {
        flex-direction: column;
    }
} 

@media (min-width: 480px) {
	header {
		flex-direction: row;
		justify-content: space-between;
	}
	
	#viewport_klein {
		width: 80%;
		padding-left: 15%;
	}
	
	nav {
		justify-content: space-around;
		width: 20%;
		margin-right: 2rem;
		order: 40;
	}
	
	#navlinks {
		margin: 0 22vw 0 0;
	}
	
	h1 {
	text-align: center;
		margin-top: 3rem;
	}
	
	#galerie {
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	#galerie figure:nth-child(3n-2):hover, #galerie figure:nth-child(3n-2):focus {
		transform: scale(2.3) rotate(-2.5deg);
	}

	#galerie figure:nth-child(5n):hover, #galerie figure:nth-child(5n):focus {
		transform: scale(2.3) rotate(3.5deg);
	}
}

@media (min-width: 768px){
	
	header {
		background-image: -webkit-linear-gradient(65deg,rgba(37,63,114,1.00) 0%,rgba(26,69,124,1.00) 30.05%,rgba(111,172,228,1.00) 100%);
		background-image: -moz-linear-gradient(65deg,rgba(37,63,114,1.00) 0%,rgba(26,69,124,1.00) 30.05%,rgba(111,172,228,1.00) 100%);
		background-image: -o-linear-gradient(65deg,rgba(37,63,114,1.00) 0%,rgba(26,69,124,1.00) 30.05%,rgba(111,172,228,1.00) 100%);
		background-image: linear-gradient(25deg,rgba(37,63,114,1.00) 0%,rgba(37,63,114,1.00) 30.05%,rgba(111,172,228,1.00) 100%);
	}
	
    #Logo {
        max-width: 130px;
		display: block;
		order: 10;
    }
	
	#viewport_klein {
		width: auto;
		margin-top: 4vh;
		padding-left: 5%;
		font-size: 2.5rem;
	}
	
	h1 {
		width: auto;
	}
       
    nav {
        width: auto;
    }
	
	#navlinks {
		margin: 0 14vw 0 0;
	}
		
    nav a {
		justify-content: space-around;
        font-size: 1em;
		padding-bottom: 1rem;
		}
    
    main {
        flex-direction: row;
    }
	
	article {
		padding: 2rem;
	}
	
	#galerie figure:nth-child(2n-1):hover, #galerie figure:nth-child(2n-2):focus {
		transform: scale(2.5) rotate(-2.5deg);
		
	}

	#galerie figure:nth-child(2n):hover, #galerie figure:nth-child(2n):focus {
		transform: scale(2.5) rotate(3.5deg);
		
	}
}

@media (min-width: 1024px){
	header {
		justify-content: space-between;
	}
    #Logo {
        order: 10;
	}
	
	#viewport_klein {
		display: none;
	}
	
	#viewport_gross {
		display: flex;
		margin-top: 7vh;
		margin-left: 2rem;
		font-size: 3.5rem;
		
		order: 20;
	}
	
	nav {
		width: 10%;
		order: 30;
		justify-content: space-around;
	}
	
	#menulink {
		width:15%;
		padding-right: 5rem;
		font-size: 4rem;
	}
	
    #Anschrift {
        font-size: 1.5rem;
        padding-top: 30px;
    }
	
	#navlinks {
		top: 1rem;
		margin: 0 13vw 0 0;
	}
    
    nav ul{
        flex-direction: column;
		margin-top: 3rem;
    }
    
    nav a {
        width: 14vw;
        font-size: 1em;
        justify-content: space-around;
    }
    
    main {
        flex-direction: row;
    }
    
    article {
        padding: 20px;
    }
}
@media (min-width: 1601px) {
	#navlinks {
		flex-direction: column;
		display: flex;
		position: relative;
		top: 0;
		background-color: none; 		/* +++ nur für alte Browser erforderlich +++ */
		background-color: rgba(68,107,143,0);
		margin: 0 1rem 0 0;
	}
	
	#menulink {
		display: none;
	}
}

