/* Header Container */
.dr1040header {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: linear-gradient(135deg, #0d47a1, #00796b);
	color: white;
	padding: 15px 15px 20px;
	font-family: 'Poppins', sans-serif;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* Top Header Flex */
.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

/* Logo + Text Wrapper */
.header-logo-text {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Logo Styling */
.header-logo {
	height: 50px;
	width: auto;
	border-radius: 8px;
	flex-shrink: 0;
}

/* Header Text */
.header-text {
	text-align: left;
}

.header-text h1 {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.2;
}

.header-text p {
	margin: 4px 0 0;
	font-size: 1rem;
	opacity: 0.9;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

/* Location Link Styling */
.header-text .location-link {
	color: #ffeb3b; /* bright yellow */
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease;
}

.header-text .location-link:hover {
	color: #fff176; /* lighter yellow */
	text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
	font-size: 1.8rem;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.15);
	padding: 6px 12px;
	border-radius: 6px;
	transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.hamburger:hover {
	background: rgba(255, 255, 255, 0.3);
}

.hamburger.active {
	transform: rotate(90deg);
}

/* Slide Menu */
.slide-menu {
	position: fixed;
	top: 0;
	right: -260px;
	width: 260px;
	height: 100%;
	background: #004d40;
	display: flex;
	flex-direction: column;
	transition: right 0.3s ease-in-out;
	box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);
}

.slide-menu.open {
	right: 0;
}

.menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-header h2 {
	margin: 0;
	font-size: 1.2rem;
	color: white;
}

.close-btn {
	font-size: 1.5rem;
	cursor: pointer;
	color: white;
}

.slide-menu a {
	color: white;
	text-decoration: none;
	padding: 15px 20px;
	font-size: 1.1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-menu a:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Mobile adjustments */
@media ( max-width : 480px) {
	.header-top {
		flex-direction: column; /* stack all elements */
		align-items: center;
		justify-content: center;
		gap: 10px;
	}
	.header-logo-text {
		flex-direction: column; /* stack logo and text */
		align-items: center;
		text-align: center;
		gap: 6px; /* spacing between logo and text */
	}
	.header-logo {
		height: 40px;
		margin-bottom: 4px;
	}
	.header-text h1 {
		font-size: 1.6rem;
		line-height: 1.2;
		text-align: center;
	}
	.header-text p {
		font-size: 0.9rem;
		display: block;
		text-align: center;
		gap: 0;
		margin-top: 4px;
	}
	.header-text p a {
		display: inline-block;
		margin: 0 2px;
	}
	.hamburger {
		margin: 8px 0 0 0; /* centered under header */
	}
}