@import url('https://fonts.googleapis.com/css?family=Anton|Gugi|Lato|Roboto|Sofia&display=swap');

:root {
	--primaryColor: #193e61;
	--backColor: #5d9596;
	--btnFlash: #f5fbff;


	--roboto: "Roboto", sans-serif;
	--gugi: "Gugi", cursive;
	--sofia: "Sofia", cursive;
	--lato: "Lato", cursive;
	--anton: "Anton", cursive;

}


* {
	margin: 0px;
	padding: 0px;
}


a {
	color: #fff !important;
}

p {
	margin: 0;

}


section {
	padding: 20px 0;
}

.odd {
	background-color: #e0e0e0; 
}

.even {
	background-color: #fff; 
}

 

/*   Header  */

header {
	width: 100%;
	height: 100vh;
	background: linear-gradient(var(--backColor), #fff);
	background-size: cover;
	position: relative;
}

header > .container {

	position: relative;
	height: 100%;
	padding: 0;

}

.navbar-brand {
	width: 100%;
	position: absolute;
	max-width: 250px;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	transition: opacity 650ms;
}

.navbar-brand:hover {
	opacity: .8;
}

.hamburger-menu {
	position: fixed;
	top: 25px;
	right: 15px;
	width: 50px;
	height: 50px;
	display: flex;
	cursor: pointer;
	border-radius: 4px;
	z-index: 999;
}

.hamburger-menu i {
	font-size: 30px;
	color: #636363;
	margin: auto;
}

.hamburger-menu .fa-times {
	display: none;
}

.hamburger-menu .fa-times.open {
	display: block;
}


.hamburger-menu .fa-bars.open {
	display: none;
}


.nav-list {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	list-style: none;
	z-index: 900;
	background-color: #5d9596;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	transform: scale(0);
	transition: opacity 650ms;
}

.nav-list.open {
	opacity: 1;
	transform: scale(1);
	transition: opacity 650ms;
}

.nav-link.active
	{
		color: var(--primaryColor) !important;
		font-weight: 500;
	}

.hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -45%);
	text-align: center;
}

.hero-text h1 {
	font-family: "Sofia", cursive;
	color: var(--primaryColor);
}


.btn {
	width: 190px;
	padding: 6px 0px !important;
	position: relative;
	font-weight: 500;
	border: 1px solid var(--primaryColor);
	color: #096575 !important;
	overflow: hidden;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent, var(--btnFlash), transparent);
	transition: all 600ms;
}

.btn:hover::before {
	left: 100%;
}




/*   About  */


.section-heading h4 {
	text-transform: uppercase;
	color: #101D2C;
	line-height: 0;
	font-family: var(--gugi);
	font-weight: 100;
	letter-spacing: 1px;
}

.section-heading h1 {
	font-family: var(--gugi);
}

.about .btn {
	color: #03a1fc !important;
	border: 1px solid #03a1fc !important;
	transition: background-color 654ms;
}

.about .btn:hover {
	color: white !important;
}


/* Menu section*/

.menu {
	background-color: var(--primaryColor);
}


.shop-info i {
	font-size: 50px;
	color: var(--backColor)
}


.social i {
	font-size: 18px !important;
	color: white !important;
}

.shop-info h1 {
	font-size: 30px;
	font-weight: 600;
}

.shop-info h1,
.shop-info p,
.shop-info address {
	font-family: var(--lato);
}



/* Contact */

.contact-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -45%);
	text-align: center;
}

.contact-text h1 {
	font-family: "lato", cursive;
	color: var(--primaryColor);
}

.contact-text p
{
	color:green !important;
	font-weight: 400;
}

.contact-text i
{
	color: var(--primaryColor) !important;
}


@media (min-width : 576px) {
	.navbar-brand {
		max-width: 250px;
	}

	.hamburger-menu {
		top: 40px;
		right: 25px;
	}

	.btn {
		margin: 5px 0px 5px 0px;
	}
}



@media (min-width : 768px) {

	.btn {
		margin: 5px 0px 5px 0px;
	}
}

@media (min-width : 992px) {

	header > .container {
		padding: 0 15px;
	}

	.hamburger-menu {
		display: none;
	}

	.navbar-brand {
		position: initial;
		transform: initial;
	}

	.nav-list {
		position: initial;
		width: initial;
		height: initial;
		background-color: initial;
		flex-direction: row;
		opacity: initial;
		transform: initial;
		transition: initial;
		margin: 0;
		padding: 0;
	}

	.nav-item {
		padding: 0 30px;
	}

	.nav-item:last-child {
		margin-right: 0px;
	}

	.nav-link {
		position: relative;
		padding: 0;
	}

	.nav-link::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: -3px;
		background-color: var(--primaryColor);
		width: 100%;
		height: 3px;
		transform: scaleX(0);
		transform-origin: center;
		transition: transform 650ms;
	}

	.nav-link:hover::before {
		transform: scaleX(1);
	}
	
	
}
