/* MkDocs Material-inspired Header Styling */
/* Override default header styles to match whiteraven_mkdocs look */

.header-section {
	background-color: transparent;
	width: 100%;
	z-index: 999;
	position: fixed;
	left: 0;
	top: 0;
	padding: 10px 0;
	transition: all 0.3s ease-in-out;
	border-bottom: 0;
}

/* Header when scrolled (this class is added via JavaScript) */
.header-section.navbar-fixed-top {
	background-color: #080802 !important;
	box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.05);
	border-bottom: 0;
	padding: 0;
}

.header-section .navbar {
	border: medium none;
	border-radius: 0;
	margin: 0;
	position: relative;
	padding: 0;
}

.header-section .navbar-brand {
	padding: 17px 0;
	transition: all 0.3s ease-in-out;
}

.header-section.navbar-fixed-top .navbar-brand {
	padding: 17px 0;
}

.header-section .navbar-brand img {
	transition: all 0.3s ease-in-out;
}

.header-section ul.nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-section ul.nav > li {
	display: inline-block;
	margin: 0;
}

.header-section ul.nav > li > a {
	color: rgba(255, 255, 255, 0.85);
	display: inline-block;
	vertical-align: middle;
	padding: 0 5px;
	font-size: 16px;
	font-weight: 400;
	line-height: 80px;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.header-section.navbar-fixed-top ul.nav > li > a {
	color: rgba(255, 255, 255, 0.85);
	line-height: 70px;
}

.header-section ul.nav > li:first-child > a {
	padding-left: 0;
}

/* Container adjustments */
.header-section .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.header-section .menu-wrap {
	display: flex;
	align-items: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {

	.header-section ul.nav > li > a {
		line-height: 70px;
		padding: 0 10px;
		font-size: 14px;
	}
}

@media (max-width: 767px) {


	.header-section .navbar-brand {
		padding: 12px 0;
	}

	.header-section .navbar-brand img {
		width: 100px !important;
	}

	.header-section ul.nav > li > a {
		line-height: 60px;
		font-size: 13px;
		padding: 0 8px;
	}

}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
	.header-section {
		background-color: rgba(0, 0, 0, 0.3);
	}

	.header-section.navbar-fixed-top {
		background-color: #080802 !important;
		box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.3);
	}
}
