/* Hide Hello Elementor default theme elements */
.page-header,
.entry-header,
#site-header,
.site-footer,
#site-footer {
	display: none !important;
}

.jarrell-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	z-index: 1000;
	background-color: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0);
	transition: var(--transition-smooth);
}

.jarrell-header.scrolled {
	height: 90px;
	background-color: var(--bg-primary);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0 60px;
	position: relative;
	box-sizing: border-box;
}

/* Left side navigation (Menu Button & Breadcrumbs) */
.header-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	z-index: 2;
}

.menu-toggle {
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	padding: 0 !important;
	margin-bottom: 4px;
	color: var(--text-primary) !important;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.15em;
	cursor: pointer;
	text-transform: uppercase;
	transition: color 0.3s ease;
	outline: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.menu-toggle:hover,
.menu-toggle:focus,
.menu-toggle:active {
	color: var(--accent-gold) !important;
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.header-breadcrumbs {
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	line-height: 1.2;
}

.header-breadcrumbs a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.3s ease;
}

.header-breadcrumbs a:hover {
	color: var(--accent-gold);
}

.header-breadcrumbs .breadcrumb-separator {
	margin: 0 4px;
	color: rgba(255, 255, 255, 0.35);
}

/* Center aligned Logo */
.site-logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 1;
}

.site-logo a {
	text-decoration: none;
	display: inline-block;
}

.logo-text {
	display: block;
	font-family: var(--font-serif);
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 0.12em;
	line-height: 1.1;
	color: var(--text-primary);
}

.logo-subtext {
	display: block;
	font-family: var(--font-sans);
	font-size: 9px;
	font-weight: 400;
	letter-spacing: 0.38em;
	color: var(--text-primary);
	margin-top: 3px;
	opacity: 0.7;
}

/* Right side navigation (CTAs) */
.header-right {
	display: flex;
	align-items: center;
	gap: 35px;
	z-index: 2;
}

.header-cta {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: var(--text-primary);
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.header-cta:hover {
	color: var(--accent-gold);
}

/* ==========================================================================
   Full-screen Menu Overlay
   ========================================================================== */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(18, 17, 18, 0.88);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
		visibility 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Header inside Overlay */
.overlay-header {
	width: 100%;
	height: 120px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-sizing: border-box;
}

.overlay-header .header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0 60px;
	position: relative;
	box-sizing: border-box;
}

.menu-close {
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	padding: 10px 0;
	color: var(--text-primary) !important;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.15em;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color 0.3s ease;
	outline: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.menu-close:hover,
.menu-close:focus,
.menu-close:active {
	color: var(--accent-gold) !important;
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.overlay-header .header-cta {
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Columns container */
.overlay-columns-container {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 60px;
	box-sizing: border-box;
}

.overlay-columns-inner {
	width: 100%;
	max-width: 1200px;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 60px;
}

.overlay-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.overlay-column.vertical-divider {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	padding-left: 60px;
}

.overlay-column-title {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.25em;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	margin-bottom: 25px;
}

.overlay-column-nav {
	width: 100%;
}

.overlay-column-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.overlay-column-menu li {
	margin: 0;
}

.overlay-column-menu a {
	font-family: var(--font-serif);
	font-size: clamp(26px, 2.3vw, 36px);
	font-weight: 400;
	color: var(--text-primary);
	text-decoration: none;
	line-height: 1.2;
	display: inline-block;
	transition: color 0.3s ease, transform 0.3s ease, font-style 0.3s ease;
}

.overlay-column-menu a:hover {
	color: var(--accent-gold);
	font-style: italic;
	transform: translateX(5px);
}

/* Footer inside Overlay */
.overlay-footer {
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	box-sizing: border-box;
}

.overlay-footer-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 30px 60px;
	box-sizing: border-box;
}

.overlay-footer-left {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: left;
}

.overlay-locations {
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
}

.overlay-tagline {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.45);
}

.overlay-socials {
	display: flex;
	align-items: center;
	gap: 15px;
}

.social-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: var(--text-primary);
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.social-link span {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.social-link:hover {
	color: var(--accent-gold);
}

.social-icon {
	width: 15px;
	height: 15px;
	stroke-width: 1.5;
}

.social-divider {
	color: rgba(255, 255, 255, 0.3);
	font-size: 14px;
}

/* ==========================================================================
   Responsive Styling
   ========================================================================== */
@media (max-width: 1024px) {
	.header-container {
		padding: 0 40px;
	}

	.overlay-header .header-container {
		padding: 0 40px;
	}

	.overlay-columns-inner {
		gap: 40px;
	}

	.overlay-column.vertical-divider {
		padding-left: 40px;
	}

	.overlay-footer-container {
		padding: 30px 40px;
	}
}

@media (max-width: 768px) {
	.jarrell-header {
		height: calc(60px + env(safe-area-inset-top, 0px));
		padding-top: env(safe-area-inset-top, 0px);
	}

	.jarrell-header.scrolled {
		height: calc(60px + env(safe-area-inset-top, 0px));
		padding-top: env(safe-area-inset-top, 0px);
	}

	.header-container {
		padding: 0 20px;
		display: flex;
		justify-content: space-between;
		height: 100%;
		align-items: center;
		box-sizing: border-box;
	}

	/* Logo aligned to the left */
	.site-logo {
		position: static;
		transform: none;
		order: 1;
		text-align: left;
	}

	.logo-text {
		font-size: 22px;
	}

	.logo-subtext {
		font-size: 7.5px;
		letter-spacing: 0.3em;
		margin-top: 2px;
	}

	/* Menu toggle aligned to the right */
	.header-left {
		order: 2;
	}

	.menu-toggle {
		font-size: 12px;
		padding: 5px 0;
	}

	.header-breadcrumbs {
		display: none !important;
	}

	/* Hide desktop CTAs */
	.header-right {
		display: none;
	}

	/* Overlay responsiveness */
	.menu-overlay {
		overflow-y: auto;
		justify-content: flex-start;
	}

	.overlay-header {
		height: calc(100px + env(safe-area-inset-top, 0px));
		padding-top: env(safe-area-inset-top, 0px);
	}

	.overlay-header .header-container {
		padding: 15px 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 100%;
		box-sizing: border-box;
	}

	.menu-close {
		font-size: 12px;
		padding: 5px 0;
	}

	.overlay-columns-container {
		padding: 40px 20px;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.overlay-columns-inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.overlay-column.vertical-divider {
		border-left: none;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding-top: 20px;
		width: 100%;
	}

	.overlay-column-title {
		margin-bottom: 12px;
	}

	.overlay-column-menu {
		gap: 10px;
	}

	.overlay-column-menu a {
		font-size: 24px;
	}

	.overlay-footer-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 20px;
		padding: 30px 20px;
	}

	.overlay-footer-left {
		text-align: center;
		align-items: center;
	}

	.overlay-locations {
		font-size: 8.5px;
		line-height: 1.4;
	}

	.overlay-tagline {
		font-size: 18px;
	}

	.overlay-socials {
		justify-content: center;
	}
}

/* Hide old absolute-positioned inner hero breadcrumbs site-wide */
.jarrell-inner-hero__breadcrumbs,
.artist-single-hero .jarrell-inner-hero__breadcrumbs {
	display: none !important;
}



/* Site Logo Image */
.site-logo-img {
	max-height: 45px;
	width: auto !important;
	max-width: 100%;
	object-fit: contain;
	display: block;
	transition: filter 0.3s ease;
}

@media (max-width: 768px) {
	.site-logo-img {
		max-height: 25px;
	}
}