/* ========================================
   SHARED HEADER / NAVIGATION STYLES
   Used on every page via header.php
   ======================================== */

/* Header Styles */
.mainHeader {
	background: #101622;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.topBar {
	background: #1a1a1a;
	color: #fff;
	padding: 8px 0;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 40px;
}

.topBarLeft, .topBarRight {
	display: flex;
	gap: 20px;
}

.topBarCenter {
	flex: 1;
	text-align: center;
	font-weight: 500;
}

.topBarLink {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.3s;
	font-size: 11px;
}

.topBarLink:hover {
	opacity: 0.7;
}

.topBarPromo {
	font-weight: 500;
}

.headerMain {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	max-width: 1400px;
	margin: 0 auto;
}

.headerLogo {
	flex: 0 0 auto;
}

.logoImage {
	height: 70px;
	width: auto;
	display: block;
}

.logoTitle {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	letter-spacing: 1px;
	margin: 0;
}

.headerNav {
	display: flex;
	gap: 35px;
	align-items: center;
}

.navLink {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	transition: color 0.3s;
	position: relative;
}

.navLink:hover {
	color: #d4af37;
}

.navDropdown {
	position: relative;
}

.navDropdownToggle {
	cursor: pointer;
}

.navDropdownMenu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	min-width: 220px;
	padding: 15px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s;
	z-index: 100;
}

.navDropdown:hover .navDropdownMenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.navDropdownLink {
	display: block;
	padding: 10px 20px;
	color: #1a1a1a;
	text-decoration: none;
	font-size: 13px;
	transition: background 0.3s;
}

.navDropdownLink:hover {
	background: #f5f5f5;
}

.headerActions {
	display: flex;
	gap: 20px;
	align-items: center;
}

.mobileMenuToggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #fff;
}

/* Mobile Menu */
.mobileMenu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	height: 100vh;
	background: #fff;
	box-shadow: -2px 0 20px rgba(0,0,0,0.1);
	z-index: 2000;
	transition: right 0.4s;
	overflow-y: auto;
}

.mobileMenu.active {
	right: 0;
}

.mobileMenuHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #e5e5e5;
}

.mobileMenuTitle {
	font-size: 18px;
	font-weight: 600;
}

.mobileMenuClose {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #1a1a1a;
}

.mobileMenuContent {
	padding: 20px;
}

.mobileMenuLink {
	display: block;
	padding: 15px 0;
	color: #1a1a1a;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	border-bottom: 1px solid #f0f0f0;
}

.mobileMenuSection {
	margin-top: 25px;
}

.mobileMenuSectionTitle {
	font-size: 14px;
	font-weight: 600;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.mobileMenuSubLink {
	display: block;
	padding: 12px 0 12px 15px;
	color: #1a1a1a;
	text-decoration: none;
	font-size: 14px;
	border-bottom: 1px solid #f5f5f5;
}

.mobileMenuPhone {
	margin-top: 20px;
	color: #000;
	font-weight: 600;
}

/* Responsive header */
@media (max-width: 768px) {
	.topBar {
		padding: 10px 20px;
	}

	.topBarLeft,
	.topBarRight {
		display: none;
	}

	.topBarCenter {
		text-align: center;
	}

	.headerMain {
		padding: 15px 20px;
	}

	.headerNav {
		display: none;
	}

	.mobileMenuToggle {
		display: block;
	}
}
