/* header {
	width: 94.5rem;
	height: 6rem;
	flex-shrink: 0;
	color: var(--Dark-Gray);
	font-family: "embarcadero-mvb-pro", system-ui, sans-serif;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5rem;

	height: 6rem !important;
	transition: height 0.3s ease-in-out !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	z-index: 1000 !important;
}

.donor-dropdown {
	width: calc(100% -12rem);
	margin-right: 6rem;
	margin-left: 6rem;
	padding-top: 7rem;
	padding-bottom: 7rem;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border-radius: 1rem;
	border: 1px solid var(--Lighter-Blue);
}

.donor-dropdown h3 {
	transition: all 0.3s ease;
}

.donor-dropdown a.group:hover h3 {
	text-decoration: underline;
}

.header-expanded {
	height: 12rem !important;
	border-bottom: none !important;
}

header:not(.header-expanded)::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--Lightest-Blue);
	z-index: 1001;
}

.header-bg {
	transition: height 0.3s ease-in-out, opacity 0.4s ease-in-out, border-bottom 0.3s ease-in-out;
	height: 6rem !important;
	background: white;
	opacity: 1;
	border-bottom: 1px solid var(--Lightest-Blue);
}

.header-expanded .header-bg {
	height: 12rem !important;
	opacity: 0;
	border-bottom: none;
	transition: height 0.3s ease-in-out, opacity 0.1s ease-in-out, border-bottom 0.3s ease-in-out;
}

.header-content {
	height: 100%;
	display: flex;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.site-branding {
	transition: transform 0.3s ease-in-out;
}

.site-branding img {
	height: 2rem;
	transition: height 0.3s ease-in-out;
}

.register-button {
	transition: transform 0.3s ease-in-out;
}

.register-button a {
	width: 11.6875rem;
	height: 3rem;
	flex-shrink: 0;
	border-radius: 1.5rem;
	border: 1px solid var(--Lighter-Blue);
	color: var(--Dark-Blue);
	text-align: center;
	font-family: "embarcadero-mvb-pro", system-ui, sans-serif;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5625rem;
	font-variant: all-small-caps;
	letter-spacing: 0.14rem;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-expanded .site-branding {
	transform: translateX(4rem);
}

.header-expanded .site-branding img {
	height: 2.5rem;
}

.header-expanded .register-button {
	transform: translateX(-4rem);
} */

/* Mobile-only header styles - static positioning and no animations */
@media (max-width: 1023px) {
	header {
		top: auto !important;
		left: auto !important;
		width: 100% !important;
		z-index: 50 !important;
		/* Add more margins on all sides */
		padding: 1.5rem 2rem !important;
	}

	/* Header inner container adjustments for mobile */
	#header-inner {
		height: auto !important;
		padding: 0.5rem 0 !important;
	}

	/* Smaller logo on mobile */
	.logo img {
		width: 8rem !important; /* Smaller than the default w-36 (9rem) */
		height: auto !important;
	}

	/* Disable header animations on mobile */
	.header-bg {
		transition: none !important;
		height: auto !important;
		opacity: 1 !important;
		border-bottom: 1px solid var(--Lightest-Blue) !important;
	}

	.header-expanded .header-bg {
		height: auto !important;
		opacity: 1 !important;
		border-bottom: 1px solid var(--Lightest-Blue) !important;
		transition: none !important;
	}

	/* Disable header content animations on mobile */
	.header-content {
		transition: none !important;
	}

	.site-branding {
		transition: none !important;
		transform: none !important;
	}

	.site-branding img {
		transition: none !important;
		height: auto !important;
		width: 8rem !important; /* Consistent smaller logo size */
	}

	.register-button {
		transition: none !important;
		transform: none !important;
	}

	/* Ensure header expanded state doesn't change anything on mobile */
	.header-expanded .site-branding {
		transform: none !important;
	}

	.header-expanded .site-branding img {
		height: auto !important;
		width: 8rem !important; /* Keep smaller logo size */
	}

	.header-expanded .register-button {
		transform: none !important;
	}

	/* Ensure header height is consistent on mobile */
	header {
		height: auto !important;
	}

	.header-expanded {
		height: auto !important;
		border-bottom: 1px solid var(--Lightest-Blue) !important;
	}

	/* Mobile menu toggle button spacing */
	#mobile-menu-toggle {
		margin-left: 1rem !important;
	}
}
