:root {
	--blue: #1A4FD6;
	--blue-light: #EEF3FF;
	--blue-mid: #3B6EF5;
	--ink: #0F1729;
	--ink-mid: #334060;
	--muted: #7A8BAA;
	--border: #E3E9F4;
	--surface: #F7F9FC;
	--white: #ffffff;
	--gold: #F59E0B;
	--success: #059669;
	--orange: #f97316;
	--orange2: #fb923c;
	--accent: #2563eb;
	--accent2: #3b82f6;
}

.filter-wrap {
	background: var(--white);
	padding: 40px 60px 0;
}

.filter-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 0;
}

.tab {
	padding: 9px 22px;
	border-radius: 30px;
	border: 1.5px solid var(--border);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	background: var(--white);
	color: #475569;
	transition: all .2s;
	font-family: 'Inter', sans-serif;
}

.tab:hover {
	border-color: var(--accent2);
	color: var(--accent);
}

.tab.active {
	background: var(--accent);
	color: var(--white);
	border-color: var(--accent);
}


.gallery-section {
	background: var(--white);
	padding-top: 32px;
}

.gallery-grid {
	columns: 4;
	column-gap: 16px;
}

.gallery-item {
	break-inside: avoid;
	margin-bottom: 16px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	display: block;
	border: 1px solid #E3E9F4;
    padding: 5px;
    box-shadow: 0px 0px 7px 0px #E3E9F4;
}

.gallery-item .img-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.gallery-item .img-wrap img {
	width: 100%;
	display: block;
	transition: transform .4s ease;
}

.gallery-item:hover .img-wrap img {
	transform: scale(1.06);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 22, 40, .8) 0%, transparent 55%);
	opacity: 0;
	transition: opacity .3s;
	display: flex;
	align-items: flex-end;
	padding: 14px;
	border-radius: 10px;
}

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

.overlay-text {
	color: var(--white);
}

.overlay-text h4 {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 2px;
}

.overlay-text p {
	font-size: 11px;
	opacity: .75;
}

.gallery-zoom {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .9);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .3s;
	font-size: 14px;
	color: var(--navy);
}

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


.cat-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--orange);
	color: white;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	letter-spacing: .5px;
	text-transform: uppercase;
}


.ph {
	width: 100%;
	display: block;
	background: var(--navy2);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.ph::after {
	content: attr(data-icon);
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	opacity: .18;
}


.highlight-section {
	background: var(--light);
}

.highlight-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.highlight-card {
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.highlight-card .ph {
	border-radius: 12px;
}

.highlight-card .overlay-full {
	position: absolute;
	inset: 0;
/*	background: linear-gradient(to top, rgba(10, 22, 40, .85) 30%, transparent 70%);*/
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border-radius: 12px;
}

.highlight-card h3 {
	color: white;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 6px;
}

.highlight-card p {
	color: rgba(255, 255, 255, .7);
	font-size: 13px;
}

.play-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--orange);
	color: white;
	font-size: 11px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 20px;
	margin-top: 12px;
	width: fit-content;
}


.events-section {
	background: var(--white);
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.event-card {
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow .2s, transform .2s;
}

.event-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, .09);
	transform: translateY(-3px);
}

.event-thumb .ph {
	border-radius: 0;
}

.event-body {
	padding: 18px;
}

.event-date {
	font-size: 11px;
	font-weight: 700;
	color: var(--orange);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.event-body h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 6px;
}

.event-body p {
	font-size: 12px;
	color: #64748b;
	line-height: 1.6;
}

.event-tag {
	display: inline-block;
	margin-top: 12px;
	background: #eff6ff;
	color: var(--accent);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
}


.cta-banner {
	background: linear-gradient(135deg, var(--accent) 0%, #1e3a8a 100%);
	padding: 52px 60px;
	text-align: center;
}

.cta-banner h2 {
	font-size: 30px;
	font-weight: 800;
	color: white;
	margin-bottom: 10px;
}

.cta-banner p {
	font-size: 15px;
	color: rgba(255, 255, 255, .82);
	margin-bottom: 28px;
}

.btn-row {
	display: flex;
	gap: 14px;
	justify-content: center;
}

.btn-white {
	background: white;
	color: var(--accent);
	padding: 12px 28px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	font-family: 'Inter', sans-serif;
	transition: transform .2s;
}

.btn-white:hover {
	transform: translateY(-2px);
}

.btn-outline-white {
	background: transparent;
	color: white;
	padding: 12px 28px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	border: 2px solid rgba(255, 255, 255, .55);
	font-family: 'Inter', sans-serif;
	transition: border-color .2s;
}

.btn-outline-white:hover {
	border-color: white;
}

.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(5, 10, 20, .93);
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.lightbox.open {
	display: flex;
}

.lb-img-wrap {
	max-width: 85vw;
	max-height: 75vh;
	position: relative;
}

.lb-img-wrap .ph {
	max-width: 85vw;
	max-height: 75vh;
	border-radius: 10px;
}

.lb-caption {
	color: white;
	text-align: center;
	margin-top: 18px;
}

.lb-caption h3 {
	font-size: 16px;
	font-weight: 700;
}

.lb-caption p {
	font-size: 13px;
	color: var(--muted);
	margin-top: 4px;
}

.lb-close {
	position: fixed;
	top: 20px;
	right: 28px;
	color: white;
	font-size: 28px;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .1);
	border-radius: 50%;
	transition: background .2s;
	line-height: 1;
}

.lb-close:hover {
	background: rgba(255, 255, 255, .25);
}

.lb-nav {
	display: flex;
	gap: 14px;
	margin-top: 0px;
}

.lb-btn {
	background: rgba(255, 255, 255, .12);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	transition: background .2s;
}

.lb-btn:hover {
	background: rgba(255, 255, 255, .25);
}


.load-more-wrap {
	text-align: center;
	padding: 10px 0 0px;
}

.btn-load {
	background: transparent;
	border: 2px solid var(--accent);
	color: var(--accent);
	padding: 12px 36px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	transition: all .2s;
}

.btn-load:hover {
	background: var(--accent);
	color: white;
}


.fade-up {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}