.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
	padding: 20px;
	max-width: 1200px;
	margin: auto;
}
.gallery img {
	width: 100%;
	height: auto;
	cursor: pointer;
	border-radius: 5px;
	transition: transform 0.3s ease;
}
.gallery img:hover {
	transform: scale(1.05);
}
/* Lightbox štýl */
#lightbox {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
	transition: 0.3s ease;
}
#lightbox.active {
	visibility: visible;
	opacity: 1;
}
#lightbox img {
	max-width: 90%;
	max-height: 80%;
}
#lightbox .controls {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	box-sizing: border-box;
}
#lightbox .arrow {
	color: white;
	font-size: 40px;
	cursor: pointer;
	user-select: none;
}
#lightbox .close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 35px;
	color: white;
	cursor: pointer;
}
