body {
	font-family: "Barlow Condensed", sans-serif;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* space for fixed header so page content is not hidden */
.header-navbar.fixed-top {
  z-index: 1030; /* above content (Bootstrap default) */
  width: 100%;
}

/* reserve space equal to header height (adjust if your header height differs) */
body {
  padding-top: 70px;
}

/* responsive adjustments for smaller screens */
@media (max-width: 991.98px) {
  body { padding-top: 68px; }
}
@media (max-width: 575.98px) {
  body { padding-top: 60px;
}
}

a {
	text-decoration: none;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

a:hover {
	text-decoration: none;
}

/* Header styling to match screenshot */
.header-navbar {
	background: #030200;
	padding: 0.6rem 1rem;
	font-family: 'Barlow Condensed', sans-serif;
	border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* logo image */
.brand-logo {
	height: 44px;
	width: auto;
	display: block;
	object-fit: contain;
}

/* Nav links centered */
.navbar-nav {
	align-items: center;
}
.navbar-toggler{
	background-color: #fff;
}
.navbar-nav .nav-link {
	color: #fff;
	padding: 0.5rem 0.9rem;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 600;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	color: #ffffff;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
	content: "";
	display: block;
	height: 2px;
	width: 100%;
	/* background: linear-gradient(90deg,#00c2d9,#00f0d0); */
	background: #ffffff;
	margin-top: 6px;
	border-radius: 2px;
}

/* Tickets button */
.btn-ticket {
	background: linear-gradient(90deg, #f86009, #f1973b);
	/* background: url('../images/accent-bg.png') center/cover no-repeat; */
	color: #fff !important;
	font-weight: 600;
	padding: 0.4rem 0.9rem;
	border-radius: 2px;
	border: none;
	letter-spacing: 0.06em;
	font-size: 18px;
	position: relative;
	border-radius: 0px !important;
}
.btn-ticket::before{
	background: url('../images/purple-gradient-bg.png') no-repeat center/contain;
	position: absolute;

	content: "";
    position: absolute;
    inset: 0;
    z-index: 999;
    border-radius: 0 !important;
}
/* Desktop spacing for ticket button */
.navbar-nav .nav-item .btn-ticket {
	margin-left: 35px;
}

/* HERO SLIDER */
.hero-slider {
	max-height: 560px;
	position: relative;
}

.hero-slide {
	position: relative;
	min-height: 500px;
	background: #4a0508;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* optional per-slide background via inline style or CSS class, e.g.
   .hero-slide { background-image: url('../images/slide-bg-1.jpg'); }
   or add style="background-image: url(...)" on each .hero-slide item.
*/

/* per-slide background */
/* .hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

/* ensure top-left and top-right decorative images sit near top corners */
.hero-slide .slide-left,
.hero-slide .slide-right {
	position: absolute;
	top: 20px;
	/* adjust to move images up/down */
	width: 140px;
	pointer-events: none;
	opacity: 0.95;
	z-index: 5;
}

.hero-slide .slide-left {
	left: 20px;
}

.hero-slide .slide-right {
	right: 20px;
}

/* decorative images container (keeps both images inside one centered container) */
.hero-slide .decor-wrap {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 1100px;
	/* container width — adjust as needed */
	max-width: calc(100% - 40px);
	/* responsive cap */
	z-index: 5;
	pointer-events: none;
}

/* individual decorative images positioned inside the centered container */
.hero-slide .decor-wrap img {
	position: absolute;
	top: 0;
	width: 140px;
	height: auto;
	opacity: 0.95;
}

.hero-slide .decor-wrap .slide-left {
	left: 0;
}

.hero-slide .decor-wrap .slide-right {
	right: 0;
}

/* Hero content */
.hero-content {
	color: #fff;
	text-align: center;
	z-index: 6;
	padding: 0 1rem;
}

.hero-content .ribbon {
	display: inline-block;
	background: url('../images/ribbon-bg.png') no-repeat center/cover;
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 1px;
	padding: 6px 40px;
	border-radius: 4px;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.hero-content .presented {
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	letter-spacing: 3px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.hero-content h1 {
	color: #fff;
	font-size: 64px;
	line-height: 0.95;
	font-weight: 600;
	margin: 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	max-width: 1100px;
}

/* hero meta (location then date with icons) */
.hero-meta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	z-index: 6;
	flex-direction: row-reverse;
}

.hero-meta .meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hero-meta .meta-item i {
	font-size: 18px;
	color: #e38b26;
}

.hero-meta .meta-text {
	font-weight: 600;
	letter-spacing: 1px;
}

/* video button */
.video-btn {
	position: absolute;
	right: 115px;
	bottom: 24px;
	z-index: 4;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, #f86009, #f1973b);
	color: #fff;
	font-size: 22px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
	text-decoration: none;
}
.video-btn span {
    position: absolute;
    bottom: 15px;
    right: 65px;
    width: 70px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}
/* owl dots centered */
.hero-slider .owl-dots {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 7;
	display: flex;
	gap: 10px;
}

.hero-slider .owl-dot span {
	width: 9px;
	height: 9px;
	display: block;
	background: rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	transition: all .2s;
}

.hero-slider .owl-dot.active span {
	background: #ffffff;
	transform: scale(1.1);
}

/* Ticket CTA / Countdown */
.ticket-section {
	background: #020202;
	color: #fff;
	text-align: center;
	padding-top: 60px;
	padding-bottom: 60px;
}

.ticket-section .time-note {
	color: #fff;
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.ticket-section .ticket-title {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: 1px;
	margin: 6px 0 14px;
	text-transform: uppercase;
}

.ticket-section .ticket-desc {
	max-width: 760px;
	color: #fff;
	margin-bottom: 22px;
	font-size: 18px;
	line-height: 1.6;
}

/* countdown boxes use background image */
.count-box {
	width: 95px;
	height: 110px;
	border: 3px solid #fff;
	background: url('../images/count-bg.png') center/cover no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	box-sizing: border-box;
}

.count-value {
	font-size: 28px;
	font-weight: 500;
	color: #fff;
}

.count-label {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 8px;
	text-transform: uppercase;
}

/* ABOUT / EVENT */
.about-event {
	padding-top: 60px;
	padding-bottom: 60px;
	background: #fff;
	color: #0b2a3a;
}

.about-content .eyebrow {
	color: #ff8a2b;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.about-title {
	font-size: 36px;
	font-weight: 800;
	color: #26264b;
	margin: 0 0 18px;
	line-height: 1.05;
}

.about-desc {
	color: #6b7b88;
	max-width: 520px;
	margin-bottom: 14px;
	font-size: 18px;
}

.meta-row {
	gap: 28px;
	display: flex;
	flex-wrap: wrap;
}

.meta-item {
	display: flex;
	gap: 12px;
	align-items: center;
}

.meta-icon {
	font-size: 20px;
	color: #f1973b;
}

.meta-text .meta-label {
	font-size: 11px;
	color: #9aa6b0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.meta-text .meta-value {
	font-size: 18px;
	color: #0b2a3a;
	font-weight: 700;
}

.btn-get-tickets {
	display: inline-block;
	background: linear-gradient(90deg, #f86009, #f1973b);
	color: #fff;
	padding: 10px 18px;
	border-radius: 3px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	border-radius: 0px !important;
}
.btn-get-tickets:hover {
	color: #020202 !important;
	transition: background .18s ease, color .18s ease;
}
.navbar-nav .nav-item .btn-ticket:hover {
	color: #020202 !important;
	transition: background .18s ease, color .18s ease;
}
/* Speakers section */
.speakers-section {
	background: #4a0508;
	color: #fff;
	padding-top: 60px;
	padding-bottom: 60px;
}
.speakers-section .container{
	max-width: 1150px;
}
.speakers-section-inner{
	background: #fff;
	/* color: #fff; */
	padding-top: 60px;
	padding-bottom: 60px;
}
.speakers-section-inner .section-title-inner{
	color: #26264b !important;
}
.speakers-section .eyebrow {
	color: #f7b36b;
	font-size: 16px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 8px;
	font-weight: 700;
}

.speakers-section .section-title {
	color: #fff;
	font-size: 36px;
	font-weight: 600;
	margin: 0 0 26px;
}

/* card (single definition) */
.speaker-card {
	position: relative;
	background: #fff;
	padding: 18px;
	box-sizing: border-box;
	transition: transform .25s ease, box-shadow .25s ease;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	overflow: visible;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

.speaker-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

/* image panel */
.photo-wrap {
	position: relative;
	/* ensure positioned context for icons */
	background: #23223d;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.photo-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background:

		url('../images/overlay-pink.png') center/cover no-repeat;
	opacity: 0;
	transform: scale(1.03);
	transition: opacity .28s ease, transform .4s ease;
	pointer-events: none;
	z-index: 3;
}

/* icons inside the photo area, hidden by default */
.social-icons {
	display: none !important;
	position: absolute;
	top: 18px;
	right: 18px;
	display: flex;
	flex-direction: column;
	z-index: 6;
	/* above overlay (::after has z-index:3) */
	opacity: 0;
	transform: translateY(-6px) scale(.98);
	transition: opacity .18s ease, transform .18s ease;
	pointer-events: none;
}

/* reveal icons when hovering the photo area or the card */
.photo-wrap:hover .social-icons,
.speaker-card:hover .social-icons {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

/* icon buttons (scoped to photo-wrap) */
.social-icons a {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
	text-decoration: none;
	transition: background .15s ease, transform .12s ease;
	border-bottom: 1px solid #ddd;
}

.social-icons img {
	width: 14px;
	height: 14px;
	display: block;
}

/* hover state for each icon */
.photo-wrap .social-icons a:hover {
	/* background: #e32a7a;  */
	background: url('../images/accent-bg.png') center/cover no-repeat;
	transform: translateY(-2px);
}

.photo-wrap .social-icons a:hover img {
	filter: brightness(0) invert(1);
	/* ensure icon visible on accent bg */
}

/* keep photo under overlay */
.photo-wrap .speaker-photo {
	position: relative;
	z-index: 1;
	transition: transform .4s ease, filter .28s ease;
	width: 100%;
	height: 100%;
}

.speaker-card:hover .photo-wrap::after {
	opacity: 1;
	transform: scale(1);
}

.speaker-card:hover .speaker-photo {
	transform: scale(1.06);
	filter: brightness(0.8) saturate(0.95);
}

/* body */
.speaker-body {
	background: #fff;
	text-align: center;
	padding-top: 14px;
}

.speaker-name {
	font-weight: 800;
	color: #26264b;
	font-size: 18px;
	letter-spacing: 1px;
	transition: color .18s ease;
	display: inline-block;
	text-transform: uppercase;
}

.speaker-card:hover .speaker-name {
	color: #e32a7a;
	border-bottom: 2px solid #e32a7a;
	
}

/* .speaker-card:hover .speaker-name::after {
	content: "";
	display: block;
	height: 3px;
	width: 0;
	background: #e32a7a;
	margin: 8px auto 0;
	transition: width .22s ease;
} */

.speaker-role {
	color: #9aa6b0;
	font-size: 16px;
	margin-top: 6px;
}

/* Agenda nav-tabs style */
.agenda-tabs {
	display: inline-flex;
	gap: 8px;
	background: transparent;
	border-bottom: none;
}

.agenda-tab {
	padding: 15px 40px;
	border: none;
	border-radius: 0 !important;
	background: rgba(0, 0, 0, 0.03);
	color: #333;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.agenda-tab.active {
	color: #fff;
}

/* Color variants - active tab background and wrapper accent */
.agenda-wrapper.color-orange .agenda-tab.active {
	background: #fa8f05;
	box-shadow: 0 8px 24px rgba(248, 96, 9, 0.08);
	color: #fff;
	position: relative;
}

.agenda-wrapper.color-orange .agenda-tab.active::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('../images/purple-gradient-bg.png') center/cover no-repeat;
	z-index: -1;
	border-radius: 0 !important;
}

.agenda-wrapper.color-purple .agenda-tab.active {
	background: #822ea8;
	box-shadow: 0 8px 24px rgba(123, 43, 176, 0.08);
	position: relative;
	color: #fff;
}

.agenda-wrapper.color-purple .agenda-tab.active::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('../images/purple-gradient-bg.png') center/cover no-repeat;
	z-index: -1;
	border-radius: 0 !important;
}

/* Purple tab / panel variants */
.agenda-wrapper.color-purple .agenda-panel {
	border-color: #822ea8;
	/* panel frame for purple tab */
}

.agenda-wrapper.color-purple .agenda-avatar {
	background: #822ea8;
	/* purple avatar circle */
	box-shadow: 0 6px 18px rgba(183, 91, 179, 0.12);
}

.agenda-wrapper.color-purple .agenda-time {
	color: #590063;
	/* small time label for purple */
}

/* agenda item highlight for purple tab (active or hover) */
.agenda-wrapper.color-purple .agenda-item.active .agenda-body,
.agenda-wrapper.color-purple .agenda-item:hover .agenda-body {
	background: linear-gradient(180deg, #b76ac1, #a43fb0);
	padding: 26px 28px;
	border-radius: 2px;
	color: #141828;
}

.agenda-wrapper.color-purple .agenda-item .agenda-title {
	color: #151424;
	/* keep title readable */
}

.agenda-wrapper.color-purple .agenda-item .agenda-meta {
	color: rgba(20, 24, 40, 0.75);
}

/* subtle hover lift (same behavior as orange) */
.agenda-wrapper.color-purple .agenda-item:hover {
	transform: translateY(-4px);
}

/* ensure tab active style already set (keeps consistency) */
.agenda-wrapper.color-purple .agenda-tab.active {
	background: #822ea8;
	box-shadow: 0 8px 24px rgba(123, 43, 176, 0.08);
}

/* agenda content panel */
.agenda-panel {
	background: #fff;
	border: 10px solid #fa8f05;
	/* outer orange frame like ref */
	padding: 28px;
	position: relative;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

/* agenda item layout & visuals to match reference */
.agenda-item {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	padding: 22px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	transition: transform .22s ease, background .22s ease;
}

/* left circular avatar */
.agenda-avatar {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: #fa8f05;
	/* orange circle */
	flex: 0 0 78px;
	margin-top: 6px;
	box-shadow: 0 6px 18px rgba(247, 148, 29, 0.12);
}

/* content area */
.agenda-body {
	flex: 1;
	position: relative;
	transition: background .22s ease, padding .22s ease, color .18s ease;
	padding: 0;
	/* padding appears when highlighted */
}

/* time / title / meta */
.agenda-time {
	color: #e32a7a;
	/* magenta small label */
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.agenda-title {
	margin: 0 0 8px;
	font-size: 25px;
	font-weight: 600;
	color: #26264b;
	/* dark title */
	line-height: 1.05;
}

.agenda-meta {
	color: #9595a2;
	font-size: 13px;
	margin-top: 6px;
	font-weight: 600;
	letter-spacing: .2px;
}

.agenda-meta strong {
	color: #f09922;
	border-bottom: 1px solid #f09922;
	font-size: 13px;
	font-weight: 500;

}

/* highlighted panel for active or hover */
.agenda-item.active .agenda-body,
.agenda-item:hover .agenda-body {
	background: linear-gradient(180deg, #f6b063, #fbac46);
	/* orange block */
	padding: 26px 28px;
	border-radius: 2px;
	color: #141828;
}

.agenda-item.active .agenda-title,
.agenda-item:hover .agenda-title {
	color: #151424;
	/* title remains dark on orange */
}

.agenda-item.active .agenda-meta,
.agenda-item:hover .agenda-meta {
	color: rgba(20, 24, 40, 0.75);
}

/* subtle lift on hover */
.agenda-item:hover {
	transform: translateY(-3px);
}

/* final item remove border */
.agenda-item:last-child {
	border-bottom: none;
}

/* keep each tab colored even when inactive (muted), active shows full color */
.agenda-tab[data-color="orange"] {
	background: #fa8f05;
	color: #fff;
	/* opacity: 0.62;  */
	box-shadow: none;
}

.agenda-tab[data-color="purple"] {
	background: #822ea8;
	color: #fff;
	/* opacity: 0.62; */
	box-shadow: none;
}

/* active tab overrides to full visible */
.agenda-tab.active {
	opacity: 1 !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* keep thin separation for visual clarity */
.agenda-tabs .agenda-tab+.agenda-tab {
	margin-left: 6px;
}

/* ensure contrast for smaller screens */
@media (max-width: 575.98px) {

	.agenda-tab[data-color="orange"],
	.agenda-tab[data-color="purple"] {
		opacity: 0.9;
	}

	.brand-logo {
		height: 30px;
		width: auto;
		display: block;
		object-fit: contain;
	}
	.hero-slide .decor-wrap img {
		width: 100px;
		height: auto;
		opacity: 0.95;
	}
	.navbar-nav .nav-item .btn-ticket {
	margin-left: 0px;
}
}

/* responsive tweaks */
@media (max-width: 767.98px) {
	.agenda-tabs {
		width: 100%;
		justify-content: center;
	}

	.agenda-tab {
		padding: 10px 16px;
		font-size: 13px;
	}

	.agenda-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.agenda-item .agenda-time {
		width: auto;
		margin-bottom: 8px;
	}

	.agenda-item {
		flex-direction: column;
		gap: 14px;
	}

	.agenda-avatar {
		width: 56px;
		height: 56px;
		flex: 0 0 56px;
	}

	.agenda-time {
		font-size: 10px;
	}

	.agenda-title {
		font-size: 18px;
	}

	.agenda-panel {
		padding: 18px;
		border-width: 8px;
	}
	.hero-slide {
	min-height: 550px;
}
.navbar-nav .nav-item .btn-ticket {
	margin-left: 0px;
}
}

@media (max-width: 991.98px) {
	/* .photo-wrap {
		height: 200px;
	} */

	.speakers-section .section-title {
		font-size: 28px;
	}

	.hero-content h1 {
		font-size: 45px;
	}
	.hero-content .presented {
		font-size: 16px;
	}
	.video-btn{
		bottom: 50px;
	}
}

@media (max-width: 575.98px) {
	/* .photo-wrap {
		height: 170px;
	} */

	.speaker-card {
		padding: 14px;
	}

	.speaker-name::after {
		height: 2px;
	}

	.count-box {
		width: 86px;
		height: 86px;
	}

	.count-value {
		font-size: 20px;
	}

	.ticket-section .ticket-title {
		font-size: 22px;
		padding-bottom: 8px;
	}
}

/* Agenda section header */
.agenda-section .container{
	max-width: 1150px;
}
.agenda-section .eyebrow {
	color: #fa9819;
	font-size: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 8px;
}

.agenda-section .agenda-heading {
	color: #fa9819;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 56px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 18px;
}

/* PHOTO GALLERY SECTION */
.photo-gallery-section {
	background: #4a0508;
	/* deep burgundy */
	color: #fff;
	padding-top: 48px;
	padding-bottom: 48px;
}

.photo-gallery-section .eyebrow {
	color: #f09922;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 8px;
	font-size: 18px;
}

.photo-gallery-section .section-title {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 600;
	font-size: 40px;
	margin: 0 0 22px;
	color: #fff;
	letter-spacing: 2px;
}

/* gallery thumbnails row */
.gallery-row {
	margin-left: -8px;
	margin-right: -8px;
}

/* helper 5-column class (works with Bootstrap row) */
.col-5 {
	flex: 0 0 20%;
	max-width: 20%;
	padding-left: 8px;
	padding-right: 8px;
	box-sizing: border-box;
}

/* thumbnail visuals */
.gallery-thumb {
	width: 100%;
	height: auto;
	/* adjust height as needed */
	object-fit: cover;
	display: block;
	/* border: 6px solid rgba(255,255,255,0.08); */
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
	border-radius: 0px;
	transition: transform .22s ease, box-shadow .22s ease;
}

.gallery-thumb:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* responsive: stack to 2/3/1 columns on smaller screens */
@media (max-width: 991.98px) {
	.col-5 {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}
}

@media (max-width: 575.98px) {
	.col-5 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/* ensure consistent spacing for gallery items */
.photo-gallery-section .gallery-row {
	margin-left: 0;
	margin-right: 0;
}

/* small button variant sits on dark bg */
.photo-gallery-section .btn-get-tickets {
	background: linear-gradient(90deg, #f86009, #f1973b);
	padding: 8px 14px;
	font-weight: 700;
	border-radius: 0px !important;
}

/* SPONSORS SECTION */
.sponsors-section {
	background: #f7941d;
	/* warm orange */
	color: #fff;
	padding-top: 48px;
	padding-bottom: 48px;
}

.sponsors-section .eyebrow {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 8px;
	font-size: 18px;
}

.sponsors-section .section-title {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 600;
	font-size: 40px;
	margin: 0 0 22px;
	color: #fff;
	letter-spacing: 2px;
}

/* sponsors row */
.sponsors-row {
	/* gap: 48px; */
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-top: 1rem;
}

.sponsor-col {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sponsor-logo {
	width: 100%;
	height: auto;
	transition: transform .18s ease, opacity .18s ease;
}

/* small screens */
@media (max-width: 767.98px) {

	/* .gallery-thumb { width: 92px; height: 92px; } */
	.photo-gallery-section .section-title,
	.sponsors-section .section-title {
		font-size: 32px;
	}

	.sponsor-logo {
		max-width: 160px;
	}
}

/* restore section title color variant helper */
.section-title.white {
	color: #fff;
}

/* gallery modal image fit */
.gallery-modal .modal-body {
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-modal .modal-body img {
	max-width: 100%;
	object-fit: contain;
	display: block;
}

/* make modal close button visible as a circular white cross on dark/light modals */
.gallery-modal .btn-close {
	background-image: none !important;
	/* background: rgba(0,0,0,0.45); */
	/* width: 10px; */
	/* height: 10px; */
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	z-index: 1070;
	opacity: 0.95;
	margin: 0px !important;
	padding: 0px !important;
	border-radius: 0px !important;
}

/* use a clear white "×" as the icon (keeps accessibility aria-label) */
.gallery-modal .btn-close::before {
	content: "×";
	font-size: 50px;
	color: #fff;
	line-height: 1;
	transform: translateY(-1px);
}

/* hover/focus states */
.gallery-modal .btn-close:hover,
.gallery-modal .btn-close:focus {
	background: rgba(0, 0, 0, 0.6);
	opacity: 1;
	outline: none;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

/* ensure it's always on top of the image */
.gallery-modal .modal-content,
.gallery-modal .modal-body {
	position: relative;
	z-index: 1050;
}

/* OFFICIAL SPONSORS */
.official-sponsors-section {
	background: #6d3f0b;
	/* deep brown */
	color: #fff;
	padding-top: 48px;
	padding-bottom: 48px;
}

.official-sponsors-section .eyebrow {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 8px;
	font-size: 18px;
}

.official-sponsors-section .section-title {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 600;
	font-size: 36px;
	margin: 0 0 22px;
	color: #fff;
	letter-spacing: 2px;
}

/* owl slider: official sponsors */
.official-carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 6px;
}
.official-carousel .sponsor-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  opacity: 0.95;
  transition: transform .18s ease, opacity .18s ease, filter .18s ease;
}
.official-carousel .sponsor-logo:hover { transform: translateY(-6px); opacity: 1; }

/* small spacing tweak */
.official-sponsors-section .owl-stage-outer { padding-left: 10px; padding-right: 10px; }

/* responsive */
@media (max-width: 991.98px) {
  .official-carousel .sponsor-logo { max-width: 130px; }
}
@media (max-width: 575.98px) {
  .official-carousel .sponsor-logo { max-width: 110px; }
}

/* PARTNERS */
.partners-section {
	background: #f7941d;
	/* warm orange */
	color: #fff;
	padding-top: 48px;
	padding-bottom: 48px;
}

.partners-section .eyebrow {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 8px;
	font-size: 18px;
}

.partners-section .section-title {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 600;
	font-size: 36px;
	margin: 0 0 22px;
	color: #fff;
	letter-spacing: 2px;
}

/*supporting PARTNERS */
.supporting-partners-section {
	background: #FFBD76;
	/* warm orange */
	color: #fff;
	padding-top: 48px;
	padding-bottom: 48px;
}

.supporting-partners-section .eyebrow {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 8px;
	font-size: 18px;
}

.supporting-partners-section .section-title {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 600;
	font-size: 36px;
	margin: 0 0 22px;
	color: #fff;
	letter-spacing: 2px;
}

/* Shared sponsor layout */
/* .sponsors-row {
	gap: 32px;
} */

.sponsor-col {
	display: flex;
	align-items: center !important;
	justify-content: center !important;
	padding: 8px;
}

.sponsor-logo {
	max-width: 140px;
	width: 100%;
	height: auto;
	opacity: 0.95;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
	transition: transform .18s ease, opacity .18s ease, filter .18s ease;
}
.sponser-logo-size{
	max-width: 180px !important;
}
.sponsor-logo:hover {
	transform: translateY(-6px);
	opacity: 1;
	filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.18));
}

/* Newsletter */
.newsletter-section {
	background: #fff;
	color: #151424;
	padding-top: 80px;
	padding-bottom: 80px;
}

.newsletter-section .eyebrow {
	color: #f09922;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 8px;
	font-size: 18px;
}

.newsletter-heading {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 600;
	font-size: 36px;
	margin: 0 0 14px;
	color: #151424;
	letter-spacing: 2px;
}

.newsletter-form .input-group {
	/* border-radius: 2px; */
	overflow: hidden;
	/* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06); */
}

.newsletter-form .form-control {
	border: none;
	padding: 18px 16px;
	font-size: 18px;
	background: #f4f2ef;
	color: #333;
	margin-right: 10px;
}

.newsletter-form .form-control:focus {
	box-shadow: none;
	outline: none;
}

.btn-subscribe {
	background: linear-gradient(90deg, #f86009, #f1973b);
	color: #fff;
	border: none;
	padding: 0 22px;
	font-weight: 700;
	letter-spacing: .6px;
}

.btn-subscribe:active,
.btn-subscribe:focus {
	box-shadow: 0 8px 28px rgba(248, 96, 9, 0.12);
	outline: none;
}

/* Cover / full-bleed hero */
.cover-section {
	margin: 0;
	padding: 0;
}

.cover-hero {
	width: 100%;
	height: 460px;
	/* visible crop height - adjust as needed */
	overflow: hidden;
	display: block;
}

.cover-hero .cover-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* crop to fill container */
	display: block;
}

/* responsive */
@media (max-width: 991.98px) {
	.newsletter-heading {
		font-size: 30px;
	}

	.cover-hero {
		height: 380px;
	}
}

@media (max-width: 575.98px) {
	.newsletter-heading {
		font-size: 22px;
	}

	.newsletter-form .form-control {
		padding: 12px 10px;
		font-size: 13px;
	}

	.btn-subscribe {
		padding: 0 14px;
		font-size: 13px;
	}

	.cover-hero {
		height: 220px;
		background-position: center top;
	}
}

/* SITE FOOTER */
.site-footer {
	background: #3b2609;
	/* deep brown */
	color: #fff;
	padding: 80px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.03);
	font-weight: 600;
}

.site-footer .footer-logo img {
	max-width: 100%;
	height: auto;
	display: inline-block;
	filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

/* right column */
.site-footer .footer-eyebrow {
	font-size: 18px;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.95);
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 8px;
}

.site-footer .footer-date {
	color: #e32a7a;
	/* magenta */
	font-weight: 700;
	margin-bottom: 6px;
}

.site-footer .footer-location {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.4;
	margin-bottom: 8px;
	font-weight: 500;
}

.site-footer .view-map-link {
	display: inline-block;
	color: #f7941d;
	/* orange */
	letter-spacing: 1px;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 800;
}

/* bottom copyright */
.site-footer .footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.03);
	padding-top: 18px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

/* inner page banner */
.inner-banner {
  background: #3b2609; /* deep brown */
  color: #fff;
  padding: 100px 0;
}
.inner-banner .eyebrow {
  color: #f09922;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 10px;

}
.inner-banner .banner-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}

/* responsive */
@media (max-width: 991.98px) {
  .inner-banner { padding: 44px 0; }
  .inner-banner .banner-title { font-size: 40px; }
}
@media (max-width: 575.98px) {
  .inner-banner { padding: 28px 0; }
  .inner-banner .banner-title { font-size: 28px; }
  .inner-banner .eyebrow { letter-spacing: 1px; }
}
