@import url("https://fonts.googleapis.com/css2?family=Poppins");
@import url("https://fonts.googleapis.com/css2?family=Montserrat");
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');

*{
	margin: 0;
	padding: 0;
}

/*FINAL UPDATES MADE ON MARCH 20 2022.
PROJECT SUBMITED ON MARCH-20-2022 TO THE FUTURE READY TALENT. */

html{
	-webkit-scroll-behavior: smooth;
	scroll-behavior: smooth;
}

:root{
	--first-color: black;
	--second-color: ;
	--third-color: ;
	--header-icon-color: white;
	--item-icon-color: black;
}

body{
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: rgba(0,0,0,0.101);
}

/*

	H E A D E R

*/

header{
	width: 100%;
	height: 8.5vh;
	background: rgba(0,0,0,0.3);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	z-index: 2;
	transition: 0.1s;/*
	filter: blur(8px);*/
}

header:not(header > div > span > ion-icon){
}

.sticky{
	width: 100%;
	height: 7vh;
	background: rgba(0,0,0,0.9);
}

header > div{ 
	margin: 0 20px;
}

header > div > span{
	margin: 0 10px;
}

header > div > span > ion-icon{
	font-size: 1.8em;
	color: var(--header-icon-color);
	cursor: pointer;
	transition: 0.3s;
}

header > div > span > ion-icon:hover{
	transform: translateY(-10px);
}

/*

	C O V E R P H O T O

*/

.coverphoto-container{
	width: 100%;
	height: 70vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	background: rgba(0,0,0,0.1);
}

.coverphoto-container > .coverphoto{
	width: 75%;
	height: 65vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: url("assets/coverphoto.jpeg") no-repeat;
	background-size: cover;
	text-align: center;
}

.coverphoto-container > .coverphoto > h1{
	font-size: 4.5em;
	font-weight: 800;
	letter-spacing: 1em;
	position: relative;
	display: flex;
}

.coverphoto > *{
	text-transform: uppercase;
	font-family: oswald;
	color: #a2f5a8;
}

marquee{
	font-size: 1.3em;
	border-bottom: 3px solid #124578;
	border-top: 2px solid #124578;
	font-family: montserrat;
}

/*
	I T E M S L I S T
*/

.items-list-container{
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10vh 0;
}

.items-list-container > .items-list{
	width: 1170px;
	min-height: 100vh;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.item{
	width: 250px;
	height: 300px;
	margin: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 10px;
	background: rgb(255,255,255,0.2);
	backdrop-fliter: blur(15px);
}

.item span:nth-child(2){
	position: absolute;
	bottom: 15px;
	background: black;
}

.item > #item-photo{
	width: 180px;
	aspect-ratio: 1;
	background: cyan;
	position: relative;
	top: 5px;
	border-radius: 10px;
	overflow: hidden;
	transition: 0.3s;
}

.item > div{
	width: 200px;
	height: 30px;
	text-align: center;
	margin: 15px 0;
	font-family: poppins;
}

.item > *{
	cursor: pointer
}

.item > #item-photo:hover{
	transform: translateY(-5px) scale(1.01);
	border-radius: 5px;
}

.item > span > button{
	width: 125px;
	height: 2.5em;
	font-size: 1em;
}

.item > span > ion-icon{
	position: relative;
	top: 7px;
	margin: 0 5px;
	font-size: 1.7em;
	color: var(---item-icon-color);
}

/*
	C H A T B O T
*/

.chatbot-container{
	width: fit-content;
	height: fit-content;
	display: flex;
	position: fixed;
	justify-content: center;
	align-items: center;
	right: 20px;
	bottom: -650px;
	overflow: hidden;
}

.chatbot{
	width: fit-content;
	height: fit-content;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	position: relative;
	cursor: pointer;
	transition: 0.2s;
	font-family: montserrat;
	background: white;
}

.chatbot-container.active{
	position: fixed;
	bottom: 0px;
	z-index: 10;
}

.chatbot > .input-screen{
	min-width: 400px; 
	width: 90%; 
	min-height: 500px;
	background: white;
}

.chatbot > *{
	outline: none;
}

.chat-head{
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	background: rgba(105,532,114,1);
	color: black;
}

.chat-head > h2{
	font-size: 1.3em;
}

.chat-head > *{
	margin: 0px 15px;
}

.chat-head > div > ion-icon{
	transform: translate(125px,-15px);
	font-size: 2.1em;
	position: absolute;
	color: var(--item-icon-color);
}

.chatbot > .chat-head > .headdown, .chatbot.active > .chat-head > .headup{
	visibility: hidden;
}

.chatbot-container.active > .chat-head > .headdown{
	visibility: visible;
}

.chatbot > input{
	width: 380px;
	height: 50px;
	border: none;
	margin-bottom: 30px;
	font-size: 1em;
}

.chatbubble{
	width: 75px;
	height: 75px;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 1.5px solid #000;
	background: white;
	box-shadow: 0 0 3px #012;
	position: fixed;
	bottom: 50px;
	right: 100px;
}

.chatbubble > a > ion-icon{
	font-size: 2.1em;
	color: black;
}


/*
	F O O T E R
*/

footer{
	width: 100%;
	height: 500px;
	background: #216587;
	margin: 30px 0;
	border-top: 5px solid #000;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 1.3em;
	font-family: roboto condensed;
}

footer > .customer-contact-form{
	width: 80%;
	height: 70%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.customer-contact-form > *, .customer-contact-form > div > input{
	text-align: center;
	border-radius: 5px;
	width: 800px;
	height: 2.5em;
	border: none;
	margin: 10px 0;
	font-size: 1em;
}

.customer-contact-form > div > input{
	width: 397px;
	height: 2.5em;
	border: none;
}

.customer-contact-form > div{
	margin: 20px 0;
}

.customer-contact-form > textarea{
	resize: vertical;
	width: 800px;
	height: 5em;
}

.customer-contact-form > button{
	width: 250px;
	background: pink;
}
