/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

.site-header {
	background-color: #fff;
	position: relative;
	z-index: 999;
    margin-bottom: 20px;
}

.header-container {
	max-width: 1124px;
	margin: 0 auto;
	padding: 2rem 0;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

/* Logo/Site Title */
.logo-wrap {
	flex: 0 0 auto;
	text-align: center;
}

.site-title {
	margin: 0;
	padding: 0;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 0;
}

.site-title a {
	color: #c00;
	text-decoration: none;
	display: inline-block;
}

.site-description {
	margin: 0.5rem 0 0 0;
	font-size: 0.875rem;
	color: #666;
	font-style: italic;
}

/* Header Widgets (Search box area) */
.header-widgets {
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1rem;
}

.header-widget {
	margin: 0;
	padding: 0;
}

.header-widget .widget-title {
	display: none;
}

/* Search Form in Header */
.search-form {
	display: flex;
	gap: 0;
	margin: 0;
	padding: 0;
	background: transparent;
}

.search-field {
	width: 250px;
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 3px 0 0 3px;
	font-size: 0.875rem;
	background-color: #fff;
}

.search-field:focus {
	outline: 0;
	box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.search-submit {
	padding: 0.5rem 1rem;
	background-color: #c00;
	color: #fff;
	border: none;
	border-radius: 0 3px 3px 0;
	cursor: pointer;
	font-size: 0.875rem;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
}

.search-submit:hover {
	background-color: #900;
}

.search-submit i {
	display: inline-block;
}

.search-submit .screen-reader-text {
	display: none;
}

/* Mobile Menu Toggle (hidden by default) */
.mobile-menu-toggle {
	display: none;
	width: 100%;
	text-align: center;
	margin-top: 1rem;
}

.menu-toggle {
	background-color: #c00;
	color: #fff;
	border: none;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	cursor: pointer;
	border-radius: 3px;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
}

.menu-toggle:hover {
	background-color: #900;
}

.menu-toggle[aria-expanded="true"] {
	background-color: #900;
}

.menu-toggle i {
	display: inline-block;
	font-size: 1.25rem;
}

/* Skip Link */
.skip-link {
	position: absolute;
	top: -24px;
	left: 0;
	background-color: #000;
	color: #fff;
	padding: 0.5rem 1rem;
	text-decoration: none;
	z-index: 100;
}

.skip-link:focus {
	top: 0;
}
