@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Comfortaa:wght@300;400;600;700&family=Inter:wght@100;500;900&family=Lato:wght@100;400;700&family=Montserrat:wght@100;400;500&family=Noto+Sans+Display:wght@100;400;600&family=Righteous&family=Roboto+Mono:wght@100;400;600&family=Teko:wght@400;600;700&display=swap');

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
	margin: 0px;
}

ul {
  list-style-position: inside;
}

.bold {
	font-weight: bold;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 18px;
  color: rgb(238, 200, 119);
  border: 2px solid rgb(193, 163, 98);
  border-radius: 34px;
  background-color: transparent;
  transition: 0.8s;
  font-weight: 600;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

button::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: rgb(193, 163, 98);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

button:hover::before {
  scale: 3;
}

button:hover {
  color: #212121;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(193, 163, 98,0.4);
  background-color: rgb(193, 163, 98);
}

button:active {
  scale: 0.95;
}


/* Navbar */
.navbar {
	z-index: 1000;
  position: fixed;
  text-align: center;
	top: -1px;
	width: 100%;
	height: 60px;
/* 	height: 8%; */
	margin-bottom: 20px;
	vertical-align: middle;
	background-color: rgb(193, 163, 98);
/* 	opacity: 1; */
}

img.banner {
	margin-top: 2px;
	margin-left: 2px;
	width: auto;
	height: 55px;
	margin-right: 13px;
	opacity: 1;
	transition: 0.5s;
	vertical-align: middle;
}

img.banner:hover {
	opacity: 0.6;
	transition: 0.5s;

}

.navBarIcon {
	color: #4c00ff;
	transition: 0.5s;
	opacity: 1;
	transition: 0.5s;
	vertical-align: middle;
	height: 37px;
	width: auto;
	margin-right: 7px;
}

.navBarIcon:hover {
	color: #00aaff;
	transition: 0.5s;
	opacity: 0.6;
	transition: 0.5s;
}

@media screen and (max-width: 690px) {
	.navbarIcon {margin-right: 15px;}
	.navbar {text-align: center;}
}

/* Footer */
div.footer {
	margin-bottom: 50px;
}

footer.footer {
	margin: 10px;
	margin-top: 500px
}

span.footer {
	font-family: "Inter";
}

/* Home page */
div.homepage {
	margin-top: 80px;	
	text-align: center;
}

/* Card */
div.card {
	display: inline-block;
  box-shadow: 15px 15px 30px #bebebe, -15px -15px 30px #ffffff;
  transition: 0.3s;
 	width: 245px;
  height: auto;
	text-align: center;
  margin: auto;
	margin-left: 10px;
	margin-right: 10px;
  font-family: arial;
	border-radius: 20px;
  transition: 0.3s;
	margin-bottom: 25px;
	opacity: 1;
  vertical-align: middle;
}

div.card:hover, .div.card:focus, .div.card:active {
 box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
  transition: 0.3s;
	border-radius: 30px;
  transition: 0.3s;
}

img.card {
	width: 100%;
	height: auto;
	/* border-radius: 13px; */
  border-top-left-radius: 20px;
  transition: 0.3s;
  border-top-right-radius: 20px;
  transition: 0.3s;
	border-bottom-width: 7px;
	border-color: black;
	box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0);
}

img.card {
  border-top-left-radius: 30px;
  transition: 0.3s;
  border-top-right-radius: 30px;
  transition: 0.3s;  
}

h3.card {
	font-family: "Inter";
	margin-top: 5px;
	margin-bottom: 5px;
	color: black;
}

h4.card {
	font-family: "roboto mono";
	margin-left: 5px;
	margin-right: 5px;
	color: black;
	margin-bottom: 20px;
}

/* 404 */
.pageNotFound {
	margin-top: 80px;
	text-align: center;
	font-family: "Inter";
}

h1.pageNotFound {
	margin-bottom: -50px;	
}

img.pageNotFound {
	margin-top: 10px;
	width: 180px;
	height: auto;
	border-radius: 10px;
}

/* Product Page */
.product {
	text-align: center;
	font-family: "Inter";
}

div.product {
	margin-top: 80px;
}

br.product {
	margin-top: 30px;
	margin-bottom: 15px;
}

button.product {
	width: 120px;
	transition: 0.4s;
	height: 40px;
	transition: 0.4s;
	/* background: linear-gradient(101.11deg, #006eff 41.79%, rgba(173, 0, 255, 0.4) 106.02%); */
	background-color: blue;
	box-shadow: 1px 3px 7px 2px rgba(255, 255, 255, 0.2);
	transition: 0.5s;
	border-radius: 10px;
	border: none;
	color: white;
	margin-left: 20px;
	font-family: "Montserrat";
	margin-bottom: 15px;
}

button.product:hover {
	box-shadow: 1px 3px 7px 2px rgba(255, 255, 255, 0.4);
	transition: 0.5s;
	cursor: pointer;
	opacity: 0.7;
	transition: 0.5s;
	width: 125px;
	transition: 0.4s;
	height: 45px;
	transition: 0.4s;
}


span.product {
  padding-left: 60px;
  padding-right: 30px;
}

img.product {
	margin-bottom: 15px;
	border-radius: 15px;
  height: 450px;
  width: auto;
}

img.product-rules {
  height: 39px;
  width: auto;
}

img.product-sizing {
  height: 270px;
  width: auto;
}

/* Collections */
section.collection {
  text-align: center;
  width: 100%;
  height: 800px;
  background: url(images/priceless-collection.jpeg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: grid;
  align-items: center;
  justify-content: center;
  border-bottom: 8px solid black;
}

h1.collection {
  background-color: rgb(193, 163, 98);
  color: none;
  font-family: "Teko";
  font-size: 50px;
}

button.collection {
  font-family: "Teko";
  display: initial;
}