/* Sticky transparent header with slide-down effect after 100vh */
header.site-header-08b2f3f2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background-color: transparent;
	transition: background-color 0.3s ease, transform 0.4s ease, position 0s;
}

body.admin-bar header.site-header-08b2f3f2 {
	top: var(--wp-admin--admin-bar--height, 32px);
}

@media screen and (max-width: 782px) {
	body.admin-bar header.site-header-08b2f3f2 {
		top: 46px;
	}
}

/* Deployed as sticky when scrolled 100vh */
header.site-header-08b2f3f2.is-sticky {
	position: fixed;
	background-color: #000000 !important;
	transform: translateY(-100%);
	animation: slideDown08b2f3f2 0.4s forwards;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@keyframes slideDown08b2f3f2 {
	to {
		transform: translateY(0);
	}
}
