header .book-now{
	position: absolute;
	top: 10px;
	right: 0;
}
.header_container{ justify-content: center;}
header{ height: 100px;}

/* Hamburger Icon */
.menu-icon {
	position: fixed;
	top: 20px;
	left: 20px;
	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: 40px;}
	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;
	background-color: rgba(0, 0, 0, 0.8);
	height: 100vh;
	text-align: center;
	z-index: 99;
}

nav ul {
	list-style: none;
	padding: 0;
	margin-top: 20px;
	width: 100%;
}

nav a {
	color: white;
	text-decoration: none;
	font-size: 18px;
	padding: 20px;
	display: block;
}

nav a:hover {
	background: rgba(0, 0, 0, 0.5);
}


#mobile-nav {
	position: fixed;
	top: 0;
	left: -250px;
	height: 100%;
	width: 250px;
	background-color: rgba(0, 0, 0, 0.9);
	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;}
	
}