.breadcrumb {
	color: var(--gold-color);
}

.breadcrumb a {
	color: var(--gold-color);
	text-decoration: none;
}

/* ===== Gallery Container ===== */
.gallery-container {
	max-width: var(--container-width);
	margin: var(--section-space) auto;
	padding: 0 20px;
}

.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.section-title h2 {
	font-size: 32px;
	color: var(--primary-color);
	font-family: var(--accent-font);
	margin-bottom: 10px;
}

.section-title p {
	color: var(--text-color);
	font-size: 16px;
	font-family: var(--default-font);
	text-align: center;
}

/* ===== TAB NAVIGATION ===== */
.gallery-tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 14px 45px;
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 3px;
	transition: all 0.3s ease;
	font-family: var(--accent-font);
}

.tab-btn:hover {
	background: var(--gold-color);
	color: var(--white-color);
	border-color: var(--gold-color);
	box-shadow: 0 4px 15px rgba(217, 166, 46, 0.3);
}

.tab-btn.active {
	background: var(--primary-color);
	color: var(--white-color);
	border-color: var(--primary-color);
	box-shadow: 0 4px 15px rgba(217, 166, 46, 0.4);
}

/* ===== Tab Content ===== */
.tab-content {
	display: none;
	animation: fadeIn 0.5s ease;
}

.tab-content.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== Gallery Grid ===== */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 25px;
	margin-bottom: 50px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	height: 300px;
}

.gallery-item img,
.gallery-item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
	transform: scale(1.1);
}

/* ===== Overlay ===== */
.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(78, 10, 18, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.icon-circle {
	width: 60px;
	height: 60px;
	background: var(--gold-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white-color);
	font-size: 24px;
	transform: scale(0);
	transition: transform 0.3s ease;
}

.gallery-item:hover .icon-circle {
	transform: scale(1);
}

.icon-circle:hover {
	background: var(--primary-color);
	transform: scale(1.1) !important;
}

/* ===== Lightbox Modal ===== */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

.lightbox.active {
	display: flex;
}

.lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-img,
.lightbox-video {
	max-width: 100%;
	max-height: 85vh;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-video {
	width: 80vw;
	max-width: 1000px;
	height: 60vh;
	background: #000;
}

/* ===== Close Button ===== */
.lightbox-close {
	position: absolute;
	top: 20px;
	right: 30px;
	color: var(--white-color);
	font-size: 40px;
	cursor: pointer;
	z-index: 10000;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.lightbox-close:hover {
	background: var(--primary-color);
	transform: rotate(90deg);
}

/* ===== Navigation Arrows ===== */
.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: var(--white-color);
	font-size: 40px;
	cursor: pointer;
	z-index: 10000;
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.lightbox-nav:hover {
	background: var(--gold-color);
	transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
	left: 30px;
}

.lightbox-next {
	right: 30px;
}

/* ===== Image Counter ===== */
.lightbox-counter {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--white-color);
	font-size: 16px;
	background: rgba(0, 0, 0, 0.6);
	padding: 10px 25px;
	border-radius: 25px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 15px;
	}

	.gallery-item {
		height: 250px;
	}

	.tab-btn {
		padding: 12px 30px;
		font-size: 14px;
	}

	.lightbox-nav {
		width: 45px;
		height: 45px;
		font-size: 28px;
	}

	.lightbox-prev {
		left: 10px;
	}

	.lightbox-next {
		right: 10px;
	}

	.lightbox-close {
		top: 10px;
		right: 20px;
		font-size: 32px;
	}

	.lightbox-video {
		width: 95vw;
		height: 40vh;
	}
}

@media (max-width: 480px) {
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.section-title h2 {
		font-size: 24px;
	}

	.gallery-tabs {
		gap: 10px;
	}

	.tab-btn {
		padding: 10px 25px;
		font-size: 13px;
	}
}

/* ===== Mobile View Logic ===== */
@media screen and (max-width: 768px) {
	.gallery-filter-container,
	.tabs-container,
	.filter-wrapper {
		display: flex !important;
		flex-wrap: wrap !important;
		width: 100% !important;
		justify-content: center !important;
		gap: 10px !important;
		padding: 10px !important;
		box-sizing: border-box !important;
	}

	.gallery-filter-btn,
	.tab-btn,
	.filter-btn {
		flex: 1 1 calc(33.333% - 10px) !important;
		min-width: 120px !important;
		max-width: 100% !important;
		padding: 12px 10px !important;
		font-size: 14px !important;
		text-align: center !important;
		box-sizing: border-box !important;
	}
}

/* ===== DEFAULT PLAY ICON FOR VIDEO TAB ===== */
#video-tab .gallery-overlay {
	opacity: 1 !important;
	background: rgba(0, 0, 0, 0.4) !important;
}

#video-tab .icon-circle {
	transform: scale(1) !important;
}

#video-tab .gallery-item:hover .gallery-overlay {
	background: rgba(78, 10, 18, 0.85) !important;
}