/* ===============================
   MR PRINT PACK – HEADER
================================ */

.dr1052header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
	font-family: 'Poppins', sans-serif;
	perspective: 1200px;
	animation: headerReveal 0.9s ease forwards;
}

/* ===============================
   INNER CONTAINER
================================ */

.dr1052header .inner {
	max-width: 1300px;
	margin: auto;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transform-style: preserve-3d;
}

/* ===============================
   LOGO + BRAND
================================ */

.dr1052header .logo {
	display: flex;
	align-items: center;
	gap: 14px;
	transform: translateZ(40px);
	animation: floatIn 0.9s ease forwards;
}

.dr1052header .logo img {
	height: 58px;
	width: auto;
	filter: drop-shadow(0 10px 20px rgba(0,0,0,.6));
}

/* ===============================
   BRAND TEXT
================================ */

.dr1052header .brand-text span {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 1.4px;
	background: linear-gradient(90deg, #ffcc00, #ff8c00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: block;
}

.dr1052header .tagline {
	font-size: 14px;
	color: #ffffff;
	opacity: 0.9;
}

.dr1052header .location a {
	margin-top: 4px;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	background: rgba(255, 140, 0, 0.15);
	padding: 4px 8px;
	border-radius: 6px;
	transition: 0.3s;
}

.dr1052header .location a:hover {
	background: rgba(255, 140, 0, 0.25);
	transform: translateY(-1px);
}

/* ===============================
   NAV MENU – DESKTOP
================================ */

.dr1052header .nav-menu ul {
	list-style: none;
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0;
}

.dr1052header .nav-menu a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	padding-bottom: 4px;
}

/* Underline effect */
.dr1052header .nav-menu a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ffcc00, #ff8c00);
	transition: width 0.3s ease;
}

.dr1052header .nav-menu a:hover::after {
	width: 100%;
}

/* ===============================
   ACTION ICONS
================================ */

.dr1052header .actions {
	display: flex;
	align-items: center;
	gap: 14px;
	transform: translateZ(30px);
	animation: fadeUp 0.7s ease forwards;
}

.dr1052header .actions a {
	color: #ffffff;
	font-size: 18px;
	transition: transform 0.2s ease, color 0.2s ease;
}

.dr1052header .actions a:hover {
	transform: scale(1.15);
	color: #ffb000;
}

/* ===============================
   HAMBURGER
================================ */

.dr1052header .hamburger {
	display: none;
	background: none;
	border: none;
	color: #ffcc00;
	font-size: 24px;
	cursor: pointer;
}

/* ===============================
   DESKTOP 3D HOVER DEPTH
================================ */

@media (hover: hover) {
	.dr1052header .inner:hover {
		transform: rotateX(1.5deg);
	}
}

/* ===============================
   MOBILE VIEW
================================ */

@media (max-width: 768px) {

	.dr1052header {
		perspective: none;
	}

	.dr1052header .inner {
		transform: none;
	}

	.dr1052header .brand-text span {
		font-size: 20px;
	}

	.dr1052header .tagline {
		font-size: 13px;
	}

	/* MOBILE MENU PANEL */
	.dr1052header .nav-menu {
		position: absolute;
		top: 100%;
		right: 12px;
		width: 240px;
		background: #1c1c1c;
		display: none;
		flex-direction: column;
		box-shadow: 0 20px 40px rgba(0,0,0,.7);
		border-radius: 0 0 12px 12px;
		overflow: hidden;
		animation: slideMenu 0.35s ease forwards;
	}

	.dr1052header .nav-menu.active {
		display: flex;
	}

	.dr1052header .nav-menu ul {
		flex-direction: column;
	}

	.dr1052header .nav-menu a {
		padding: 14px 18px;
		display: block;
	}

	.dr1052header .hamburger {
		display: block;
	}
}

/* ===============================
   ANIMATIONS
================================ */

@keyframes headerReveal {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes floatIn {
	from {
		opacity: 0;
		transform: translateY(10px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideMenu {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}