/**********************************************************************************************
 *	Author:  Zubair Hossain	   																  *
 *	License: Private		   																  *
 *	Date:	 2025/07/01		   																  *
 *																							  *
 *	This web development project is for JCL Home Appliance Industry, all code & resources	  *
 *	are strictly private intellectual property. Unauthorized reproduction, distribution, 	  *
 *	or modification is strictly prohibited. 		  										  *
 *										         											  * 	
 *	Copyright © 2025 Zubair Hossain. All Rights Reserved.	   							      *
 *********************************************************************************************/

/*
 * ** We create a static version of site without order functionality for temporary setup **
 *
 *  [x] Comment out all tags related to cart menu + icons on products that represent add to cart
 *  [ ] Make the page 2/3, & remove support section for now
 *
 *  [ ] Slider upgrades:
 * 		[ ] Fix bugs in image slider when slider buttons are clicked, should be instant
 * 		[ ] Smoother animation when navigating to next image
 * 		[ ] Hover effect, when mouse on slider, should use transparency & highlight 
 * 					effect to show that it is selected
 *
 *  [ ] Adjust the following so that it is viewable on mobile screens:
 *  			[ ] Menu bar
 *
 *  [ ] Products images need some gradients & transparency
 *
 *  [ ] Adjust products section for mobile / smaller screen size so that
 *  		the number of products display per row adjusts dynamically
 *  [ ] Navigation on products page needs adjustment
 *
 *
 * [x] Fix fonts
 * [x] Menu bar upgrade, current page should be highlighted
 * [x]     Change 3rd image
 *
 * [x] Products page needs navigation icons for next & previous page
 *
 *
 */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Roboto:ital,wght@0,100..900;1,100..900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Unlock&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.global_background {
	background: linear-gradient(rgb(255,255,255), rgb(239,247,252), rgb(208,238,255));
	height: 100vh;
	background-repeat: no-repeat;
}

.menu_bar {
	min-height: 49px;
	background-color: #0e1324;
	color: black;
	display: flex;
	padding: 20px, 20px;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 9px;
}

.menu_bar li {
	padding: 0px 0px 0px 30px;
}

.menu_bar li a {
	list-style: none;
	justify-content: center;
	padding: 10px 40px 10px 40px;
	color: #FFFFFF;
	border-radius: 15px;
	text-decoration: none;
	/*
	font-family: "Nova Square", "serif";
	font-weight: 800;
	font-size: 16;
	*/
	font-family: "Roboto";
	font-size: 12px;
	font-weight: 700;
}

.menu_bar_selected {
	list-style: none;
	justify-content: center;
	padding: 10px 40px 10px 40px;
	color: #FFFFFF;
	border-radius: 15px;
	text-decoration: none;
	/*
	font-family: "Nova Square", "serif";
	font-weight: 800;
	font-size: 16;
	*/
	font-family: "Roboto";
	font-size: 12px;
	font-weight: 700;
	background-color: #0a3088;
}

.menu_bar_inactive:hover {
	background-color: #1e283c;
	padding: 10px, 40px, 10px, 40px;	
	color: #FFFFFF;
	font-weight: 800;
}

/* Social media links */

.social_media_links {
	display: flex;
	flex-direction: column;
	row-gap: 21px;
	position: fixed;
	right: 15%;
	top: 40%;
	padding: 15px 15px;
	border-radius: 12px;
	background: rgb(175,211,235);
	background: linear-gradient(0deg, rgba(175,211,235,1) 0%, rgba(183,226,255,1) 5%, rgba(202,231,250,1) 92%, 
								  	  rgba(255,255,255,1) 98%);
	box-shadow: 2px 3px 4px #99cdf1;
}

.social_media_links a img {
	width: 37px;
	height: 37px;
	transition: transform 0.15s ease-in;

}

.social_media_links a img:hover {
	transform: scale(1.15);
	
}

/* /home */
.front_page_logo {
	display: flex;
	padding: 20px, 20px, 20px, 20px;
	justify-content: center;
	margin-top: 10px;
	margin-bottom: 49px;
}

.front_page_img {
	display: flex;
	padding-left: 20px;
	padding-right: 20px;
	justify-content: center;
	overflow: hidden;
}

.front_page_img img {
	border-radius: 21px;
	width: 600px;
	height: 400px;
	box-shadow: 4px 0px 4px 2px #BCD0E9;

}

.img_hidden {
	display: none;
}

.img_slider {
	display: flex;
	justify-content: center;
	padding-top: 30px;
	column-gap: 3px;
	transition: background-image 0.3s ease-in;
}

.img_slider button {
	border: none;
	padding: 5px;
	background-color: transparent;
	opacity: 0.95;
	cursor: pointer;
}

/* Circular orbs below image gallery */
.img_slider img {
	height: 18px;
	width:  18px;
	color: blue;
}

.img_slider img:hover {
	background-color: orange;
	border-radius: 10px;
}

.front_page_info {
	padding-top: 30;
	text-align: left;
	width: 50%;
	justify-content: center;
	margin: auto;
	font-family: "Libre Baskerville", "sans-serif";
	font-style: normal;
	font-size: 15px;
	/*
	font-family: "source sans pro", "serif";
	font-size: 14px;
	font-weight: 600;
	*/
}

.social_media_links {
	display: flex;
	flex-direction: column;
	position: absolute;
	right: 10%;
	top: 40%;

}

.social_media_links ul {
	text-decoration: none;
}

/* /product */

.products_page_background {
	background: rgb(255,255,255);
	background-size: cover;
	background-repeat: no-repeat;
	height: 100vh;
	position: relative;
}

.product_page {
	padding-left: 40px;
	display: flex;
	margin-left: 35vw;
	margin-right: 35vw;
	justify-content: center;
    flex-direction: column;
}

