/* CSS Document */


body {
	margin: 0;
	padding: 0;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-size: 2em;
    
    background-color: #bbbbbb;
}

/* hauptnavigation */

/* hamburgermenü */

.menu__toogle {
	display: block;
	position: fixed;
	
	top: 20px;
	left: 20px;
	z-index: 1;
    
    background-color: #FFFFFF;
    border: 10px solid #FFFFFF;
    border-bottom: 3px solid #FFFFFF;

}

.menu__toogle input[type="checkbox"] {
	
	display: block;
	width: 400px;
	height: 320px;
	
	position: absolute;
	
	top: -7px;
	left: -5px;
	
	cursor: pointer;
	z-index: 2;
	
	opacity: 0;
    
}

.menu__toogle span {
	display: block;
	width: 50px;                                        /*33px*/
	height: 9px;                                        /*4px */
	background-color: #000000;							/* farbe "burger" */
	
	margin-bottom: 8px;
	
	position: relative;
	z-index: 1;
	
	transform-origin: 3px 5px;
	transition: transform 0.5s cubic-bezier(0.72,0.2,0.05,1.0), background 0.5s cubic-bezier(0.72,0.2,0.05,1.0), opacity 0.5s ease;
}

.menu__toogle input:checked ~ span {
	opacity: 1;
	transform:  rotate(45deg);
	background-color: #000000;							/* farbe kreuz */
	
}

.menu__toogle input:checked ~ span:nth-last-child(3) {
	opacity: 0;
}

.menu__toogle input:checked ~ span:nth-last-child(2) {
	transform: rotate(-45deg);
}

.menu__links {
	position: absolute;
	width: 900px;
	min-height: 100vh;
	margin: -1005px 0 0 -50px;
	padding: 1005px 50px 50px 50px;
	background-color: #FFFFFF;
	list-style: none;
    text-align: center;
	
	transform: translate(-100%, 0);
	transition: transform 0.5s cubic-bezier(0.72,0.2,0.05,1.0);
        
}

.menu__toogle input:checked ~ ul {
	transform: none;
}

.menu__links a {
	transition: color 0.3 ease;
    
}

.menu__links a:hover {
	color: orangered;
}

.menu__links li {
	padding: 0;
	font-size: 3em;
}

/* Burgermen ENDE */

.wiederoben {
    display: none;
}

#dreizehn {
    display: none;
}

/* hauptnavigation ende */

/* Navigation 2.Ebene */

ul.secondnav2 {
    display: none;
}

/* Navigation 2.Ebene ENDE */

/* hauptselektoren grundaufbau*/

main {
    width: 99%; 		height: auto;
	margin-left: auto 0.1em auto 0;
	
	padding: 0;
	
	background-color: #ffffff;
	border: 5px solid #A4A4A4;

	min-height: 170px;
   
}

main h1 {
    font-size: 2.5em;
    width: 100%;
    text-align: center;
    margin: 75px 0 0 0;
}

main h2 {
    font-size: 1.8em;
    width: 90%;
    text-align: left;
    margin: 10px 0 15px 15%;
    
}

main h3 {
    font-size: 2em;
    width: 100%;
    text-align: center;
    

}

a {
    color: #007AFC;
    text-decoration: none;
}

a:hover {
    color: #FF0000;
}

p {
    font-size: 1.5em;
    margin: 1em 0.3em 1em 0.3em;
}

p.welcome {
    margin: 2em 0.3em 0.5em 0.3em;
}

div.karte p {
    margin: -25px 0 25px 0;
    font-size: 12px;
    text-align: center;
}

ul.footer {
    display: none;
}

/* Fahrzeuge */

table.fahrzeuge {
    border-collapse: collapse;
    margin: 0;
    width: 99%;
    height: 194px;
    font-size: 1.3em;
    text-align: left;
}

table.fahrzeuge th {
    width: 110px;
    padding: 0 5px 0 10px;
    text-align: right;

}

table.fahrzeuge tr {
    border-bottom: 1px solid #333333;
}

table.fahrzeuge tr:last-child {
    border-bottom: none;
}

tr.fahrzeugbeschreibung td {
    vertical-align: middle;
    text-align: center;
    padding: 5px;
}

td.fahrzeugbild {
    padding: 0;
    width: 320px;
}

td.fahrzeugbild img {
    width: 320px;
    height: 240px;
    margin: 5px;
    padding: 0;
    border-radius: 15px;
    
    border: 1px solid #333333;
}


/* ausfahrten */

div.jahres-container {
    width: 100%;
}

div.j2021, div.j2023, div.j2024, div.jgeplant {
    width: 100%;
}

div.j2021 h3, div.j2023 h3, div.j2024 h3, div.jgeplant h3 {
    text-decoration: underline;
    margin: 0 0 1em 0;
    padding: 0;
}

ul.tourenliste {
    list-style-type: none;
    font-size: 2em;
    margin: 0 0 1em 0;
    padding: 0;
    min-height: 35px; 
    min-width: 100%;
    
}

ul.tourenliste li {
    width: 99%;
    text-align: center;
    margin: 5px 0 10px 0;
    
}

div.grid-touren {
    text-align: center;
    width: 100%;
    margin: 80px 0 0 0;
    padding: 5px;
    display: grid;
    grid-template-areas:  'grid-ueberschrift'
                           'route'
                           'infotourtable'
                           'karte'
                           'tourtext'
                           'tags'
                            'tourfotos'
                            '.'
                            'footer';

}

div.grid-touren h2 {
    margin: 0 0 0 0;
    width: 99%;    
}

ul.grid-touren a {
    font-size: 1.5em;
}

table.infotourtable {
    margin: 0 0 15px 0;
}

table.infotourtable td {
    text-align: left;
    padding: 0 0 0 10px;
}

table.infotourtable td:first-child {
    text-align: right;
}

div.karte a img {
    width: 75vw;
    height: auto;
    border-radius: 15px;
    border:1px solid #333333;
    margin: 0 auto 0 15px;
}

div.tourfotos img {
    width: 30vw;
    height: auto;
    border-radius: 15px;
    border:1px solid #333333;
    margin: 0 0 15px 15px;
    float: left;
    
}

div.tourfotos img.panoramabild {
    width: 75%;
    
}

p.tags {
    font-size: 0.8em
}
/* sonstige */

.desktoponly {
    display: none;
}

.mobileonly {}

ul.sitemap-links {
    list-style: none;
}