.dr1015header {
	background: #2e1f12;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 25px;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 3px 12px rgba(255, 215, 0, 0.5);
	flex-wrap: nowrap;
	user-select: none;
}

.logo img {
	width: 64px;
	height: 64px;
	filter: drop-shadow(0 0 10px #ffcf40);
	transition: transform 0.3s ease;
}

.logo img:hover {
	transform: scale(1.15);
}

.title {
	font-size: 2rem;
	color: #ffd700;
	font-weight: 800;
	text-shadow: 0 0 5px #fff1b0, 0 0 20px #ffcc00;
	margin-left: 20px;
	letter-spacing: 1px;
	flex-grow: 1;
}

.title:hover {
	color: #fff3a1;
	text-shadow: 0 0 10px #fff8dc, 0 0 25px #ffe680;
}

.header-actions {
	display: flex;
	gap: 18px;
	align-items: center;
	margin-left: 25px;
}

.header-actions a {
	display: flex;
	width: 40px;
	height: 40px;
	background: linear-gradient(145deg, #b8860b, #ffd700);
	border-radius: 50%;
	box-shadow: 0 0 12px #ffd700;
	justify-content: center;
	align-items: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	color: #2e1f12;
	font-size: 18px;
}

.header-actions a:hover {
	transform: scale(1.2);
	box-shadow: 0 0 20px #fff8dc;
	background: linear-gradient(145deg, #ffe066, #fff9b0);
	color: #3a2b15;
}

nav {
	display: flex;
	gap: 25px;
	font-weight: 600;
	flex-grow: 1;
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-width: thin;
	scrollbar-color: #ffd700 #2e1f12;
}

nav a {
	color: #fff8c6;
	text-decoration: none;
	padding: 10px 16px;
	border-radius: 10px;
	transition: background 0.3s ease, color 0.3s ease;
	font-size: 1.1rem;
	white-space: nowrap;
}

nav a:hover {
	background: #ffd700;
	color: #2e1f12;
	box-shadow: 0 0 12px #fff2a8;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	width: 30px;
	height: 24px;
	justify-content: space-between;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 4px;
	background: #ffd700;
	border-radius: 3px;
	box-shadow: 0 0 6px #ffd700;
}

@media ( max-width : 768px) {
	.dr1015header {
		flex-wrap: wrap;
		padding: 10px 15px;
	}
	.title {
		margin-left: 0;
		font-size: 1.6rem;
		text-align: center;
		width: 100%;
		order: 2;
	}
	.header-actions {
		width: 100%;
		justify-content: center;
		order: 1;
		margin-bottom: 8px;
	}
	nav {
		position: fixed;
		top: 70px;
		right: 0;
		background: #2e1f12;
		flex-direction: column;
		width: 240px;
		padding: 25px;
		height: calc(100% - 70px);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		box-shadow: -2px 0 15px rgba(255, 215, 0, 0.6);
		overflow-y: auto;
		z-index: 999;
	}
	nav.open {
		transform: translateX(0);
	}
	nav a {
		padding: 16px 0;
		font-size: 1.2rem;
		display: block;
	}
	.menu-toggle {
		display: flex;
		order: 3;
		margin-left: auto;
	}
}