/* poppins font import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* inter font import */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


.poppins-font {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


/* shared related styles */
.text-color {
  color: #3A3A3A;
}

body {
  background-color: #f5f3f3;
}

/* header section styles */


/* navbar styles */
.nav-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 85px 120px 50px 120px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links ul,
.icons {
  display: flex;
  gap: 34px;
}

.nav-section ul li {
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
}

.nav-section a {
  text-decoration: none;
}

.nav-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.icons {
  width: 24px;
  height: 24px;
  color: #000000;
  cursor: pointer;
  align-items: center;
}


/* hero section styles */
.hero-section {
  display: flex;
  margin: 0px 132px 70px 120px;
  gap: 300px;
}

.hero-content {
  width: 582px;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-description {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 18px;
  margin-bottom: 2px;
}

.hero-btn {
  width: 196px;
  height: 44px;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 24px;
  border: none;
  border-radius: 40px;
  color: #FFFFFF;
  background-color: #E02C6D;
  cursor: pointer;
  margin-top: 25px;
}

.fa-arrow-right {
  width: 16px;
  height: 14px;
  margin-left: 10px;
}

.camera {
  position: relative;

}

.img-background {
  position: absolute;
  width: 450px;

}

.main-camera {
  position: absolute;
  width: 440px;

}

/* logo section styles */
.logos {
  display: flex;
  max-width: 1110px;
  height: 110px;
  align-items: center;
  justify-content: space-around;
  margin: 0px auto;
  gap: 60px;
  margin-top: 170px;
  background: linear-gradient(to right,
      rgba(192, 204, 218, 0) 0%,
      rgba(192, 204, 218, 0.5) 50%,
      rgba(192, 204, 218, 0) 100%);
}

/* popular section styles */
.popular-section {
  width: 1047px;
  height: 1662px;
  margin: 90px auto;
}

.popular-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #3A3A3A;
  text-align: center;
  margin-bottom: 50px;
}

.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.collection {
  width: 329px;
  height: 496px;
  border-radius: 10px;
  background-color: #FFFFFF;
}

.collection img {
  width: 300px;
  height: 256px;
  border-radius: 5px;
  margin: 16px 15px 0px 15px;
}

.collection-content {
  margin: 10px 15px;
}

.collection-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #18191F;
}

.price {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 2px;
  margin-top: 5px;
}

.collection-description {
  width: 196px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #787885;
  line-height: 1.5;
}

/* product featured section */
.product-featured {
  display: flex;
  width: 1110px;
  height: 270px;
  margin: 0px auto;
  gap: 96px;
}

.gear-img {
  width: 404px;

}

.product-title {
  font-size: 2.375rem;
  font-weight: 700;
  color: #0A0826;
  margin-top: 0px;
}

.product-description {
  font-size: 1rem;
  color: #6C6C6C;
  font-weight: 700;
}

.btn-product {
  width: 155px;
  height: 44px;
  background-color: #E02C6D;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  border: none;
}






/* responsive media query */
@media screen and (max-width: 576px) {
  .nav-section {
    margin: 35px 16px 22px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-links,
  .icons {
    display: none;
  }

  /* hero section */
  .hero-section {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 500px;
    margin: 10px;
  }

  .hero-content {
    width: 400px;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  /* logos section */
  .logos {
    flex-wrap: wrap;
    gap: 20px;
    background: none;
    margin: 20px 5px;
    justify-content: center;
    align-items: center;
  }
}