 
/* Left Logo Container */
.logo-container {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.logo-placeholder {
	height: 40px;
	width: 120px;
	background-color: #333;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
}

/* Updated Image Placeholder CSS */
.logo-image {
	height: 40px;
	width: auto;
	display: block;
}

/* Brand Text Container */
.logo-text {
	font-family: 'Space-Grotesk', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
}



/* Central Oval Container */
.central-container {
	max-width: 600px;
	margin: 5px auto; 
	padding: 2px 20px;
	background-color: rgba(54, 69, 79, 0.50); /* Charcoal with 75% opacity */
	color: #ffffff;
	border-radius: 9999px; /* Force oval shape */
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Right Dynamic Content Container */
.menu-container {
	background: transparent;
	display: flex;
	align-items: center;
	position: relative;
	gap: 15px;
}

