/* header.css
   Header: logo stays as the existing raster image (622x261, unchanged).
   Everything else (nav + social) lives inside one shared dark panel,
   so the header reads as two things -- Logo, and a unified toolbar --
   instead of three disconnected floating pieces.
   This REPLACES the old #newheader/#cats block entirely. */
.site-header {
	display: flex;
	align-items: stretch;
	background: transparent;
	width: 100%;
	box-sizing: border-box;
}
.site-header .logo-area {
	flex-shrink: 0;
}
.site-header .logo-area img {
	display: block;
}
.header-panel-wrap {
	flex: 1;
	display: flex;
	align-items: stretch;
	padding: 16px 24px;
	box-sizing: border-box;
}
.header-panel {
	background: rgba(0, 0, 0, 0.72);
	border-radius: 12px;
	display: flex;
	align-items: stretch;
	width: 100%;
	padding: 18px 24px;
	box-sizing: border-box;
}
/* Nav: left side of the panel */
.header-nav {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-right: 36px;
	margin-right: 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	box-sizing: border-box;
}
.header-nav a {
	color: #e8e8e6;
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 2px solid darkorange;
	padding-bottom: 2px;
	display: inline-block;
	width: fit-content;
}
.header-nav a:hover {
	color: darkorange;
}
.header-nav input[type="text"] {
	background: #333;
	color: #ccc;
	border: none;
	height: 26px;
	padding: 0px 8px;
	font-size: 12px;
	margin-top: 6px;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	box-shadow: none;
}
/* Social: right side of the panel, two rows, right-justified,
   Listen on top (smaller/fewer icons), Keep Updated on bottom (bigger). */
.header-social {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-around;
}
.header-social-group {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.header-social-label {
	color: darkorange;
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-size: 10px;
	font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.header-social-icons {
	display: flex;
	gap: 6px;
}
.header-social-icons img {
	width: 32px;
	height: 32px;
}

body {
	background-image: url("/images/wallsconce.webp");
	background-image: image-set(
		url("/images/wallsconce.webp") type("image/webp"),
		url("/images/wallsconce.jpg") type("image/jpeg")
	);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
	background-color: black;
}

/* Style the suggestions dropdown Added Jan 2025*/
#suggestions {
   background-color: black; /* Not really relevent */
   color: white;
   border: 1px solid #ccc;
   list-style: none;
   margin: 0;
   padding: 0;
   position: absolute;
   min-width: 178px; /* Ensure it’s at least as wide as the input field */
   max-width: 100%;   /* Prevent it from getting too wide */
   overflow-y: auto; /* Allow vertical scrolling if needed */
   z-index: 1000;
   font-family: Verdana, Geneva, Arial;
   font-size: 12px;
   line-height: 120%;
   white-space: nowrap; /* Prevent text wrapping */
}

#suggestions li {
   padding: 5px;
   color: black;
   background-color: grey;
   cursor: pointer;
}

#suggestions li.highlight {
   background-color: #007bff;
   color: white;
}
