* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.head {
  min-height: 7.7rem;
  background-color: white;
  z-index: 1000;
  border-bottom: 0.0625rem solid rgb(214, 214, 214);
  position: fixed;
  top: 0;
  width: 100%;
}

.headerTop {
  display: flex;
  align-items: center;
  margin: 1rem;
  gap: 1rem;
}

.headerTop>* {
  flex: 1;
  display: flex;
  align-items: center;
}

.langRegion {
  font-size: 0.75rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.logo {
  justify-content: center;
}

.logo img {
  height: 2.5rem;
}

.tools {
  justify-content: flex-end;
  gap: 1rem;
}

.tools img {
  height: 1.2rem;
}

.langRegion p,
.navList li,
.tools img,
.item img,
.item p:first-of-type,
.showcaseText p:first-child,
.extend,
.corporate li {
  cursor: pointer;
}

.langRegion p:hover,
.navList li:hover,
.item p:first-of-type:hover,
.showcaseText p:first-child:hover,
.corporate li:hover {
  text-decoration: underline;
}

.navList,
.corporate ul {
  list-style: none;
  padding: 0;
}

.navList {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.navList li:hover {
  font-weight: bold;
}

/* MAIN BODY */
.mainBody {
  margin-top: 7.7rem;
}

.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  height: calc(100vh - 7.7rem);
  min-height: 40rem;
  background-color: white;
}

.showcase img {
  width: 100%;
  height: 100%;
}

.showcase img:first-child {
  object-fit: cover;
  object-position: top;
}

.showcase img:nth-child(2),
.showcase img:nth-child(3) {
  object-fit: contain;
}

.showcaseText {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
}

.showcaseText p:first-child {
  font-family: "Gentium Book Plus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newArrivals {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newSection {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.newsText {
  margin-bottom: 1rem;
}

.gallery,
.foot {
  border: 0.0625rem solid rgb(214, 214, 214);
}

.gallery {
  height: 30rem;
  display: inline-flex;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
}

.item {
  width: 17.5rem;
  height: 100%;
  border-right: 0.0625rem solid rgb(214, 214, 214);
  display: flex;
  flex-direction: column;
}

.item img {
  width: 100%;
  height: 18rem;
  object-fit: contain;
}

.item p {
  margin: 0.625rem;
  font-size: 0.875rem;
}

.item p:first-of-type,
.newsText,
.corporate p {
  font-weight: bold;
}

.item p:first-of-type {
  text-transform: uppercase;
}

.item p:last-of-type {
  font-size: 0.75rem;
  flex: 1;
  overflow: hidden;
}

.item,
.extend {
  flex-shrink: 0;
}

.extend {
  width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s;
}

.extend:hover {
  background-color: rgb(240, 240, 240);
}

.extend img {
  width: 2rem;
  height: 2rem;
}

/* FOOTER */
.foot {
  min-height: 25rem;
  position: relative;
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.about {
  margin: 2rem;
  position: absolute;
  bottom: 0;
  font-size: 0.75rem;
}

.corporate {
  margin: 2rem;
  display: flex;
  gap: 2rem;
}

.corporate>div {
  flex: 1;
  min-width: 15.625rem;
}

.corporate ul {
  line-height: 1.5;
  margin: 1rem 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .head {
    min-height: auto;
  }

  .headerTop {
    margin: 0.5rem;
    gap: 0.5rem;
  }

  .langRegion {
    font-size: 0.625rem;
  }

  .logo img {
    height: 2rem;
  }

  .tools img {
    height: 1rem;
  }

  .navList {
    padding: 0.5rem 0;
    gap: 1rem;
    font-size: 0.75rem;
  }

  .mainBody {
    margin-top: 5rem;
  }

  .showcase {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 5.5rem);
    min-height: calc(100vh - 5.5rem);
  }

  .showcase img:first-child {
    object-fit: contain;
    object-position: top center;
  }

  .showcase img:nth-child(2),
  .showcase img:nth-child(3) {
    display: none;
  }

  .showcaseText {
    inset: auto 1rem 1rem 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
  }

  .showcaseText p:first-child {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .showcaseText p:last-child {
    font-size: 0.875rem;
  }

  .newArrivals,
  .corporate,
  .about {
    margin: 1rem;
  }

  .newSection {
    margin-bottom: 2rem;
  }

  .gallery {
    height: 25rem;
  }

  .item {
    width: 15rem;
  }

  .item img {
    height: 14rem;
  }

  .extend {
    width: 6rem;
  }

  .foot {
    min-height: auto;
  }

  .corporate {
    flex-direction: column;
    gap: 1.5rem;
  }

  .corporate>div {
    min-width: 100%;
  }

  .about {
    position: static;
    padding-top: 1rem;
    border-top: 0.0625rem solid rgb(214, 214, 214);
  }
}