@import url('https://fonts.googleapis.com/css2?family=Arvo:wght@700&family=Lexend:wght@100..900&display=swap');

.photo-grid-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 2em 1em;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
}

/* Events Grid Container */
.photo-grid-container.events {
	width: calc(100% - 200px);
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	background: none;
	backdrop-filter: none;
}

/* Special Offers Grid Container */
.photo-grid-container.offers {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 2em 1em;
}

.photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2em;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

/* Events Grid */
.photo-grid.events {
	display: flex;
	flex-direction: column;
	gap: 2em;
	width: 100%;
	max-width: 100%;
}

/* Special Offers Grid */
.photo-grid.offers {
	grid-template-columns: repeat(2, 1fr);
	max-width: 1200px;
}

.photo-grid-item {
	position: relative;
	background: rgba(21, 112, 213, 0.1);
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	aspect-ratio: 16/9;
}

/* Events Grid Items */
.photo-grid.events .photo-grid-item {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 21/9;
	border-radius: 0 0 5px 5px;
}

.photo-grid-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.photo-grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.photo-grid-item:hover img {
	transform: scale(1.05);
}

.photo-grid-item figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1em;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: #fff;
	font-size: 1em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: all 0.3s ease;
}

/* Special Offers Grid Caption */
.photo-grid.offers .photo-grid-item figcaption {
	font-size: 0.8em;
	padding: 0.6em;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
	bottom: -1.5em;
	transform: translateY(0);
	transition: all 0.3s ease;
}

.photo-grid.offers .photo-grid-item:hover figcaption {
	bottom: 0;
	transform: translateY(0);
}

#offers-grid-title {
	font-family: "Lexend", sans-serif;
	font-weight: 600;
	font-style: normal;
	text-align: center;
	margin-bottom: 1.5em;
	color: #fff;
	font-size: 1.5em;
}

#grave-shift-font,
#terror-tuesday-font,
#wicked-wednesday-font,
#movie-night-font {
	color: #fff;
	background: linear-gradient(135deg, #1570d5, #034f84);
	padding: 0.5em 1em;
	border-radius: 8px;
	font-size: 0.9em;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
	.photo-grid.offers {
		gap: 1.5em;
		max-width: 90%;
	}
}

@media screen and (max-width: 900px) {
	.photo-grid-container.events {
		width: 100%;
		padding: 0;
	}

	.photo-grid-container.offers {
		padding: 1.5em 0.5em;
	}

	.photo-grid.offers {
		gap: 1em;
		max-width: 95%;
	}

	#offers-grid-title {
		font-size: 1.2em;
		margin-bottom: 1em;
	}
}

@media screen and (max-width: 768px) {
	.photo-grid-container {
		padding: 1em 0.5em;
	}

	.photo-grid-container.events {
		padding: 0;
	}

	.photo-grid-container.offers {
		padding: 1em 0.5em;
	}

	.photo-grid.offers {
		gap: 1em;
	}

	.photo-grid-item figcaption {
		padding: 0.8em;
		font-size: 0.9em;
	}

	.photo-grid.offers .photo-grid-item figcaption {
		font-size: 0.7em;
		padding: 0.5em;
		bottom: -1em;
	}
}

@media screen and (max-width: 480px) {
	.photo-grid.offers {
		grid-template-columns: 1fr;
		gap: 1em;
		max-width: 100%;
	}

	.photo-grid-item {
		aspect-ratio: 16/9;
	}

	.photo-grid.events .photo-grid-item {
		aspect-ratio: 16/9;
	}

	.photo-grid-item figcaption {
		font-size: 0.8em;
		padding: 0.6em;
	}

	.photo-grid.offers .photo-grid-item figcaption {
		font-size: 0.7em;
		padding: 0.5em;
		bottom: -0.8em;
	}

	#offers-grid-title {
		font-size: 1.1em;
		margin-bottom: 0.8em;
	}
}
  