body {
	overflow-x: hidden;
}

/* Event Section Styles */
.event-section {
	min-height: 100vh;
	padding-top: 50px;
}

/* Event Banner - Fixed Height */
.event-banner {
	position: relative;
	width: 100%;
	height: 227px;
	margin-left: 0;
	margin-bottom: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.event-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-content-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 2;
	padding: 0 50px;
}

.banner-left {
	color: white;
	max-width: 400px;
}

.banner-right {
	color: white;
	max-width: 900px;
	text-align: right;
}

.banner-title {
	font-family: "Metropolis", sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: #d9ab77;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	margin-bottom: 0.5rem;
	line-height: 1.1;
}

.banner-subtitle {
	font-family: "Montserrat", sans-serif;
	font-size: 14pt;
	color: white;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
	letter-spacing: 2px;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.banner-description {
	font-family: "Montserrat", sans-serif;
	font-size: 11pt;
	color: white;
	line-height: 1.5;
}
strong {
	color: #d9ab77;
}

/* Event Gallery Grid */
.event-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	width: 100%;
}

.event-item {
	position: relative;
	width: 100%;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s ease;
	aspect-ratio: 3 / 2;
}

.event-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s ease;
}

.event-item:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	z-index: 10;
}

/* Modal Styles */
.image-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	animation: fadeIn 0.3s ease;
}

.image-modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	margin: auto;
	animation: zoomIn 0.3s ease;
}

.modal-image {
	width: 100%;
	height: auto;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-btn {
	position: absolute;
	top: -15px;
	right: -15px;
	background: #d9ab77;
	color: white;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10001;
}

.close-btn:hover {
	background: #c49660;
	transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.event-item {
	animation: fadeInUp 0.6s ease forwards;
	opacity: 0;
}

.event-item:nth-child(1) {
	animation-delay: 0.1s;
}
.event-item:nth-child(2) {
	animation-delay: 0.2s;
}
.event-item:nth-child(3) {
	animation-delay: 0.3s;
}
.event-item:nth-child(4) {
	animation-delay: 0.4s;
}
.event-item:nth-child(5) {
	animation-delay: 0.5s;
}
.event-item:nth-child(6) {
	animation-delay: 0.6s;
}
.event-item:nth-child(7) {
	animation-delay: 0.7s;
}
.event-item:nth-child(8) {
	animation-delay: 0.8s;
}
.event-item:nth-child(9) {
	animation-delay: 0.9s;
}
.event-item:nth-child(10) {
	animation-delay: 1s;
}
.event-item:nth-child(11) {
	animation-delay: 1.1s;
}
.event-item:nth-child(12) {
	animation-delay: 1.2s;
}
.event-item:nth-child(13) {
	animation-delay: 1.3s;
}
.event-item:nth-child(14) {
	animation-delay: 1.4s;
}
.event-item:nth-child(15) {
	animation-delay: 1.5s;
}
.event-item:nth-child(16) {
	animation-delay: 1.6s;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.event-gallery {
		grid-template-columns: repeat(3, 1fr);
	}

	.banner-content-wrapper {
		padding: 0 30px;
	}

	.banner-right {
		padding-left: 30px;
		text-align: right;
	}

	.banner-title {
		font-size: 2.2rem;
	}
}

@media (max-width: 768px) {
	.banner-content-wrapper {
		flex-direction: column;
		justify-content: center;
		padding: 0 20px;
		text-align: center;
	}

	.banner-left {
		max-width: none;
		margin-bottom: 1rem;
	}

	.banner-right {
		padding-left: 0;
		max-width: none;
		text-align: center;
	}

	.banner-title {
		font-size: 2rem;
	}

	.banner-subtitle {
		font-size: 1rem;
	}

	.banner-description {
		font-size: 0.8rem;
	}

	.event-gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.menu-item {
		margin: 0.5rem 1rem;
	}

	.modal-content {
		max-width: 95%;
		max-height: 85%;
	}

	.close-btn {
		top: -10px;
		right: -10px;
		width: 35px;
		height: 35px;
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.event-section {
		padding-top: 55px;
	}

	.banner-content-wrapper {
		padding: 0;
	}

	.banner-left {
		margin: 0;
		padding: 0;
	}

	.banner-title,
	.banner-subtitle,
	.banner-description {
		margin: 0;
		padding: 0;
	}

	.banner-title {
		font-size: 1rem;
	}

	.banner-subtitle {
		font-size: 0.5rem;
	}

	.banner-description {
		font-size: 0.6rem;
	}

	.event-gallery {
		grid-template-columns: 1fr;
	}

	.modal-content {
		max-width: 98%;
		max-height: 80%;
	}

	.close-btn {
		top: -8px;
		right: -8px;
		width: 30px;
		height: 30px;
		font-size: 16px;
	}
}
