#navbar {
	background-color: #293d46;
}

#navbar .nav-link {
	color: #e9e6e2;
}

#navbar .nav-link {
	position: relative;
	text-decoration: none;
}

.navbar-hidden {
	transform: translateY(-100%);
	transition: transform .3s ease;
}

.navbar-nav .nav-link.active {
	background: linear-gradient(90deg, #009246, #fff, #ce2b37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

#navbar .navbar-nav  .nav-link::after {
	content: "";
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 1px;
	border-radius: 2px;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(to right, #009246, #fff, #ce2b37);
	transform-origin: bottom right;
}

#navbar  .nav-link:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.button-reservation {
	background-color: #fff;
	text-decoration: none;
	border: 2px solid;
	border-image: linear-gradient(to right, #009246, #ce2b37) 1;
	border-radius: 20px;
	padding: 10px 20px;
	color: #000;
	font-size: 16px;
	cursor: pointer;
}

.full-screen-menu {
	display: none;
}

.full-screen-menu.show {
	display: block;
}

.full-screen-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #000;
	z-index: 1050;
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.full-screen-menu.show {
	display: flex;
	visibility: visible;
}

.full-screen-menu .nav-link {
	font-size: 1.8rem;
	color: white;
	margin: 1rem;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
}

.full-screen-menu .nav-link:hover {
	color: #293d46;
}

.full-screen-menu .nav-link:active {
	color: white;
}

.close-menu {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 2.5rem;
	color: white;
	background: none;
	border: none;
	cursor: pointer;
}

.close-menu:hover {
	color: #293d46;
}

.navbar-collapse {
	display: none !important;
}

@media (max-width: 991px) {
	.navbar-toggler {
		order: 2;
	}
	
	.navbar-brand {
		order: 1;
	}
	
	.full-screen-menu .nav-link {
		color: #fff;
	}
}

.footer a {
	color: inherit;
	text-decoration: none;
	transition: all .3s ease;
}

.footer a:hover {
	background: linear-gradient(90deg, #009246, #fff, #ce2b37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer .col-md-2 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.footer .col-md-2 img {
	width: 60%;
	max-width: 160px;
	height: auto;
}

.space-bottom {
	margin-bottom: 15px;
}

@media (max-width: 768px) {
	.footer .row {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.footer .col-md-2 {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin-bottom: 15px;
	}
	
	.footer .col-md-3 {
		text-align: center;
		margin-top: 10px;
	}
}

.footer-link {
	position: relative;
	display: inline-block;
	font-size: 1rem;
	text-decoration: none;
	transition: all .3s ease;
}

.footer-link.active, .footer-link:hover, .footer-link:focus {
	background: linear-gradient(90deg, #009246, #fff, #ce2b37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transform: scale(1.1);
}

