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

		
#splash_page {
	width:100%;
	height:100%;
	background-image: url("img/Stage/photo_riebler_liebe_zufall-7956_web.jpg");
	background-position: 50% 40%;;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	position: relative;	
}
#gallery_page {
	margin-top: 85px;
	width: 100vw;
}

.gallery_headline {
	font-size: 65px;
	color: #33ccff;
	margin: 0 auto 0 auto;
	line-height: 60px;	

}


.gallery_container {
	width: 85%;
	margin: 0 auto 65px auto;
}
		

.gallery_header {
	font-size: 24px;
	color: #33ccff;
	font-weight: bold;		
}
		
.gallery_images {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 15px;
	margin: 25px 0 0 0;
}
		
.gallery_images_preview{
	max-width: 150px;
	max-height: 150px;
	border-radius: 5px;
	overflow: hidden;
	opacity: 0.6;
	filter: grayscale(100%);
	cursor: pointer;
}
/* On screens that are 6000px or less, wrapper behaviour to coloum */
@media screen and (max-width: 600px) {
	
	.gallery_images_preview {
		margin-bottom: 15px;
	}
	
} /* end of media query */

		
.gallery_images_preview:hover{
	opacity: 1;
	filter: grayscale(0%) drop-shadow( 0 0 3px rgba(105, 123, 127, 0.4));
}
		
.gallery_images_preview img {
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}


/* The Modal (background) */
.modal {
  	display: none;
 	position: fixed;
	z-index: 11;
	width: 100%;
  	height: 100%;
	top: 0;
	left: 0;
  	background-color: rgba(13, 64, 81, 0.8);
	overflow: hidden;
}

/* Modal Content */
.modal-content {
	background-color: rgba(255,255,255,0.00);
	border: 0;
	width: 100%;
	height: 100%;
	display: block;
	padding: 0 auto 0 auto;
}

.mySlides, .mySlides2 {

}

.modal_images {
	/*max-width: 75vw;
	max-height:95vh;*/
	max-width: 100vw;
	max-height: 100vh;
	object-fit: cover;
	object-position: center;
	border-radius: 5px;
	filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.4));
	position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.image_caption {
	position: absolute; 
	z-index: 11; 
	color:#dcecf2; 
	font-size: 12px;
	bottom: 1vh;
	text-align: left;
	border-radius: 0 5px 5px 0;
	/*background-color: rgba(13, 64, 81, 1.0);*/
	padding: 15px;
	
}

/* The Close Button */
.close {
	width: 25px;
	position: absolute;
	right: 25px;
	top: 25px;
	opacity: 0.6;
	transition: all 360ms ease;
	filter: grayscale(100%);
	z-index: 11;

}

.close:hover,
.close:focus {
  text-decoration: none;
	opacity: 1;
  cursor: pointer;
	filter: grayscale(0%) drop-shadow(0 0 3px rgba(105, 123, 127, 0.4));
}

/* Hide the slides by default */
.mySlides, .mySlides2 {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
 	cursor: pointer;
	position: absolute;
 	width: 25px;
	opacity: 0.6;
	filter: grayscale(100%);
	transition: all 360ms ease;
	z-index: 12;
	top: 45%;
}

/* Position the "next button" to the right */
.next {
	right: 4vw;
}

.prev {
	left: 2vw;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
	opacity: 1.0;
	filter: drop-shadow(0 0 3px rgba(105, 123, 127, 0.4));

}

/* Caption text */
/*.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}*/
