

/* --- Galerie --- */
h1 {
	margin: 20px 0;
}
#galleryContent{
	margin-top : 20px;
}
.gallery {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px;
    width: 80vw;
	position : relative;
	left : 50%;
	transform : translate(-50%, 0);
	/* min */
    padding: 10px;
    justify-content: center; 
    margin: 0; 
}
.gallery img {
	width: 100%;
	pointer-events: none;
	height: auto;
	border-radius: 8px;
	cursor: pointer;
	/* transition: transform 0.3s; */
}
.image-wrapper{
	transition: transform 0.3s;
}
.image-wrapper:hover {
	transform: scale(1.05);
}
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s, visibility 0.5s;
}

.lightbox.show {
	opacity: 1;
	visibility: visible;z-index : 1000;
}
.lightbox.hidden {
	opacity: 0;
	visibility: hidden;z-index : 1000;
}
.close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 30px;
	color: white;
	cursor: pointer;
}