@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Serif Display', Arial, Helvetica, sans-serif;
}
:root {
  --Bg: #222;
  --Bg2: #111;
  --Col: #ddd;
  --Col-Kus: #767676;
  --Ani: 0.3s ease-in-out all;
}
::-webkit-scrollbar {
  width: 0.6rem;
  background: var(--Bg);
}
::-webkit-scrollbar-thumb {
  background: var(--Col);
  border-radius: 1rem;
}
Body {
  background: var(--Bg);
}
/* nav */
.menu {
  padding: 0.6rem;
  display: flex;
  justify-content: center;
  background: var(--Bg2);
}
.menu-ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.menu-a {
  padding: 0.3rem 0.5rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--Col);
  letter-spacing: 1px;
  display: flex;
  border: 1px solid transparent;
  &:hover {
    border: 1px solid var(--Col);
  }
}
.Bg-Model {
  height: 60vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.Bg-Model img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: contrast(110%);
  filter: brightness(70%);
}
.newCollection {
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--Col);
  letter-spacing: 1.4px;
  position: absolute;
  background: rgb(17, 17, 17, 0.5);
  border: 1px solid rgb(221, 221, 221, 0.5);
}
/* Main */
.main {
  display: flex;
  flex-direction: column;
}
#MainBoxCenter {
  padding: 0rem 14.25rem;
}
/* Title & Texts */
.titleMain {
  padding: 0.5rem 0;
  font-size: 1.8rem;
  color: var(--Col);
}
/* Shop Collection */
.Shop {
  padding: 2rem 0;
  display: grid;
  grid-column: 1fr;
}
.Shop-ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
}
.Shop-a {
  width: max-content;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--Col);
  display: flex;
  flex-direction: column;
  position: relative;
}
.Shop-a img {
  height: 14rem;
}
.text-img {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-img ion-icon {
  font-size: 1.1rem;
}
/* About */
.About {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
.AboutBox {
  display: flex;
  position: relative;
}
.AboutImage {
  height: 22rem;
}
.AboutImage2 {
  height: 5rem;
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  border-radius: 50%;
}
.Columns2 {
  display: flex;
  flex-direction: column;
}
.AboutP {
  padding: 1rem 0;
  font-size: 1rem;
  color: var(--Col);
}
.ContactUs {
  width: max-content;
  margin: auto 0 0;
  padding: 0.6rem 2rem;
  font-weight: bold;
  color: var(--Col);
  cursor: pointer;
  border: 1px solid var(--Col);
  background: var(--Bg);
  &:hover {
    color: var(--Bg);
    background: var(--Col);
    border: 1px solid var(--Col);
  }
}
/* gallery */
.Gallery {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr;
}
.Gallery-ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  place-items: center;
  gap: 0.8rem;
}
.Gallery-item {
  list-style: none;
  display: flex;
  overflow: hidden;
  position: relative;
  transition: var(--Ani);
  &:hover {
    scale: 1.05;
  }
}
.Gallery-item:hover .Gallery-Content {
  opacity: 1;
  transform: translateY(0rem);
  transition: var(--Ani);
}
.Gallery-Content {
  width: 100%;
  padding: 0 0.6rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--Col);
  position: absolute;
  bottom: 0;
  opacity: 0;
  background: rgba(34, 34, 34, 0.4);
  transform: translateY(2rem);
  transition: var(--Ani);
}
.Gallery-item img {
  height: 14rem;
}
/* Loading */
div#preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background-color: var(--Bg);
}
.loader {
  color: var(--Col);
  display: flex;
  gap: 2rem;
}
.circle {
  height: 3rem;
  width: 3rem;
  border: 0.3rem solid var(--Col-Kus);
  border-top: 0.3rem solid var(--Col);
  border-radius: 50%;
  animation: rotate 2s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1440px) {
  #MainBoxCenter {
    padding: 0rem 8rem;
  }
  .About {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  #MainBoxCenter {
    padding: 0rem 4rem;
  }
  .AboutBox {
    width: max-content;
  }
}
@media screen and (max-width: 768px) {
  #MainBoxCenter {
    padding: 0rem 2rem;
  }
  .newCollection {
    font-size: 1.6rem;
  }
  .Shop-ul {
    place-items: center;
  }
  .titleMain {
    text-align: center;
  }
  .text-img {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: rgba(34, 34, 34, 0.5);
  }
  .Gallery-item {
    overflow: visible;
    &:hover {
      scale: 1;
    }
  }
  .Gallery-Content {
    opacity: 1;
    transform: none;
  }
}
@media screen and (max-width: 500px) {
  .newCollection {
    font-size: 1rem;
  }
}
