/*
	Utah Fun Activities Global Header Styles
*/
.utah-global-header {
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	position: relative;
	z-index: 100;
	padding: 12px 0;
	width: 100% !important;
	max-width: 100% !important;
}

.utah-global-header__inner {
	width: 100%;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.utah-global-header__branding {
	flex-shrink: 0;
	margin-right: 40px;
	background: #fff;
	padding: 12px 24px 20px;
	border-radius: 0 0 24px 24px;
	margin-top: -12px;
	margin-bottom: -30px; /* Extends below the header */
	position: relative;
	z-index: 10;
	box-shadow: none !important;
}

.utah-global-header__branding img {
	max-height: 80px !important;
	width: auto;
	object-fit: contain;
	display: block;
}

.utah-global-header__logo-fallback {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none !important;
}

.utah-logo-icon {
	margin-bottom: -5px;
}

.utah-logo-text {
	text-align: center;
	display: flex;
	flex-direction: column;
}

.utah-logo-title {
	font-size: 28px;
	font-weight: 900;
	color: #e56c1d;
	line-height: 1;
	letter-spacing: 1px;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

.utah-logo-tagline {
	font-size: 10px;
	font-weight: 700;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.utah-global-header__nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.utah-global-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 28px;
}

.utah-global-nav__list li {
	margin: 0;
}

.utah-global-nav__list a {
	text-decoration: none !important;
	color: #111;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.2s ease;
}

.utah-global-nav__list a:hover,
.utah-global-nav__list a.current-menu-item {
	color: #eb6b22;
}

.caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 2px;
	vertical-align: middle;
	border-top: 4px dashed;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}

.utah-global-header__actions {
	flex-shrink: 0;
	margin-left: 40px;
}

.utah-btn-get-started {
	display: inline-flex;
	align-items: center;
	background: #eb6b22;
	color: #fff !important;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 10px 24px;
	border-radius: 6px;
	text-decoration: none !important;
	transition: background 0.2s ease;
}

.utah-btn-get-started:hover {
	background: #d65916;
}

@media (max-width: 900px) {
	.utah-global-header__inner {
		flex-wrap: wrap;
	}
	.utah-global-header__nav {
		order: 3;
		width: 100%;
		margin-top: 15px;
		justify-content: center;
	}
	.utah-global-nav__list {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}
	.utah-global-header__actions {
		margin-left: auto;
	}
}
