/* cool advanced stuff */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

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;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
	background-color: black;
}

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;
}


/* Actual Styles */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
	color: white;
	text-decoration: none;
	font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-weight: bold;
	font-size: 20px;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 40px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-align: center;
}

header {
	background-color: black;
	position: sticky;
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap:wrap;
	justify-content: space-evenly;
}

* {color: white;}


#logo img {
	grid-area: TitleLogo;
}

#logo h2 {
	grid-area: TitleName;
	color: rgb(236, 165, 55);
	font-size: 30px;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

#logo h2 div {
	color: rgb(237, 28, 36);
	font-size: 20px;
}

#logo {
	display: grid;
	grid-template-areas: "TitleLogo TitleLogo TitleName TitleName";
	gap: 0px;
	align-items: center;
	width: auto;
}

#navlinks {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	margin-left: auto;
	align-items: center;
	flex-wrap:wrap;
	width: 30%;
}

#navlinks * {
	padding: 5%;
	width: auto;
	height: 30px;
}

#search {
	background-color: rgb(25, 25, 25);
	border: 2px white solid;
	border-radius: 10px;
	display: flex;
	flex-direction: row;
	margin-left: auto;
	align-items: center;
	flex-wrap:wrap;
	width: 30%;
}

#search input {
	background: none;
	border: 0px;
	width: 80%;
	height: 30px;
	font-size: 125%;
	font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
#search svg {
	height: 30px;
	width: 10%;
}

#search input::placeholder, #search input:focus {
	color: white;
	outline: none;
}

#banner {
	width: 100%;
	height: auto;
	padding: 0px;
	margin: 0px;
	border-bottom: 5px solid black;
}

#HomeLinks {
	width: 100%;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-align: center;
	font-size: 2em;
}

#HomeLinks > a {
	text-decoration: none;
}

#CategoryHolder {
	border: 3px solid white;
	margin: 2.5%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 20px;
	padding: 20px;
}

.CategoryImage {
	position: relative;
	width: 100%;
	min-height: 500px;
	border: 3px solid white;
	overflow: hidden;
	color: white;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.3);
}

.CategoryImage .bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: blur(5px);
	transform: scale(1.1);
	z-index: 0;
}

.CategoryImage::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	z-index: 1;
}

.CategoryImage h2 {
	position: relative;
	z-index: 2;
	font-size: 25px;
	margin-top: 50%;
	font-family: "Archivo Black", sans-serif;
}

.Category {
	width: 15%;
}

.Category:hover {
	transform: scale(1.05);
}

header {
	position: sticky;
	top: 0px;
	z-index: 10000000;
}

#AboutArticle {
	display: grid;
	grid-template-areas:
	"AboutParagraph AboutParagraph"
	"ContactForm ContactMaps"
	;
}

#AboutArticle div {
	padding: 10px;
	border: 3px solid white;
}

.ContactField {
    width: 100%;
    background: #000;
    border: none;
    border-radius: 6px;
    padding: 10px;
    margin-top: 6px;
    margin-bottom: 16px;
    color: #fff;
	border: 2px solid white;
	box-sizing: border-box;
}
input::placeholder, textarea::placeholder {
    color: #777;
    font-weight: 600;
}
input[type="submit"] {
    background: rgb(20, 20, 20);
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}
input[type="submit"]:hover {
    transform: scale(1.01);
}
label {
	font-size: 20px;
}

.ContactInfo {
	padding: 7px;
}

#ContactForm {
	margin-top: 20px;
}

#map {
	height: auto;
}

#CartItems {
	border: 5px solid white;
	padding: 10px;
	border-radius: 10px;
}

/* Cart Item Styles */
.cart-item {
	display: flex;
	align-items: flex-start;
	position: relative;
	background-color: rgb(20, 20, 20);
	border: 2px solid white;
	border-radius: 5px;
	padding: 15px;
	margin: 10px 0;
	gap: 15px;
	transition: 0.2s ease-in-out;
}

.cart-item:hover {
	transform: scale(1.01);
	background-color: rgb(35, 35, 35);
}

.cart-image {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 2px;
	border: 2px solid white;
}

.cart-details {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	flex: 1;
}

.cart-name {
	font-size: 1.4em;
	font-weight: bold;
	color: rgb(236, 165, 55);
}

.cart-quantity {
	font-size: 1.1em;
	color: white;
}

.cart-price {
	font-size: 0.9em;
	color: rgb(200, 200, 200);
}

.cart-remove {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 1.5em;
	color: rgb(237, 28, 36);
	cursor: pointer;
	transition: 0.2s ease;
}

.cart-remove:hover {
	color: white;
}

textarea {
	resize: vertical;
}

#Copyright, #SocialMedia {
	display: inline;
}

#SocialMedia {
	float: right;
}

footer {
	margin-top: 20px;
	position: sticky;
	bottom: 0px;
	background-color: black;
	padding: 5px;
	border: 2px solid white;
}