/********w*************

    Do not alter this comment block.
    Only fill out the information below.

    Project 4
    Name: Oscar Rosales
    Date: 04.17.2024
    Description: Website for an automotive detailing business "Spark Detailing"

*********************/

/* IMPORT GOOGLE FONT */
@import url('https://fonts.googleapis.com/css?family=Montserrat');

html,
body,
section,
p,
header,
nav,
footer,
div,
article,
aside,
ol,
ul,
li,
h1,
h6 {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat';
	color: #FFFFFF;
}

body {
	background-color: black;
	min-height: 100vh;
}

.page-title {
	margin-left: 20%;
}

/* HEADER STYLING */
.header {
	margin: auto;
	text-align: center;
}

.logo {
	width: 200px;
}

.container {
	position: relative;
	min-height: 100vh;
}

.content {
	padding-bottom: 2%;
}

.userCtrl {
	font-weight: lighter;
	font-size: 16px;
	text-decoration: none;
	position: absolute;
	top: 180px;
	right: 20%;
}

/* NAV STYLING */
.navbar {
	background-image: linear-gradient(to right, #FFDE59, #FF914D);
	border-radius: 15px;
	width: 90%;
	margin: auto;
	text-align: center;
	margin-bottom: 20px;
	z-index: 50;
	justify-content: center;
}

	.navbar ul {
		list-style-type: none;
	}

		.navbar li {
			display: inline-block;
			font-size: 22px;
			font-weight: bold;
			justify-content: center;
			margin: auto;
			text-align: center;
			padding-left: 25px;
			padding-right: 23px;
		}

			.navbar li a {
				display: block;
				text-decoration: none;
				color: #FFFFFF;
			}

			.navbar ul li a:hover, #nav ul li a:focus {
				color: #FF914D;
			}

	.navbar ul ul {
		position: absolute;
		display: none;
		background-color: #f7711e;
		z-index: 1;
	}

	.navbar ul ul li a:hover, #nav ul ul li a:focus {
		color: #ecd8c2;
	}

		.navbar ul ul li a {
			font-size: 16px;
			font-weight: normal;
		}

		.navbar ul ul li {
			display: block;
		}

		.navbar li:hover ul {
			display: block;
		}

/* MAIN STYLING */
.content {
	width: 90%;
	margin: auto;
	border: 1px solid white;
	padding: 10px;
}

a {
	text-decoration: none;
	color: white;
}

.editBtn {
	color: #FF914D;
	background-color: transparent;
	border: none;
}

	.editBtn:hover {
		color: #FFDE59;
	}

.about {
	text-align: center;
	margin: auto;
	margin-top: 2%;
	width: 70%;
	font-size: 20px;
}

.figures {
	text-align: center;
}
	.figures figure {
		display: inline-block;
		padding: 1%;
	}

	.figures img {
		height: 300px;
		outline: 3px solid white;
		outline-offset: 4px;
		outline-style: double;
		border-radius: 5px;
	}

	.figures figcaption {
		font-weight: bold;
		font-size: 20px;
	}

.item {
	margin: auto;
	width: 60%;
	text-align: center;
	padding: 1%;
	border-bottom: 2px solid white;
}

.item-full {
	width: 80%;
	border: none;
}

.item-product {
	margin: auto;
	width: 40%;
	text-align: center;
	padding: 1%;
	border-bottom: 2px solid white;
}

.item-product p {
	font-size: 15px;
}

.item img {
	width: 80%;
	padding: 1%;
}

.review-img {
	width: 400px;
}

.full-review {
	margin-left: 20%;
	margin-right: 20%;
}

.full-review img {
	width: 1000px;
}

.toUpper {
	text-transform: uppercase;
}

.error {
	color: red;
}

.success {
	color: green;
}

.password {
	-webkit-text-security: disc;
}

.register-form {
	text-align: center;
}

.inlineBlock {
	display: inline-block;
	width: 40%;
}

.new-item-form {
	margin-left: 20%;
	margin-right: 20%;
}

/* FOOTER STYLING */
footer {
	width: 100%;
	margin: auto;
	text-align: center;
	position: static;
	bottom: 0;
	background-color: #373737;
	height: 2%;
}

	footer nav ul {
		display: inline-block;
		padding: 7px;
	}

		footer nav ul li {
			display: inline;
			padding-left: 50px;
			padding-right: 50px;
			font-size: 10px;
			font-weight: bold;
		}

			footer nav ul li a {
				text-decoration: none;
				color: #ab6913;
			}

			footer nav ul li a:hover, #footer nav ul li a:focus {
				color: #FF914D;
			}