/*
	Theme: Scrap Metal Kenya LLC;
	Author: Michael Chan;
	Date of Creation: Fri, June 6, 2025;
	Colors: Flat UI, Indian Palette;
*/

/* all pages */
	*
	{
		font-family: Verdana, sans-serif;
		font-size: 13px;
	}

	html, body
	{
		scroll-behavior: smooth;
		box-sizing: border-box;
	}
/* all pages end */

/* header */
	.header-cover
	{
		position: fixed;
		width: 100%;
		z-index: 3;
		background-color: rgba(0, 0, 0, 0.6);
		color: #BDC581;
	}

	header
	{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	header .logo
	{
		height: 100px;
	}

	header .logo img
	{
		height: 100%;
	}

	header ul
	{
		display: flex;
		align-items: center;
	}

	header ul li
	{
		list-style: none;
		margin-right: 50px;
	}

	header ul li a
	{
		padding: 5px 10px;
		border-radius: 5px;
		text-decoration: none;
		color: #BDC581;
	}

	header ul li a:hover
	{
		background-color: #BDC581;
		color: black;
	}

	.checkbtn
	{
		color: #BDC581;
		cursor: pointer;
		display: none;
	}

	.checkbtn i
	{
		font-size: 30px;
	}

	#check
	{
		display: none;
	}
/* header ends */

/* banner */
	.banner
	{
		background-image: url('../images/banner.jpg');
		background-size: cover;
		background-position: center;
		position: relative;
		min-height: 100vh;
	}

	.banner::before
	{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.4);
		z-index: 1;
	}

	.banner-content
	{
		color: white;
		text-align: center;
		position: relative;
		z-index: 2;
		padding: 250px;
	}

	.banner-content h1
	{
		font-size: 6rem;
		text-transform: uppercase;
		font-weight: 800;
		text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
	}

	.banner-content h2
	{
		font-size: 2rem;
		font-weight: 800;
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
		margin-bottom: 30px;
	}

	.banner-btn
	{
		text-decoration: none;
		color: black;
		border: none;
		border-radius: 5px;
		padding: 8px 16px;
		background-color: #BDC581;
	}

	.about-page
	{
		background-color: white;
		color: black;
		z-index: 2;
		border-radius: 13px;
		padding: 20px 20px;
		position: relative;
	}

	.about-page p
	{
		padding: 0 20px;
	}

	.back
	{
		width: 3%;
		margin-left: 20px;
	}

	.paper-scrap
	{
		display: flex;
		gap: 20px;
		padding: 0 20px;
		margin-top: 20px;
	}

	.paper-scrap img
	{
		width: 50%;
		object-fit: cover;
		border-radius: 13px;
		margin-bottom: 20px;
	}

	.plastic-scrap
	{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 20px;
		padding: 0 20px;
		margin-bottom: 20px;
	}

	.plastic-box
	{
		width: 100%;
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	}

	.plastic-box img
	{
		height: 350px;
		width: 100%;
		object-fit: cover;
	}

	.plastic-box-info
	{
		text-align: center;
		padding: 11px 11px;
	}
/* banner ends */

/* about */
	.section-title
	{
		font-size: 2rem;
		font-weight: 800;
		margin-bottom: 20px;
		text-align: center;
	}

	.about
	{
		padding: 50px;
	}
/* about ends */

/* team */
	#team
	{
		scroll-margin-top: 100px;
	}

	.team
	{
		padding: 50px;
		background-color: #f9f9f9;
	}

	.team-container
	{
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-gap: 20px;
	}

	.team-box
	{
		width: 100%;
		text-align: center;
	}

	.team-box img
	{
		width: 200px;
		height: 200px;
		object-fit: cover;
		border-radius: 50%;
		border: 4px solid #ddd;
		margin: 0 auto 10px auto;
	}

	.team-box-title
	{
		font-weight: bold;
		font-size: 16px;
	}

	.team-box-title span
	{
		display: block;
		font-weight: normal;
		font-size: 14px;
		color: #555;
		padding: 5px;
	}

	.linkedin-btn
	{
		text-decoration: none;
		color: black;
		border: none;
		border-radius: 5px;
		padding: 8px 16px;
		background-color: #1B9CFC;
	}
/* team ends */

/* products */
	#products
	{
		scroll-margin-top: 100px;
	}

	.products
	{
		padding: 50px;
		text-align: center;
	}

	.product-container
	{
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		grid-gap: 20px;
	}

	.product-container a
	{
		text-decoration: none;
		color: black;
	}

	.product-box
	{
		width: 100%;
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	}

	.product-box img
	{
		width: 100%;
		height: 300px;
		object-fit: cover;
	}

	.product-box-info
	{
		padding: 11px 11px;
	}
/* products end */

