/* Header Section - Light Background with Yellow Accents */
.dr1013header {
	margin: 0;
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	background: #faf9f6;
	border-bottom: 1.5px solid #eee;
}

.dr1013header .header-container {
	max-width: 1200px;
	margin: auto;
	padding: 0.7rem 1.5rem;
}

.dr1013header .top-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.dr1013header .top-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.dr1013header .left-block {
	display: flex;
	align-items: center;
	gap: 14px;
}

.dr1013header .logo img {
	max-width: 100px;
	height: auto;
	display: block;
	margin: 0;
}

.dr1013header .text-wrap {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.dr1013header .header-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
	color: #fbc02d;
	text-shadow: 0 1px 2px rgba(251, 192, 45, 0.6);
}

.dr1013header .header-subtitle {
	font-size: 1rem;
	margin-top: 4px;
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 0.5px;
	color: #666666;
}

.dr1013header .menu-toggle {
	display: none;
	font-size: 2.2rem;
	color: #fbc02d;
	cursor: pointer;
	transition: color 0.3s ease;
}

.dr1013header .menu-toggle:hover {
	color: #e6b800;
}

.dr1013header nav {
	margin-left: auto;
}

.dr1013header nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 18px;
}

.dr1013header nav ul li a {
	color: #444;
	text-decoration: none;
	font-weight: 600;
	padding: 9px 14px;
	transition: background 0.3s ease, color 0.3s ease;
	font-size: 1.05rem;
	border-radius: 7px;
}

.dr1013header nav ul li a:hover, .dr1013header nav ul li a:focus {
	background: rgba(251, 192, 45, 0.2);
	color: #fbc02d;
	outline: none;
}

@media ( max-width : 768px) {
	.dr1013header .top-row {
		flex-direction: column;
		align-items: flex-start;
	}
	.dr1013header .menu-toggle {
		display: block;
		margin-top: 12px;
	}
	.dr1013header nav {
		width: 100%;
		margin-top: 12px;
	}
	.dr1013header nav ul {
		display: none;
		flex-direction: column;
		background: #faf9f6;
		width: 100%;
		border-top: 1px solid #eee;
	}
	.dr1013header nav ul.show {
		display: flex;
		max-height: 60vh;
		overflow-y: auto;
	}
	.dr1013header nav ul li {
		padding: 12px 18px;
		border-bottom: 1px solid #f0f0f0;
	}
	.dr1013header nav ul li:last-child {
		border-bottom: none;
	}
}