/* Constant stylesheet across the website */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    overflow-x: hidden;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
    font-family: Verdana, Geneva, Tahoma, sans-serif
}
a {
    text-decoration: none;
    color: inherit;
}

/* Color List:
#f3fafb - Off-white
#35b0aa - Teal
#308da0 - Darker teal
*/

/* Header + navigation */
header {
    background-color: #f3fafb;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
header div {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
header > a {
    margin-left: 10px;
}
header input[type="search"] {
    padding: 10px;
    border: 3px solid #35b0aa;
    margin: 0px 30px;
    width: 400px;
    height: 45px;
    border-radius: 50px;

}
header img[src="Images/cart.png"], header img[src="../Images/cart.png"] {
    padding: 5px;
    margin-right: 10px;
    height: 40px;
    width: 40px;
    background-color: #35b0aa;
    border-radius: 5px;
}
header img[src="Images/cart.png"]:hover {
    cursor: pointer;
    background-color: #308da0;
}

nav {
    display: flex;
    justify-content: space-around;
    background-color: #35b0aa;
    flex-wrap: nowrap;
}
nav a {
    width: 25%;
    padding: 10px;

    text-align: center;
    color: white;
    text-decoration: none;
}
nav a:hover {
    background-color: #308da0;
    cursor: pointer;
}
p {
    font-size: 20px;
}
h2 {
    text-align: center;
    font-size: 50px;
    width: 100%;
    padding: 5px;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #35b0aa;
    padding: 20px 10px;
    margin-top: 20px;
}
footer p {
    color: white;
    font-size: 14px;
}

/* -- Home Page Exclusive Stuff Bellow -- */

/* Addvertisement */
#advertisement {
    display: block;
    width: 80%;
    margin: 10px auto;
    box-shadow: 0px 0px 15px rgb(179, 179, 179);
}

/* Example Products */
#exampleProductsContainer {
    display: flex;
    flex-wrap: nowrap;
    width: 80%;
    margin: 10px auto;
}
#exampleProductsContainer > div {
    width: 25%;
    padding: 10px;
    text-align: center;
}

.exampleProductItem, #viewMoreItems {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 25%;
    padding: 10px;
    margin: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 15px rgb(179, 179, 179);
}
.exampleProductItem img {
    width: 200px;
    height: auto;
}

h3 {
    text-align: center;
    font-size: 26px;
    margin: 5px 0;
}
.USDprice {
    color: grey;
    text-align: center;
    margin-top: 5px;
}
.diamondPrice {
    color: #24c7e0;
    text-align: center;
    margin-top: 2px;
}

.viewItemPageButton {
    background-color: white;
    margin-top: 10px;
    padding: 10px;
    width: 80%;
    text-align: center;
    border-radius: 2px;
    color: #35b0aa;
    border: 2px solid #35b0aa;
}
.viewItemPageButton:hover {
    cursor: pointer;
    background-color: #dbe7e8;
}
.addToCartButton {
    background-color: #35b0aa;
    margin: 10px 0;
    padding: 10px;
    width: 80%;
    text-align: center;
    border-radius: 2px;
    color: white;
    border: 2px solid #308da0;

}
.addToCartButton:hover {
    cursor: pointer;
    background-color: #308da0;
}
#viewMoreItems {
    color: #35b0aa;
    font-size: 40px;
}
#viewMoreItems:hover {
    cursor: pointer;
    background-color: #eaf2f3;
}




/* About Me Blurb */
#aboutContainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#aboutContainer > div {
    width: 80%;
    padding: 10px;
    background-color: white;
    box-shadow: 0px 0px 15px rgb(179, 179, 179);
}
#aboutContainer > div > div {
    display: flex;
    flex-wrap: nowrap;
    text-align: center;
    padding: 0 10px 10px 10px;
}
#aboutContainer p {
    margin: 0 50px;
}
#aboutContainer a {
    background-color: #35b0aa;
    margin: 10px auto;
    padding: 10px;
    width: 30%;
    text-align: center;
    border-radius: 2px;
    color: white;
    border: 2px solid #308da0;
    display: block;
}
#aboutContainer a:hover {
    background-color: #308da0;
}

/* Form */
#formContainer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
form {
    display: flex;
    background-color: white;
    box-shadow: 0px 0px 15px rgb(179, 179, 179);    
    flex-wrap: wrap;
    width: 80%;
    padding: 10px;
    margin: 13px;
}
form p, form label {
    width: 100%;
    padding: 5px 10px;
    font-size: 20px;
}
form span {
    color: red;
}
input, textarea, button {
    width: 100%;
    padding: 10px;
    margin: 10px;

    border: 2px solid #35b0aa;
    border-bottom: 4px solid #35b0aa;
    border-radius: 5px;
    font-size: 14px;
}
textarea {
    height: 150px;
    resize: none;
}
#nameInputs {
    display: flex;
    flex-wrap: nowrap;
    width: 100%
}
form button {
    background-color: #7ce4d6;
    color: black;
    font-size: 18px;
    padding: 10px;
}
form button:hover {
    cursor: pointer;
    background-color: #4eccbb;
}
form button:active {
    cursor: pointer;
    background-color: #35b0aa;
    border: 2px solid #26918f;
    border-bottom: 4px solid #26918f
}


/* uh oh! (aka I ran out of time and didn't want to make pages for each item) */
#uhohContainer {
    width: 60%;
    margin: auto;
    text-align: center;
}
#uhohContainer * {
    margin-top: 10px;
}