@charset "utf-8";
/* CSS Document */

body
{
	background-color: #1a1a1a;
	margin: 0;
	width: 100%;
}

header
{
	z-index:1000; /* Wird benötigt damit der Header nicht hinter den Bildern mit Text verschwindet, lässt den Header immer im Vordegrund bleiben */
	color: white;
	background-color: black;
	width: 100%;
	position: fixed;
	top: 0;
	line-height: 60px;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 3px black;
    background: #1a1a1a;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #333;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #444;
}

.content
{
	margin-top: 60px; /* Verschiebt die ganze Seite um die Höhe des Headers nach unten damit man den Header sieht (Nur nötig weil Header immer mitscrollt, ansonsten nicht) */
}

@media (max-width: 900px)
{
	.desktop-menu
	{
		display: none;
	}
}

a
{
	text-decoration: none;
}

.link-hover-underline:hover
{
	text-decoration: underline;
}

.bild-hover
{
	transition: 0.3s;
}

.bild-hover:hover
{
	opacity: 0.8;
}

h1
{
	font-family: Montserrat;
	font-size: 45px;
	color: white;
	text-align: center;
}

h2
{
	font-family: Montserrat;
	font-size: 25px;
	color: white;
	text-align: center;
}

h3
{
	font-family: Lato;
	font-size: 18px;
	color: white;
	text-align: center;
}

.wrapper /* Begrenzt den Platz auf der Seite nach rechts und Links hin so das alles schön in der Mitte ist */
{
	max-width: 1024px;
	margin: auto;
}

@media (max-width: 900px)
{
	#logo img
	{
		height: 25px;
		padding-top: 15px;
	}
}

@media (min-width: 900px)
{
	#logo img
	{
		height: 35px;
		padding-top: 10px;
	}
}

#logo img
{
	float: left;
    display: block;
	transition: 0.3s;
	padding-left: 10px;
	line-height: 100%;
}

#logo img:hover
{
	opacity: 0.6;
}

#header-title
{
	font-family: Montserrat, sans-serif;
	font-size: 22px;
	color: white;
	float: left;
    display: block;
    margin-left: 15px;
	transition: 0.3s;
}

#header-title:hover
{
	opacity: 0.6;
}

@media (max-width: 900px)
{
	#header-title
	{
		font-size: 18px;
	}
}

a.menu-tab
{
	color: white;
	transition: 0.3s;
	margin-right: 8px;
}

a.menu-tab:hover
{
	color: #CB410B;
}

nav.desktop-menu
{
	font-family: lato, sans-serif;
	font-size: 13px;
	float: right;
    position: relative;
}

button
{
	background-color: #FF3800;
	border: none;
	color: white;
	padding: 4px 8px;
	text-align: center;
	border-radius: 12px;
	transition: 0.3s;
	cursor: pointer; /* Lässt Hand statt Zeiger erscheinen wenn man drauf hovert */
}

button:hover
{
	background-color: #CB410B;
}

