/*FONTS=========================*/

@import url("https://fonts.googleapis.com/css2?family=Babylonica&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

h1 {
  font-family: "Babylonica", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  text-align: center;
  color: #333333;
}

h2 {
  font-family: "Babylonica", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #333333;
}

h3 {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 35px;
  text-align: center;
  color: #333333;
}
/* p {
  color: #333333;
} */

.babylonica-regular {
  font-family: "Babylonica", cursive;
  font-weight: 400;
  font-style: normal;
}
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/*BASE STYLES===============================================*/
html {
  margin: auto;
  font-family: "Lato";
}
body {
  margin: 0;
}
a {
  text-decoration: none;
}
a:link {
  color: #4d4c4c;
}
a:hover {
  color: #c2262e;
}
a:visited {
  color: #8b1212;
}
.working {
  background-color: #c2262e;
  color: #e5e5e5;
  padding: 5px;
}
/*HEADER====================================================*/
.header {
  background-color: #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header img {
  padding: 10px;
}
.icons img {
  width: 30px;
}
@media screen and (max-width: 480px) {
  .logo {
    width: 120px;
    margin-left: 25px;
  }
}
@media screen and (min-width: 480.1px) {
  .logo {
    width: 180px;
    margin: auto;
  }
}
/*MENU===============================================*/
#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: relative;
  top: -16px;
  left: 20px;

  width: 26px;
  height: 26px;

  cursor: pointer;
  z-index: 100;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;

  width: 26px;
  height: 2px;

  background-color: #e5e5e5;

  transition-duration: 0.25s;
}
.menu__btn > span::before {
  content: "";
  top: -8px;
}
.menu__btn > span::after {
  content: "";
  top: 8px;
}

.menu__box {
  display: block;
  position: absolute;
  visibility: hidden;
  top: 0;
  left: -100%;
  z-index: 10;
  width: 250px;
  height: 100%;

  margin: 0;
  padding: 80px 0;

  list-style: none;

  background-color: white;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);

  transition-duration: 0.25s;
}

.menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 24px;

  color: #333333;

  font-family: "Lato", serif;
  font-weight: 400;
  font-style: normal;

  text-decoration: none;

  transition-duration: 0.25s;
}
.menu__item button {
  width: 200px;
  height: 40px;
  background-color: #e5e5e5;
  border-radius: 10px;
  border-width: 0;
  text-align: left;
  color: #333333;

  font-family: "Lato", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}
.menu__item button:hover {
  background-color: #c2262e;
  color: #e5e5e5;
}

.menuimg {
  width: 200px;
}
/* CARDS================================================= */
.navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.navcard {
  background-color: #e5e5e5;
  width: 300px;
  height: 380px;
  text-align: center;
  border-radius: 10px;
  margin: 5px;
}
.navcard p {
  height: 150px;
  width: 200px;
  font-size: 20px;
  margin: auto;
  padding-bottom: 40px;
}
.navcard button {
  background-color: #c2262e;
  color: #e5e5e5;
  border-radius: 20px;
  border-width: 0;
  width: 200px;
  height: 40px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}
.navcard button:hover {
  transform: scale(110%);
}
/* -------------------------------------------------- */
.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 75%;
  margin: auto;
}
.catecard {
  width: 340px;
  height: 160px;
  border: solid;
  border-color: #333333;
  border-width: 1px;
  border-radius: 35px;
  display: flex;
  margin-top: 20px;
  color: #333333;
}
/* ADD BACK IN WHEN WORKING LINKS =========================================
 .catecard:hover {
  background-color: #c2262e;
  color: #e5e5e5;
} */

.catecard img {
  width: 127px;
  height: 127px;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
}
.showtext {
  text-align: center;
  margin: auto;
}
.worktext {
  text-align: center;
  margin: auto;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 25px;
  width: 160px;
}
/* FIX ^^^^ cards not shrinking in smaller screen states like shows do */
/* SHOP ================================================= */
.shopheader {
  margin: 0;
}
.shopinfo {
  margin: auto;
  max-width: 590px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  text-align: center;
}
.shopcontact p {
  font-weight: 300;
  text-align: center;
}
.shopdetails {
  background-color: #e5e5e5;
  border-radius: 20px;
  text-align: center;
  padding: 15px;
}
.shopinfo button {
  background-color: #c2262e;
  color: #e5e5e5;
  border-radius: 20px;
  border-width: 0;
  width: 200px;
  height: 40px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}
.shopinfo button:hover {
  transform: scale(110%);
}
.shopitems {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.shopcard {
  width: 350px;
  height: 240px;
  border: solid;
  border-color: #333333;
  border-width: 1px;
  border-radius: 35px;
  display: flex;
  margin: 20px;
  color: #333333;
}
.shopcard img {
  object-fit: cover;
  margin: auto;
  filter: drop-shadow(6px 4px 4px #4d4c4c);
}
@media screen and (max-width: 390px) {
  .shopcard img {
    width: 150px;
    height: 150px;
  }
}
@media screen and (min-width: 390.1px) {
  .shopcard img {
    width: 185px;
    height: 185px;
  }
}
.shoptext {
  text-align: center;
  margin: 0;
  padding: 10px;
  background-color: #e5e5e5;
  width: 114px;
  border-radius: 0 35px 35px 0;
}
.shoptext p {
  margin: 0;
}
.shoptext ul {
  text-align: left;
  font-weight: 300;
  list-style-type: circle;
}
.disclaimer {
  font-weight: 300;
  font-style: italic;
  text-align: center;
  margin: auto;
  width: 500px;
}
/* CONTACT=============================================== */
.contactheader {
  margin: 0;
}
.contact {
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
  align-items: center;
  padding: 0;
  justify-content: space-between;
}
.aboutme {
  max-width: 830px;
  padding: 30px;
  line-height: 30px;
  margin-left: 10px;
}

.contactinfo {
  background-color: #e5e5e5;
  max-width: 335px;
  line-height: 40px;
}
.contactinfo ul {
  list-style: none;
}
@media screen and (max-width: 360px) {
  .contactinfo {
    padding: 5px;
  }
}
@media screen and (min-width: 360.1px) {
  .contactinfo {
    padding: 40px;
  }
}
/*FOOTER==================================================*/
.footer img {
  width: 90px;
}
.footer {
  width: 200px;
  margin: auto;
  text-align: center;
  padding-top: 60px;
}
.footer p {
  font-weight: 300;
}

/* FIX =====================
-hamburger menu header
-shows catecards need to be <a>
-works catecards not shrinking in smaller screen (shows are though)
-center header wordmark
-add fill effect to buttons
-add works and shows pages */
