/* Imsouane Travel — Header & Navigation Styles */

.site-header {
	position: relative;
	z-index: 50;
	background: rgba(254, 250, 246, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--color-sand-200);
}
.site-header.is-sticky {
	position: sticky;
	top: 0;
}
.custom-logo-link {
	display: inline-flex;
	align-items: center;
}
.custom-logo-link img,
.custom-logo {
	max-height: 36px;
	width: auto;
	height: auto;
}
.nav-link {
	display: inline-flex;
	align-items: center;
	padding: 0.375rem 0.75rem;
	font-size: 0.813rem;
	font-weight: 500;
	color: var(--color-dark);
	opacity: 0.7;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: color 0.15s, background 0.15s;
}
.nav-link:hover {
	color: var(--color-terracotta);
	background: var(--color-terracotta-50);
}
.header-icon-btn {
	padding: 0.5rem;
	border: none;
	background: transparent;
	color: var(--color-dark);
	cursor: pointer;
	border-radius: 0.5rem;
	transition: background 0.15s;
}
.header-icon-btn:hover { background: var(--color-sand-100); }
.site-header .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.site-header .menu li { margin: 0; }
.site-header .menu a {
	display: inline-flex;
	align-items: center;
	padding: 0.375rem 0.75rem;
	font-size: 0.813rem;
	font-weight: 500;
	color: var(--color-dark);
	opacity: 0.7;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: color 0.15s, background 0.15s;
}
.site-header .menu a:hover {
	color: var(--color-terracotta);
	background: var(--color-terracotta-50);
	opacity: 1;
}
.search-input-wrap {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--color-sand-50);
	border-radius: 0.5rem;
	padding: 0.25rem 0.25rem 0.25rem 0.75rem;
}
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: var(--color-cream);
	padding: 1.5rem;
	overflow-y: auto;
	height: 100vh;
	height: 100dvh;
}
.mobile-menu a:hover {
	color: var(--color-terracotta);
}
.mobile-menu .lang-switcher {
	justify-content: flex-start;
	gap: 0.5rem;
}
.mobile-menu .lang-switcher a {
	font-size: 0.875rem;
	padding: 0.375rem 0.75rem;
}
.lang-switcher {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.25rem;
}
.lang-switcher li { margin: 0; }
.lang-switcher a {
	display: inline-block;
	padding: 0.25rem 0.5rem;
	border-radius: 0.375rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--color-dark);
	opacity: 0.6;
	transition: opacity 0.15s, background 0.15s;
}
.lang-switcher a:hover { opacity: 1; background: var(--color-sand-100); }
.lang-switcher .current-lang a {
	opacity: 1;
	background: var(--color-terracotta-100);
	color: var(--color-terracotta-700);
}
.skip-link {
	position: absolute;
	top: -100%;
	left: 1rem;
	padding: 0.5rem 1rem;
	background: var(--color-dark);
	color: white;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	z-index: 100;
	transition: top 0.2s;
}
.skip-link:focus {
	top: 0.5rem;
	outline: 2px solid var(--color-ocean);
	outline-offset: 2px;
}
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}
.screen-reader-text:focus {
	position: fixed;
	top: 0.5rem;
	left: 0.5rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1.5rem;
	clip: auto;
	white-space: normal;
	background: var(--color-dark);
	color: white;
	border-radius: 0.5rem;
	z-index: 100;
	font-size: 0.875rem;
	font-weight: 600;
	box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.im-breadcrumb {
	padding: 0.75rem 0;
	font-size: 0.813rem;
	color: var(--color-dark);
	opacity: 0.6;
}
.im-breadcrumb a { color: var(--color-ocean); text-decoration: none; }
.im-breadcrumb a:hover { color: var(--color-terracotta); }
.im-breadcrumb svg { display: inline; vertical-align: middle; margin: 0 0.25rem; }
.site-footer a {
	color: var(--color-sand-300);
	text-decoration: none;
	transition: color 0.15s;
}
.site-footer a:hover { color: var(--color-terracotta-300); }