/**
 * Regional Prestige Concierge - Navigation
 * 
 * Fixed navigation bar, mobile menu, and language toggle
 */

/* ============================================================================
   MAIN NAVIGATION
   ============================================================================ */

#site-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(10, 10, 25, .8);
	backdrop-filter: blur(10px);
	padding: 32px 20px 32px 40px;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 0 0 rgba(0,0,0,0);
}

#site-nav.scrolled {
	background: rgba(10, 10, 25, .98);
	padding: 20px 20px 20px 40px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
	backdrop-filter: blur(20px);
}

.nav-container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	max-width: 100%;
	margin: 0 auto;
	gap: 1rem;
	position: relative;
}

.nav-brand {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
	transform-origin: left center;
	white-space: nowrap;
	position: relative;
}

.logo {
	height: 35px;
	width: auto;
	flex-shrink: 0;
}

.logo-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex-shrink: 0;
	min-width: max-content;
}

.logo-text-top,
.logo-text-bottom {
	font-family: 'Montserrat', Arial, sans-serif !important;
	font-weight: 400 !important;
	letter-spacing: 1px !important;
	text-transform: uppercase !important;
	white-space: nowrap !important;
	display: block !important;
}

.logo-text-top {
	font-size: 11px !important;
	line-height: 1 !important;
}

.logo-text-bottom {
	font-size: 20px !important;
	line-height: 1 !important;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: clamp(1.5rem, 3vw, 3rem);
	flex-shrink: 0;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
}

.nav-link {
	color: #FFF;
	text-decoration: none;
	font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all .3s ease;
	position: relative;
	white-space: nowrap;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width .4s ease;
}

.nav-link:hover::after {
	width: 100%;
}

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

.nav-cta {
	color: #FFF;
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	border: 1px solid #FFF;
	padding: 16px 20px;
	transition: all .4s ease;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	flex-shrink: 0;
	margin-left: auto;
	order: 98;
}

.nav-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--gold);
	transform: translateX(-100%);
	transition: transform .5s ease;
	z-index: -1;
}

.nav-cta:hover::before {
	transform: translateX(0);
}

.nav-cta:hover {
	border-color: var(--gold);
	color: #0A0A19;
}

/* ============================================================================
   MOBILE MENU TOGGLE
   ============================================================================ */

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.mobile-menu-toggle span {
	width: 24px;
	height: 2px;
	background: #FFF;
	transition: all .3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================================================
   LANGUAGE TOGGLE
   ============================================================================ */

.language-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .3);
	padding: 8px 16px;
	border-radius: 2px;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 1px;
	color: #FFF;
	text-transform: uppercase;
	margin-left: 0;
	flex-shrink: 0;
	order: 99;
}

.language-toggle:hover {
	border-color: var(--gold);
	background: rgba(199, 160, 100, .15);
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(199, 160, 100, 0.2);
}

.language-toggle-icon {
	width: 16px;
	height: 16px;
	fill: #FFF;
	transition: fill .3s ease;
}

.language-toggle:hover .language-toggle-icon {
	fill: var(--gold);
}