/* Container welches das Bild mit dem zentrierten Text beinhaltet */
.bildcontainer {
	width: 100%;
	height: 75vh;
	position: relative;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

@media (max-width: 750px)
{
	.bildcontainer
	{
		height: 50vh;
	}
}

/* Zentrierter Text im Bild */
.centered {
  position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Kleiner Text im Bild */
.bannertext-small
{
	font-family: Montserrat;
	font-size: 3vw;
	color: white;
	text-shadow: 0px 0px 15px #000;
}

/* Großer Text im Bild */
.bannertext-big
{
	font-family: Montserrat;
	font-size: 5vw;
	color: white;
	text-shadow: 0px 0px 30px #000;
	margin-top: -10px;
}

.banner-box-shadow
{
	box-shadow: 0 0 50px black;
}

/* Titel des Impressums */
.about-title,
.impressum-title
{
	margin-top: 120px;
	font-family: Montserrat, sans-serif;
	font-size: 45px;
	color: white;
	text-align: left;
	margin-left: 10px;
	margin-right: 10px;
}

/* Text im Impressum */
.about-text,
.impressum-text
{
	margin-top: 50px;
	font-family: Lato, sans-serif;
	font-size: 18px;
	color: white;
	text-align: left;
	margin-left: 10px;
	margin-right: 10px;
}

/* Titel der Quellen */
.quellen-title
{
	margin-top: 120px;
	font-family: Montserrat, sans-serif;
	font-size: 45px;
	color: white;
	text-align: left;
}

/* Text in den Quellen */
.quellen-text
{
	margin-top: 50px;
	font-family: Lato, sans-serif;
	font-size: 18px;
	color: white;
	text-align: left;
	margin-bottom: 30px;
	padding: 10px;
}

.quellen-link
{
	color: white;
	transition: 0.3s;
}

.quellen-link:hover
{
	opacity: 0.6;
}

/* Footer startet hier*/

footer
{
	color: white;
	background-color: black;
	width: 100%;
}

.footer-logo
{
	display: block;
	padding-top: 20px;
	transition: 0.3s;
	margin: 0 auto;
	height:30px;
	width: auto;
}

.footer-title
{
	font-family: Montserrat, sans-serif;
	font-size: 20px;
	color: white;
    display: block;
	margin-top: 5px;
	transition: 0.3s;
	text-align: center;
	margin-left: 15px;
}

nav#footer-menu
{
	font-family: lato, sans-serif;
	font-size: 11px;
	padding-top: 12px;
	text-align: center;
    position: relative;
	color: #666;
}

a.footer-menu-tab
{
	color: #666;
	margin-right: 10px;
	border-right: 1px solid #666; /* Border = Abtrennung der Links */
	padding-right: 10px;
}

a.footer-menu-last-tab /* Letzter Tab ohne Border */
{
	color: #666;
	margin-right: 10px;
}

a.footer-menu-tab:hover,
a.footer-menu-last-tab:hover
{
	text-decoration: underline;
}

.copyright
{
	color: #666;
	transition: 0.3s;
	text-align: center;
	margin-top: 12px;
	font-family: lato, sans-serif;
	font-size: 11px;
	padding-bottom: 15px;
}

/* Footer endet hier */

.table-daten
{
	font-family: lato;
	text-align: left;
	font-size: 18px;
	padding-top: 50px;
	line-height: 150%;
	width: 100%
}

.table-daten tr,.table-daten td
{
	font-family: lato;
	color:white;
	padding-top: 50px;
	padding-right: 100px;
	padding-bottom: 40px;
	padding-left: 10px;
	vertical-align: text-top;
}

@media (max-width: 900px)
{
	.table-daten tr,.table-daten td
	{
		padding-right: 10px;
	}
}

.table-kaufen
{
	font-family: lato;
	text-align: center;
	font-size: 16px;
	padding-top: 50px;
	line-height: 150%;
	width: 100%;
	margin-bottom: 100px;
}

.table-kaufen td
{
	color:white;
	padding: 10px;
	vertical-align: text-top;
	width: 33%;
	text-align: center;
}

.table-kaufen img
{
	width: 100%;
	height: auto;
	margin: auto;
}

/* Anmeldenseite */

.login-container /* Die Box vom Login */
{
	text-align: center;
	max-width: 300px;
	padding: 20px;
	background-color: none;
	margin-top: 20vh;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

input[type=text], input[type=password]
{
	width: 100%;
	padding: 15px;
	margin: 5px 0 22px 0;
	border: none;
	border-radius: 12px;
	background: white;
	box-shadow: 0px 0px 20px #bbb;
	box-sizing: border-box;
}

input[type=text]:focus, input[type=password]:focus
{
	background-color: #eee;
	outline: none;
}

/* Hier steht alles über den Button. Er nutzt außerdem manche Einstellungen des "ONE Kaufen"-Buttons, z.B. der Hover */
.login-button
{
	background-color: #FF3800;
	color: white;
	padding: 9px 0px;
	border: none;
	cursor: pointer;
	width: 50%;
	opacity: 0.9;
	font-family: Montserrat;
	font-size: 14px;
	box-shadow: 0px 0px 20px #bbb;
}

.login-heading /* Login Schrift */
{
	font-family: Montserrat;
	font-size: 25px;
	color: black;
}

.login-discription
{
	font-family: Lato;
	font-size: 12px;
	color: #eee;
	text-align: center;
	background-color: #111;
	width: 240px;
	padding: 10px;
	box-shadow: 0px 0px 20px #bbb;
	border: none;
	border-radius: 12px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}

/* Reisetipps */

@media (max-width: 1124px)
{
    .timeline {
   	 display: none
    }
    .mobile-timeline .bildcontainer .centered .bannertext-big {
   	 font-size: 3vw;
		margin-bottom: 2px;
		padding-top: 10px
	}
    .mobile-timeline .bildcontainer .centered .bannertext-small {
   	 font-size: 2.5vw;
    }
    .mobile-timeline .bildcontainer {
   	 padding-top: 15px;
    }
    .mobile-timeline .bildcontainer:hover {
    opacity: 0.8;
    }
	.mobile-timeline .bildcontainer .centered {
	position: absolute;
	top: 40%;
	left: 40%;
	transform: translate(-30%, -30%);
}
}

@media only screen and (min-width: 1125px)
{
    .mobile-timeline
    {
   	 display: none;
    }
}


/* Text auf den einzelnen Seiten */
.reisetipps-text
{
	margin-top: 30px;
	padding: 0 10px;
	margin-bottom: 100px;
	font-family: Lato;
	font-size: 25px;
	color: white;
	text-align: left;
}

/* Der Bereich für die Timeline */
.timeline
{
	position: relative;
	max-width: 1024px;
	margin: 0 auto 150px;
}

/* Die eigentliche Timeline (Der Balken in der Mitte) */
.timeline::after
{
	content: '';
	position: absolute;
	width: 6px;
	border-radius: 3px;
	background-image: linear-gradient(to bottom, white 50%, #1a1a1a 100%);
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
	box-shadow: 0px 0px 15px black;
}

/* Container um content */
.tl-container
{
	padding: 20px 30px;
	position: relative;
	background-color: inherit;
	width: 50%;
}

/* Die Kreise auf der Timeline */
.tl-container::after
{
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	right: -17px;
	background-color: white;
	border: 4px solid #1a1a1a;
	top: 43%;
	border-radius: 50%;
	box-shadow: 0 0 10px black;
	z-index: 1;
}

/* Platziert den Container links */
.left {
	left: -60px;
}

/* Platziert den Container rechts */
.right {
	left: 50%;
}

/* Fixiert den Kreis auf der rechten Seite */
.right::after {
	left: -16px;
}

/* Der eigentliche Content */
.tl-content {
	padding: 20px 30px;
	background: white;
	box-shadow: 0px 0px 20px black;
	position: relative;
	border-radius: 10px;
	text-align: left;
	color: white;
	text-shadow: 0px 0px 5px black;
	font-family: Lato;
	transition: 0.3s;
}

.tl-content-picture1
{
	background-image: linear-gradient(transparent, rgba(0,0,0,0.3)), url(Bilder/banner-urknall.jpg);
	background-size: cover;
}

.tl-content-picture2
{
	background-image: linear-gradient(transparent, rgba(0,0,0,0.3)), url(Bilder/banner-dino.jpg);
	background-size: cover;
}

.tl-content-picture3
{
	background-image: linear-gradient(transparent, rgba(0,0,0,0.3)), url(Bilder/banner-jahr0.jpg);
	background-size: cover;
}

.tl-content-picture4
{
	background-image: linear-gradient(transparent, rgba(0,0,0,0.5)), url(Bilder/banner-41jhd.jpg);
	background-size: cover;
}

.tl-content:hover {
	opacity: 0.8;
}

.timeline-heading
{
	font-family: Montserrat;
	font-size: 25px;
	color: white;
	text-shadow: 0px 0px 5px black;
	text-align: center;
}

.mobile-menu{
	float: right;
}

.mobile-menu__ul
{
	border: none;
	right: -250px;
    width: 250px;
	background-color: black;;
	height: 100%;
	margin: 0;
    padding:0px 0px;
	position: fixed;
	transition:.3s;
	list-style-type:none;
}

.mobile-menu__ul--inner
{
	border: none;
	list-style-type:none;
	line-height: 40px;
	margin-top: -10px;
	padding-bottom: 20px;
}

.mobile-menu__ul__li
{
	border-bottom: 1px solid #222;
	padding: 0px 30px;
}

.mobile-menu__ul__li__link
{
	color: #fff;
	font-family: Lato;
	font-size: 16px;
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s;
}

.mobile-menu__ul__li__link:hover
{
	opacity: 0.6;
}

.hamburger-icon
{
	color: #fff;
	margin-right: 10px;
	transition: 0.3s;
}

.hamburger-icon:hover
{
	opacity: 0.6;
}

.nav-close,
#nav-open:target
{
    display: none;
}

a:target ~ .mobile-menu__ul,
a:target ~ .nav-close
{
    display: inline-block;
}

a:target ~ .mobile-menu__ul
{
    right: 0;
}

@media only screen and (min-width: 901px)
{
	.mobile-menu
	{
		display: none;
	}
}

.btn-back
{
	margin-top: 75px;
	margin-left: 10px;
}

.produktion-text {
	font-family: Lato;
	font-size: 25px;
	color: white;
	text-align: center;
}

.kaufen
{
	color: white;
}

.kaufen img
{
	padding: 0 20px;
	float: left;
	width: 200px;
	height: auto;
	text-align: center;
	font-family: Lato;
	font-size: 15px;
	color: white;
}

.kaufen-preis
{
	font-size: 18px;
	font-weight: bold;
}

.about-text p {
	padding-top: 100px;
	font-size: 25px;
}
