.diamond-elegant-header {
	width: 100%;
	padding: 20px 0;
	background: transparent;
	font-family: 'Roboto', sans-serif;
	position: relative;
}

.header-container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* No fixed height, let content dictate */
}

/* Center Logo & Nav */
.header-logo-wrapper {
	text-align: center;
	z-index: 2;
	margin-bottom: 20px;
}

.header-logo img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 15px auto;
}

.header-nav {
	width: 100%;
}

.nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.nav-list li a {
	text-decoration: none;
	color: #333;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.5px;
	transition: color 0.3s ease;
	position: relative;
}

.nav-list li a:hover {
	color: #000;
}

/* Left Side Content */
.header-left-content {
	position: absolute;
	left: 5%; /* Not too far to the edge */
	top: 50%;
	transform: translateY(-50%);
	text-align: left; /* Align text to left inside the container */
	max-width: 250px;
	z-index: 2;
}

.left-side-text {
	font-size: 16px;
	line-height: 1.4;
	color: #333;
	margin-bottom: 10px;
}

/* Button style aligned left */
.left-side-btn-wrapper {
	text-align: left;
}

.left-side-btn {
	display: inline-block;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	border-bottom: 1px solid #333;
	padding-bottom: 2px;
	transition: opacity 0.3s;
	font-weight: 500;
}

.left-side-btn:hover {
	opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
	.header-left-content {
		position: static;
		transform: none;
		margin-top: 30px;
		text-align: center;
		left: auto;
	}
	
	.left-side-btn-wrapper {
		text-align: center;
	}
	
	.nav-list {
		gap: 20px;
		flex-direction: column;
		align-items: center;
	}
}
