.site-header {
	background-color: #fff;
	border-bottom: 0.1rem solid #d7d7d7;
	position: sticky;
	top: 0;
	transition: transform 0.3s;
	z-index: 5;
}
.site-header.hide {
	transform: translateY(-100%);
}
.site-header:has(~ main > .hotel-hero:first-child) {
	left: 0;
	position: fixed;
	transition: 0.3s;
	width: 100%;
}
.site-header:has(~ main > .hotel-hero:first-child):not(.scrolled) {
	background-color: transparent;
	border-color: transparent;
}
.site-header:has(~ main > .hotel-hero:first-child):not(.scrolled)
	.hotel-menu__burger,
.site-header:has(~ main > .hotel-hero:first-child):not(.scrolled)
	.site-header__homepage {
	color: #fff;
}
.site-header:has(~ main > .hotel-hero:first-child):not(.scrolled)
	.site-booking
	.button {
	background-color: transparent;
	border-color: #fff;
}
.site-header:has(~ main > .hotel-hero:first-child):not(.scrolled)
	.site-booking
	.button:hover {
}
.site-header.--open-modal {
	background: none;
	border-bottom: none;
	pointer-events: none;
	transform: translateY(0);
}
.site-header.--open-modal .container {
	justify-content: center;
}
@media (min-width: 768px) {
	.site-header.--open-modal .container {
		min-height: 8rem;
	}
}
.site-header.--open-modal .hotel-menu,
.site-header.--open-modal .site-booking {
	display: none;
}
.site-header__container {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	min-height: 6.2rem;
	padding-block: 0.5rem;
	transition: all 0.3s;
}
.site-header__homepage {
	display: block;
	line-height: 0;
	transition: 0.3s;
}
.hotel-menu,
.site-booking {
	flex: 1;
}
.site-booking {
	text-align: right;
}
@media (max-width: 767px) {
	.site-booking .site-booking-button {
		display: none;
	}
}
.site-booking__mobile {
	background: linear-gradient(180deg, #fff0 10%, #fffc 80%);
	bottom: 0;
	left: 0;
	padding: 1rem;
	position: fixed;
	transition: transform 0.3s;
	width: 100%;
	z-index: 4;
}
@media (min-width: 768px) {
	.site-booking__mobile {
		display: none;
	}
}
.site-booking__mobile .button {
	justify-content: center;
	text-align: center;
	width: 100%;
}
.site-booking__mobile .button.--primary .button__content {
	padding-block: 1.5rem;
}
