:root {
  --primary-color: #f4ea4c;
  --secondary-color: #5d4037;
  --white: #fff;
  --black: #111;
  --grey-01: #616161;
  --grey-02: #9e9e9e;
  --grey-03: #e0e0e0;
  --white-grey: #f5f5f5;
}

/* FONT DECLARE */
@font-face {
  font-family: "OCR-A";
  src: url("./fonts/OCR\ A\ regular.ttf");
}
@font-face {
  font-family: "Akzidenz-grotesk";
  src: url("./fonts/Akzidenz-grotesk-bold.ttf");
}

/* COMMON STYLE */
* {
  margin: 0;
  padding: 0;
  font-family: "OCR-A";
}

p {
  text-align: center;
}

a {
  color: var(--white);
}
ul {
  list-style: none;
}

h2 {
  font-family: "Akzidenz-grotesk";
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.42em;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 700px) {
  h2 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  h2 {
    font-size: 26px;
  }
}

/* PAGE STYLE */
body {
  display: flex;
  flex-direction: column;

  height: 100vh;
  width: 100vw;
  overflow: hidden;

  background-image: url("img/pixel-01.png");
  background-position: bottom;
  background-size: cover;

  color: var(--white);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 32px;
  }
}

/* BANNER SECTION STYLE */
.banner {
  position: relative;
  flex: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner h2 {
  position: absolute;
  top: 44px;
}
@media screen and (max-width: 700px) {
  .banner h2 {
    font-size: 12px;
  }
}

#logo {
  position: absolute;
  /* z-index: -1; */
  bottom: 0;
  max-width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 700px) {
  #logo {
    height: unset;
    max-width: 100%;
  }
}
@media screen and (max-height: 780px) and (min-width: 1024px) {
  #logo {
    height: 250%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1440px) {
  #logo {
    max-width: 100%;
  }
}

/* SHOP SECTION STYLE */
.shop-section {
  flex: 2;
}

@media screen and (min-width: 1024px) {
  .shop-section {
    flex: 1;
  }
}

.shop-section h2 {
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .shop-section h2 {
    margin-bottom: 36px;
  }
}

.shop-list {
  display: grid;
  grid-template-columns: 1fr;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 24px;
  justify-items: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .shop-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .shop-list {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 14px;
  }
}

/* SHOP ITEM STYLE */
.shop-item {
  width: unset;
  text-align: center;
  padding: 4px;
}

.shop-item:hover {
  background-color: var(--black);
}

@media screen and (min-width: 1024px) {
  .shop-item {
    width: 47ch;
    text-align: left;
  }
}
@media screen and (min-width: 1440px) {
  .shop-item {
    width: 44ch;
  }
}

/* SHOP LINK STYLE */
a.shop-link {
  color: var(--white);
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

a.shop-link:visited {
  color: var(--white);
}

@media screen and (min-width: 700px) {
  a.shop-link {
    font-size: 22px;
  }
}

@media screen and (min-width: 1024px) {
  a.shop-link {
    padding-left: 32px;
  }

  a.shop-link::before {
    content: "";
    position: absolute;
    left: 4px;
    height: 10px;
    width: 10px;
    background-color: #fff;
    transform: translateY(50%);
  }
}
@media screen and (min-width: 1440px) {
  a.shop-link {
    font-size: 20px;
  }
}

/* FOOTER STYLE */
footer {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;

  width: 100%;
  padding-bottom: 16px;
  margin-top: 20px;
}
.copyright {
  font-family: "Akzidenz-grotesk";

  font-size: 12px;
  text-align: center;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  footer {
    padding-bottom: 20px;
  }
  .copyright {
    font-size: 14px;
  }
}
