.title {
	text-align: center;
	margin-top: 180px;
	font-family: Komet;
	padding: 0 150px;
}

.title h1 {
 	font-size: 80px;
 	color: #751e29;
	font-family: Komet-SC;
	margin-bottom: 25px;
	text-decoration: underline;
}

.subtitle {
 	font-size: 30px;
 	color: #751e29;
}



.gallery {
  	display: grid;
  	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  	gap: 10px;
	padding: 20px;
}

.gallery img,
.gallery video {
  	width: 100%;
  	aspect-ratio: 1 / 1;
  	object-fit: cover;
  	border-radius: 8px;
  	cursor: pointer;
  	display: block;
  	transition: transform 0.3s ease;
}

.gallery img:hover,
.gallery video:hover {
  	transform: scale(1.05);
  	z-index: 1;
  	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


.lightbox {
  	display: none;
  	position: fixed;
  	inset: 0;
  	background: rgba(0, 0, 0, 0.9);
  	justify-content: center;
  	align-items: center;
  	flex-direction: column;
  	z-index: 1000;
}

.lightbox.show {
  	display: flex;
}

.lightbox-image {
  	max-width: 90%;
  	max-height: 80vh;
  	margin-bottom: 20px;
  	border-radius: 8px;
}

.close {
  	position: absolute;
  	top: 20px;
  	right: 30px;
  	font-size: 30px;
  	color: white;
  	cursor: pointer;
}

.prev, .next {
  	position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
  	font-size: 40px;
  	background: none;
  	border: none;
  	color: white;
  	cursor: pointer;
  	user-select: none;
}

.prev {
  	left: 20px;
}

.next {
  	right: 20px;
}


.lightbox-video {
  	max-width: 90%;
  	max-height: 80vh;
  	display: none;
  	border-radius: 8px;
}

