header .book-now{
	position: absolute;
	top: 10px;
	right: 0;
}
.header_container{ justify-content: center;}


/* Hamburger Icon */
.menu-icon {
	position: fixed;
	top: 5px;
	left: 5px;
	height: 45px;
	width: 45px;
	cursor: pointer;
	z-index: 101;
	color: white;
	transform: rotate(0deg);
	background: rgba(0, 0, 0, 0.5);
	padding: 10px;
	border-radius: 50%;
	transition: transform 0.3s ease-in-out;
	span{font-size: 25px;}
	user-select: none;
}

.menu-icon.active {
	transform: rotate(180deg);
	&::after{
		content: '';
	}
}

/* Hidden Navigation */
nav.hidden {
	display: none;
}


nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	height: 100vh;
	text-align: center;
	z-index: 99;
}

nav ul {
	list-style: none;
	/* margin-top: 63px; */
	padding: 0;
	width: 100%;
}

nav a {
	color: black;
	text-decoration: none;
	font-size: 18px;
	padding: 20px;
	display: block;
}
nav ul li:nth-child(1){display: none;}	

nav a:hover {
	background: var(--orange);
	background-color: white;
}


#mobile-nav {
	position: fixed;
	top: 0;
	left: -250px;
	height: 100%;
	width: 250px;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 100;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.3s ease-in-out;
	transform: translateX(0);
}

#mobile-nav.active {
	transform: translateX(250px);
}

header nav li .book-now{ 
	display: block;
	position: static;
	margin: auto 20px;
	font-size: 1.2rem;
	text-align: center;
}


@media only screen and (max-width: 600px) {
	header .book-now{ display: none;}
	
}