/**
 * Header Styles
 * CSS only - no Sass
 */

/* Promotional Banner */
.promo-banner {
	background-color: #F19B92;
	padding: 11px 0px;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
}

.promo-banner[style*="display: none"] {
	display: none !important;
}

.promo-banner-content {
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.promo-banner-text {
	color: #ffffff;
	font-weight: 600;
	margin: 0;
	font-family: 'ivypresto-text';
	font-size: 19px;
	text-transform: uppercase;
	letter-spacing: -0.01rem;
}
.promo-banner-text p {
	margin:0;
	color: #ffffff;
	font-weight: 600;
	margin: 0;
	font-family: 'ivypresto-text';
	font-size: 19px;
	text-transform: uppercase;
	letter-spacing: -0.01rem;
}
.promo-banner-text p a {
	color:white;
	text-decoration:none;
}

/* Site Header */
.site-header {
	background-color: #FCFBFA;
	padding: 25px 0 25px;
	height: 81px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999;
	transition: top 0.3s ease;
}

.header-container {
	max-width: 1220px;
	width: 95%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: visible;
	position: relative;
}

.site-title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	font-family: "bicyclette", sans-serif;
	overflow: visible;
	flex-shrink: 0;
}

.site-title a {
	text-decoration: none;
	color: #585853;
	display: flex;
	align-items: center;
	overflow: visible;
}

.site-title-text {
	text-transform: uppercase;
	letter-spacing: 1px;
}

.site-title .logo {
	max-width: 214px;
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
	display: block;
	flex-shrink: 0;
}

/* Navigation */
.site-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	pointer-events: none;
}

.site-navigation .primary-menu {
	pointer-events: auto;
}

.primary-menu {
	display: flex;
	list-style: none;
	margin: -3px 0 0;
	padding: 0;
	gap: 27px;
	align-items: center;
}

.primary-menu li {
	margin: 0;
}

.primary-menu a {
	color: #585853;
	text-decoration: none;
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.9px;
	font-family: 'bicyclette';
	transition: color 0.3s ease;
	display: inline-block;
}

.primary-menu a:hover {
	color: #F19B92;
	animation: bounce 0.6s ease;
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

/* Hamburger Menu Toggle */
.hamburger-menu-toggle {
	display: flex;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	z-index: 100;
	margin: -1px -3px 0 0;
	flex-shrink: 0;
}

.hamburger-icon {
	display: flex;
	flex-direction: column;
	gap: 9px;
	width: 54px;
}

.hamburger-icon span {
	display: block;
	width: 100%;
	height: 1.5px;
	background-color: #585853;
	transition: all 0.3s ease;
}

.hamburger-menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
	opacity: 0;
}

.hamburger-menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Body padding to account for fixed header - JavaScript will adjust dynamically */
body {
	padding-top: 70px; /* Default header height */
	transition: padding-top 0.3s ease;
	background: #F8F2EE;
}
@media (max-width:1080px) {
	.site-navigation {
		left: 56%;
		width: 90%;
	}
}
/* Responsive */
@media (max-width: 900px) {
	.site-navigation {
		display: none;
	}

	
	body {
		padding-top: 70px;
	}
	
	/* Removed :has() selector - handled by JavaScript instead to avoid jQuery parsing errors */
	/* JavaScript in header.js dynamically adjusts padding based on banner visibility */
}

@media (max-width: 600px) {
	.promo-banner-text p {
		font-size: 13px;
		text-align: left;
	}
	.promo-banner-content {
		justify-content: center;
		padding-left: 10px;
	}
}

@media (max-width:455px) {
	.promo-banner-text p {
		font-size: 11px;
		text-align: left;
	}
	.promo-banner-content {
		justify-content: center;
		padding-left: 6px;
	}
}