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


/* ----------------------------- Navileiste Links -----------------------------------*/

.bildnav {
	display: flex;
	flex-flow: column wrap;
	margin-top: 2em;
	margin-right: 2em;
	max-width: 20em;
	justify-content: center;
	padding: 1em;
	background-color: rgba(117, 90, 60, 0.40);
	float: left;
	border-radius: 0.5em;
	box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.75);
}

.bildNaviThumb {
	width:15em;
	border: 5px solid #8F521D;
	margin-top: 2em;
}

.bildnav a:hover {
	transform: scale(1.25) rotate(10deg);
	transition: all 0.5s ease;	
}

/* -------------------- Vorschau der Bilderseiten --------------------------------*/
li {
	display: inline-block;	
	list-style-type: none;
	width: 45%;
	text-align: center;
	vertical-align: middle;
}

.bildcontent{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	margin: 1em;
	padding: 1em;
	background-image: url("../navi/img/bretterHG.jpg");
	
}

.bildthumb_h {
	width:10em;
	border: 5px solid #8F521D;
	border-radius: 0.5em;
}

.bildthumb_w {
	height: 12em;
	border: 5px solid #8F521D;
	border-radius: 0.5em;
}


hr{
	border: 2px solid #8F521D;
}


.detail {
	display: none;
	position: absolute;
	left: 0em;
    top: 1em;
	padding: 1em 0em 1em 0em;
    background-color: rgba(117, 90, 60, 0.75);
    border-radius: 8px;    
	max-width: 100%;    
	z-index: 1;
	box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.75);    	
}

.detail img {
	position: relative;
	width: 90%;
	left: 5%;
}


.detail:target {
    display: block;
  }

.close {
    width: 0;
    height: 0;
    border: 0; 
    text-shadow: none; 
    color: transparent;
  }


/*  ------------------- DEsktop ------------------------------*/
@media screen and (min-width: 90em) {
	
	li {
		width: 25%;
	}
	
	.bildcontent{
		display: flex;
		flex-flow: row wrap;
	}
	
	.detail {
		max-width: 100%;
		left: 0em;
		background-color: rgba(117, 90, 60, 0.75)
	}
	
	.detail img {
		position: relative;
		width: 40%;
		left: 30%;
	}
	
	
}