/* START @imported from blog section, needs update */
.page_prev {
	text-decoration: none;
	font-family: "unlock";
	font-size: 18px;
	font-weight: 400;
	font-style: bold;
	border-radius: 6px;
	border: none;
	padding: 0px 5px;
	cursor:pointer;
	opacity: 0.8;
	position: absolute;
	left: 15%;
	top: 45%;
	min-height: 201px;
	min-width: 14px;
	align-items: center;
	justify-content: center;
	display: flex;
	color: gray;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 2%, rgba(229,239,242,1) 64%, rgba(203,226,233,1) 99%);
	box-shadow: 1px 1px 2px #cdecf1;
}

.page_prev_inactive {
	font-family: "unlock";
	font-size: 18px;
	font-weight: 400;
	font-style: bold;
	border-radius: 6px;
	border: none;
	padding: 0px 5px;
	position: absolute;
	opacity: 0.6;
	left: 15%;
	top: 45%;
	min-height: 201px;
	min-width: 14px;
	align-items: center;
	justify-content: center;
	display: flex;
	color: gray;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 2%, rgba(229,239,242,1) 64%, rgba(203,226,233,1) 99%);
	box-shadow: 1px 1px 2px #cdecf1;
}

.page_next {
	text-decoration: none;
	font-family: "unlock";
	font-size: 18px;
	font-weight: 400;
	font-style: bold;
	border-radius: 6px;
	border: none;
	cursor:pointer;
	position: absolute;
	right: 15%;
	top: 45%;
	min-height: 201px;
	min-width: 14px;
	align-items: center;
	justify-content: center;
	opacity: 0.8;
	color: gray;
	display: flex;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 2%, rgba(229,239,242,1) 64%, rgba(203,226,233,1) 99%);
	box-shadow: 1px 1px 2px #cdecf1;
}

.page_next_inactive {
	font-family: "unlock";
	font-size: 18px;
	font-weight: 400;
	font-style: bold;
	border-radius: 6px;
	border: none;
	position: absolute;
	right: 15%;
	top: 45%;
	min-height: 201px;
	min-width: 14px;
	align-items: center;
	justify-content: center;
	opacity: 0.6;
	text-decoration: none;
	display: flex;
	color: gray;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 2%, rgba(229,239,242,1) 64%, rgba(203,226,233,1) 99%);
	box-shadow: 1px 1px 2px #cdecf1;
}

.page_number {
	position: absolute;
	right: 21.5%;
	top: 19%;
	border: none;
	border-radius: 9px;
	padding: 7px 7px;
	margin-top: 18px;
	margin-left: 10px;
	background: #f2faff;
	opacity: 0.9;
	font-family: "Nova Square", "serif";
	font-size: 12px;
	font-weight: 700;
	font-style: bold;
	letter-spacing: 3px;
	color: darkblue;
}

/* END @imported from blog section, needs update */

.product_row {
	display: flex;
	flex-direction: row;
	justify-content: center;
    margin: 30px 0px;
	transform: scale(0.9);
}

.product_item {
	border: 1px solid #f1f1f1;
    border-radius: 30px;
	min-height: 301;
	min-width:  401;
	display: flex;
	justify-content: left;
	flex-direction: column;
	align-items: center;
    margin: 0px 15px 0px 0px;
    box-shadow: 0px 3px 4px 0px rgb(218,218,218);
    font-family: "Poppins", "source sans pro", "serif";
    font-weight: 500;
    font-style:  normal;
	font-size: 14px;
	letter-spacing: 1.0px;
	word-spacing: 4px;
    background: linear-gradient (rgb(244,252,247), rgb(241,246,255));
	position: relative;

}

.product_item img {
	padding-top: 10px;
	border-radius: 5px;
	opacity: 0.9;
}

.product_item b {
	letter-spacing: 1.3;
}

.product_price {
	display: flex;
	padding: 0px 0px 10px 20px;
}

.currency_img {
	width: 21px;
	height: 21px;
}

.contact_form {
	background: linear-gradient(rgb(202,246,236), rgb(177,214,236), rgb(149,198,249));
	border: 1px solid white;
	border-radius: 10px;
	min-height: 40vh;
	min-width: 35vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/** TODO: 1) Make sure icon & input are aligned correctly vertically **/
.contact_form p {
	font-family: "Space Mono", "serif";
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 20px;
}

.contact_form span {
	display: inline-block;

}

.contact_form_icon_1 {
	margin-right: 10px;
    padding-top: 5px;
}

.contact_form_icon_2 {
	margin-right: 10px;
    padding-top: 5px;
}

.contact_form_icon_3 {
	margin-right: 10px;
    padding-top: 5px;
}

.contact_form span input {
	border-radius: 5px;
	min-height: 30px;
	min-width: 200px;
	margin-bottom: 20px;
	text-align: center;
}

.contact_form .error {
	font-family: "Roboto";
	font-size: 14px;
	font-weight: 900;
	text-align: center;
	min-width: 16px;
	border-radius: 50%;
	border: 2px solid #d5f6f1;
	background-color: #f9bf2c;
	color: white;
	display: none;
	padding-left: 0px;
}

.contact_form_icon_2 {
	margin-left: 5px;
	min-width: 16px;
	min-height: 16px;
    margin-top: 5px;
}

.contact_form textarea {
	margin-left: 10px;
	border-radius: 9px;
	min-height: 200px;
	min-width: 24vw;
	text-align: center;
}

.contact_form button {
	margin-top: 10px;
	min-height: 30px;
	min-width: 100px;
	border-radius: 9px;
	margin-bottom: 20px;
	align-items: center;
	justify-content: center;
}

