/* Base styling for transparent header overlaying hero */
.lux-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: transparent;
	transition: background-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
	padding: 30px 40px;
}

/* Sticky & Hover States */
.lux-header.is-sticky {
	position: fixed;
	padding: 15px 40px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.lux-header.has-hover-bg {
	transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.lux-header.has-hover-bg:hover {
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

/* 3-Column Grid Layout */
.lux-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	max-width: 1600px;
	margin: 0 auto;
}

/* Left Section */
.lux-header__left {
	display: flex;
	justify-content: flex-start;
}

.lux-header__menu-trigger {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font: inherit;
}

.lux-header__menu-label {
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* Center Section */
.lux-header__center {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lux-header__logo-img {
	max-width: 200px;
	height: auto;
	display: block;
}

.lux-header__title {
	font-size: 24px;
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.lux-header__subtitle {
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

/* Right Section */
.lux-header__right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 30px;
}

.lux-header__phone {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	font-size: 14px;
	letter-spacing: 1px;
	transition: opacity 0.3s ease;
}

.lux-header__phone:hover {
	opacity: 0.8;
}

.lux-header__btn {
	display: inline-block;
	padding: 10px 24px;
	border: 1px solid currentColor;
	text-decoration: none;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	background-color: transparent;
}

/* Icon Resizing for SVGs and Font Icons */
.lux-header__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* Full Screen Overlay Menu */
.lux-header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.lux-header__overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.lux-header__overlay-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000000;
    padding: 10px;
}

.lux-header__overlay-content {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.lux-header__overlay-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left; /* Left align on desktop */
}

.lux-header__overlay-link {
    font-size: 32px;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.lux-header__overlay-link:hover {
    opacity: 0.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.lux-header {
		padding: 20px;
	}
	.lux-header.is-sticky {
		padding: 15px 20px;
	}
	.lux-header__right {
		gap: 20px;
	}
	.lux-header__title {
		font-size: 20px;
		letter-spacing: 3px;
	}
	.lux-header__phone-text {
		display: none;
	}
    .lux-header__overlay-close {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 767px) {
	.lux-header {
		padding: 15px;
	}
	.lux-header.is-sticky {
		padding: 10px 15px;
	}
	.lux-header__menu-label {
		display: none;
	}
	.lux-header__title {
		font-size: 16px;
		letter-spacing: 2px;
	}
	.lux-header__subtitle {
		font-size: 9px;
		letter-spacing: 2px;
	}
	.lux-header__btn {
		padding: 8px 16px;
		font-size: 11px;
	}
	.lux-header__right {
		gap: 15px;
	}
    .lux-header__overlay-nav {
        text-align: center; /* Center align on mobile */
    }
    .lux-header__overlay-link {
        font-size: 24px;
    }
    .lux-header__overlay-close {
        top: 15px;
        right: 15px;
    }
}