@charset "utf-8";
/* CSS Document */
html {
	scroll-behavior: smooth;
}

* {
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
}

/*
Colour Them
Red: #781C29
Orange: #DD723C
*/

.navbar {
	width: 100%;
	height: 80px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
}

#navbar {
	position:fixed;
	top: 0;
	left: 0;
	background-image: url("/IMG/NAV IMG/nav_bg.jpg"); 
	background-position: top;
	background-size: cover;
	border-bottom-left-radius: 27px;
	border-bottom-right-radius: 27px;
	box-shadow: 0 1px 10px 0 rgba(61, 61, 61, 0.3);
}

.logo {
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 70px;
}

.logo img {
	width: 200px;
	transition: all 0.4s ease;
}

.logo img:hover {
	transform: scale(1.1);
	transition: all 0.4s ease;
}

nav {
	height: 100%;
	width: 50%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding-right: 70px;
}

ul {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 30px;
}

nav ul li a {
	font-family: Quattrocento Sans;
	font-size: 18px;
	color: #3d3d3d;
	font-weight: bold;
	transition: all 0.4s ease;
}

nav  ul li a:hover {
	color: #DD723C;
	transition: all 0.4s ease;
}

nav ul li.active a {
	color: #DD723C;
	transition: all 0.4s ease;
}

i {
	color: #3d3d3d;
	transition: all 0.4s ease;
}

i:hover {
	color: #DD723C;
	transition: all 0.4s ease;
}

.hamburger {
	display: none;
}

.hamburgermenu {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 2000;
	background-color: rgba(61,61,61,0.9);
	backdrop-filter: blur(7px);
  	-webkit-backdrop-filter: blur(7px);
}

#hamburgermenu {
	display: none;
}

.hamburgermenu ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	height: 100vh;
	width: 100%;
}

.hamburgermenu  ul li a{
	font-family: Quattrocento Sans;
	font-size: 56px;
	color: #fff;
	font-weight: 100;
	transition: all 0.4s ease;
}

.hamburgermenu ul li a:hover {
	color: #DD723C;
	transition: all 0.4s ease;
}

.hamburgermenu ul li.active a {
	color: #DD723C;
	transition: all 0.4s ease;
}

.hamburgerback {
	position: absolute;
	top: 20px;
	right: 70px;
	transition: all 0.4s ease;
}

.hamburgerback img{
		width: 40px;
		height: 40px;
}

.hamburgerback:hover {
		filter: invert(30%);
		transition: all 0.4s ease;
}


button.hamburgerback {
		border: none;
		background-color: transparent;
		cursor: pointer;
}

.hamburgermenu i {
	color: #fff;
	transition: all 0.4s ease;
}

.hamburgermenu i:hover {
	color: #DD723C;
	transition: all 0.4s ease;
}

.fa-width {
	font-size: 50px;
}

.icondiv {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-content: center;
	gap: 50px;
}



/* Media Mobile------------------------------------------------------------------------------*/

@media (max-width: 1290px) {
	nav {display: none;}
	.hamburger {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		width: 40px;
		height: 40px;
		margin-right: 70px;
	}
	
	.hamburger img {
		width: 40px;
		transition: all 0.4s ease;
	}
	
	button {
		border: none;
		background-color: none;
		cursor: pointer;
	}
	
	.hamburger img:hover {
		filter: invert(50%);
		transition: all 0.4s ease;
	}
}

@media (max-width: 768px) {
	nav {display: none;}
	
	.logo {
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 30px;
    }
	.hamburger {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		width: 30px;
		height: 30px;
		margin-right: 30px;
	}
	
	.hamburger img {
		width: 40px;
		transition: all 0.4s ease;
	}
	
	button {
		border: none;
		background-color: none;
		cursor: pointer;
	}
	
	.hamburger img:hover {
		filter: invert(50%);
		transition: all 0.4s ease;
	}
	
	.hamburgermenu  ul li a{
	font-family: Quattrocento Sans;
	font-size: 36px;
	color: #fff;
	font-weight: 100;
	transition: all 0.4s ease;
    }
    
    .hamburgerback {
	position: absolute;
	top: 30px;
	right: 35px;
	transition: all 0.4s ease;
}

    .hamburgerback img{
    		width: 30px;
    		height: 30px;
    }
    
    .hamburgerback:hover {
    		filter: invert(30%);
    		transition: all 0.4s ease;
    }
    
    .fa-width {
	font-size: 40px;
}
}