/* services */
	.services
	{
		background-color: #BDC581;
		padding: 50px;
	}

	.service-container
	{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 20px;
	}

	.service-box
	{
		background-color: white;
		padding: 20px 20px;
		border-radius: 13px;
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	}

	.service-box-header
	{
		font-size: 1.5rem;
		font-weight: 800;
		text-align: center;
		margin-bottom: 10px;
	}
/* services end */

/* sell to us */
	.sell-to-us
	{
		padding: 50px;
	}

	.form-container
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 20px;
		align-items: start;
	}

	.form-box
	{
		padding: 20px 20px;
		width: 100%;
	}

	.form-responsive
	{
		padding: 10px 15px;
		border: 2px solid #BDC581;
		border-radius: 5px;
		width: 100%;
		margin-top: 5px;
	}

	.form-box .ta
	{
		border: 2px solid #BDC581;
		border-radius: 5px;
		margin-top: 5px;
		width: 100%;
		padding: 10px 15px;
	}

	.msg-btn
	{
		border: none;
		border-radius: 3px;
		padding: 8px 14px;
		background-color: #BDC581;
	}
/* sell to us ends */

/* footer */
	#footer
	{
		scroll-margin-top: 100px;
	}

	.footer-cover
	{
		padding: 50px;
		background-color: #BDC581;
	}

	.footer-container
	{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 20px;
	}

	.footer-title
	{
		font-size: 1.5rem;
		font-weight: 400;
		margin-bottom: 20px;
	}

	.footer-box
	{
		width: 100%;
	}

	.footer-box p
	{
		display: flex;
		align-items: center;
		margin: 5px 0;
	}

	.footer-box .work
	{
		width: 10%;
		height: 40px;
		margin-right: 5px;
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
		border-radius: 13px;
		padding: 5px;
	}

	.go-up
	{
		position: fixed;
		width: 3%;
		right: 0;
		top: 80%;
		margin-right: 30px;
		height: 45px;
	}

	.footer-box iframe
	{
		width: 300px;
		height: 300px;
	}

	.footer-cover hr
	{
		margin-top: 20px;
	}
/* footer ends */

/* page responsiveness */
	@media screen and (max-width: 768px)
	{
		/* header */
			.checkbtn
			{
				display: block;
				order: 1;
				margin-right: 10px;
			}

			header ul
			{
				position: fixed;
				top: 120px;
				right: -100%;
				background-color: #BDC581;
				width: 20%;
				height: 50vh;
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: center;
				transition: all 0.3s;
			}

			header ul li
			{
				margin: 20px 0;
			}

			header ul li a
			{
				font-size: 13px;
				color: black;
			}

			header ul li a:hover
			{
				color: black;
			}

			#check:checked ~ ul
			{
				right: 0;
			}
		/* header ends */

		/* team */
			.team-container
			{
				grid-template-columns: repeat(2, 1fr);
			}
		/* team ends */

		/* products */
			.product-container
			{
				grid-template-columns: repeat(3, 1fr);
			}
		/* products end */

		/* footer */
			.footer-container
			{
				grid-template-columns: repeat(2, 1fr);
			}
		/* footer ends */

		/* about page */
			.back
			{
				width: 5%;
			}
		/* about page ends */
	}

	@media screen and (max-width: 425px)
	{
		/* header */
			header .logo
			{
				height: 70px;
			}
		/* header ends */

		/* about */
			.about
			{
				padding: 20px;
			}
		/* about ends */

		/* team */
			.team
			{
				padding: 20px;
			}

			.team-container
			{
				grid-template-columns: repeat(1, 1fr);
			}
		/* team ends */

		/* products */
			.products
			{
				padding: 20px;
			}

			.product-container
			{
				grid-template-columns: repeat(1, 1fr);
			}
		/* products end */

		/* services */
			.services
			{
				padding: 20px;
			}

			.service-container
			{
				grid-template-columns: repeat(2, 1fr);
			}
		/* services end */

		/* sell to us */
			.sell-to-us
			{
				padding: 20px;
			}

			.form-container
			{
				grid-template-columns: repeat(1, 1fr);
			}
		/* sell to us ends */

		/* about page */
			.back
			{
				width: 7%;
			}
		/* about page ends */

		/* plastic scrap page */
			.plastic-scrap
			{
				grid-template-columns: repeat(2, 1fr);
			}
		/* plastic scrap page ends */
	}

	@media screen and (max-width: 320px)
	{
		/* products */
			.product-container
			{
				grid-template-columns: repeat(1, 1fr);
			}
		/* products end */

		/* services */
			.service-container
			{
				grid-template-columns: repeat(1, 1fr);
			}
		/* services end */

		/* plastic scrap page */
			.plastic-scrap
			{
				grid-template-columns: repeat(1, 1fr);
			}
		/* plastic scrap page ends */
	}
/* page responsiveness ends */