body {
	font-family: 'Lacquer', cursive;
}

.bw {
	background-color: #000000;
	color: #FFFFFF;
}

.active {
	background-color: #FFFFFF !important;
	color: #000000 !important;
}

a {
	text-decoration: none;
}

.nav-link:hover {
	background-color: #000000 !important;
	color: pink !important;
}

/* Video Background */
.bg-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	pointer-events: none;
}

/* Collage/Gallery Grid */
.media-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin: 0 auto;
}

.media-grid > a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.media-wrapper {
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.media-item {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
	cursor: pointer;
	border-radius: 10px;
}

.media-item.fade-in {
	opacity: 1;
	transform: translateY(0);
}

.media-caption {
	color: #FFFFFF;
	font-size: 0.85rem;
	text-align: center;
	margin-top: 8px;
	margin-bottom: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.media-grid > a:has(.media-item.fade-in) .media-caption {
	opacity: 1;
	transform: translateY(0);
}

.collage-hidden {
	display: none;
}

/* Next Show Card */
.next-show-container {
	display: flex;
	justify-content: center;
	padding: 0 1rem;
}

.next-show-card {
	background-color: #FFFFFF;
	color: #000000;
	border-radius: 10px;
	padding: 2rem;
	max-width: 600px;
	width: 100%;
	box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

.next-show-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	text-align: center;
}

.next-show-content {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.next-show-image {
	flex-shrink: 0;
	width: 150px;
	height: 150px;
	overflow: hidden;
	border-radius: 8px;
	background-color: #f0f0f0;
}

.next-show-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.next-show-details {
	flex-grow: 1;
}

.next-show-details h4 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.next-show-details p {
	font-size: 1rem;
	color: #666;
	margin-bottom: 0;
}

/* Lightbox */
#lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

#lightboxContent {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
}

#lightboxClose {
	position: fixed;
	top: 20px;
	right: 20px;
	font-size: 2rem;
	color: #FFFFFF;
	cursor: pointer;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.7);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #FFFFFF;
}

#lightboxClose:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
	.media-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.media-wrapper {
		height: 250px;
	}
}

@media (max-width: 480px) {
	.media-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.media-wrapper {
		height: 300px;
	}
	
	.next-show-content {
		flex-direction: column;
		text-align: center;
	}
	
	.next-show-image {
		width: 200px;
		height: 200px;
	}
}
