/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --bg-color: hsl(220, 18%, 78%);
  --bg-color-light: hsl(220, 18%, 86%);
  --title-color: hsl(220, 8%, 10%);
  --text-color: hsl(220, 4%, 32%);
  --text-color-light: hsl(220, 4%, 55%);
  --body-color: hsl(220, 18%, 99%);
  --container-color: hsl(220, 18%, 97%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Lora", serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
}

@media screen and (min-width: 1124px) {
  :root {
    --biggest-font-size: 4.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lora", sans-serif;
  font-size: 1rem;
  background-color: var(--body-color);
  color: var(--text-color);
  transition: 0.4s; /*For animation dark mode*/
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: bold;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
/*========== Variables for Dark theme ==========*/
body.dark-theme {
  --bg-color: hsl(220, 18%, 13%);
  --bg-color-light: hsl(220, 18%, 23%);
  --title-color: hsl(220, 8%, 95%);
  --text-color: hsl(220, 8%, 65%);
  --body-color: hsl(220, 18%, 18%);
  --container-color: hsl(220, 18%, 21%);
}

/*========== Theme Change Button Dark/Light ==========*/
.change-theme {
  color: var(--title-color);
  font-size: 1.125rem;
  cursor: pointer;
}

/*========== 
    Color changes in some parts of 
    the website, in dark theme 
==========*/
.dark-theme .nav_menu {
  background-color: var(--container-color);
}
.dark-theme .nav_menu ul li .active-link {
  border-bottom: 1px solid white;
}

.dark-theme::-webkit-scrollbar {
  background-color: hsl(220deg, 18%, 15%);
}

.dark-theme::-webkit-scrollbar-thumb {
  background-color: hsl(220deg, 18%, 25%);
}

.dark-theme .home .home_container .home_data .btn {
  border: 0.5px solid white;
}
.dark-theme .home .home_container .home_data .btn:hover {
  background-color: black;
}

.dark-theme .collection .collection_container .explore .btn {
  border: 0.5px solid white;
}
.dark-theme .collection .collection_container .explore .btn:hover {
  background-color: black;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section_title {
  font-size: var(--h1-font-size);
  text-align: center;
  margin-bottom: 3rem;
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 100;
  transition: 0.4s;
  box-shadow: 0 0 5px black;
}
header nav {
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav .logo {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.scroll_header {
  background-color: var(--body-color);
  box-shadow: 0 0 5px black;
}

.nav_menu ul li .active-link {
  color: var(--title-color);
  font-weight: bold;
  border-bottom: 1px solid black;
}

::-webkit-scrollbar {
  width: 0.7rem;
  background-color: hsl(220deg, 8%, 76%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(220deg, 8%, 64%);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(220deg, 8%, 54%);
}

@media screen and (max-width: 1023px) {
  .nav_menu {
    position: fixed;
    bottom: 1.5rem;
    background-color: var(--body-color);
    border-radius: 0.5rem;
    box-shadow: 0 0 5px black;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 1.25rem 2.8rem;
    transition: 0.4s; /*For animation dark mode*/
  }
  .nav_menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav_menu ul li a {
    color: var(--text-color-light);
    font-weight: var(--font-medium);
    display: grid;
    justify-items: center;
    row-gap: 0.25rem;
  }
  .nav_menu ul li a i {
    font-size: var(--h2-font-size);
  }
  .nav_menu ul li a span {
    font-size: 0.688rem;
  }
}
/*=============== HOME ===============*/
.home {
  background-color: var(--bg-color);
  overflow: hidden;
  transition: 0.4s; /*For animation dark mode*/
}
.home .home_container {
  padding: 4rem 0 1rem;
  row-gap: 8.5rem;
}
.home .home_container .home_data h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
  line-height: 140%;
}
.home .home_container .home_data p {
  color: var(--title-color);
  margin: 1rem 0 2rem;
  line-height: 140%;
}
.home .home_container .home_data .btn {
  color: var(--title-color);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 5rem;
  border: 0.5px solid black;
  transition: 0.5s;
}
.home .home_container .home_data .btn i {
  font-size: 1rem;
  transition: 0.3s;
}
.home .home_container .home_data .btn:hover {
  transform: translateY(-5px);
  background-color: var(--body-color);
}
.home .home_container .home_data .btn:hover i {
  transform: translateX(0.25rem);
}
.home .home_container .home_images {
  position: relative;
  width: 310px;
  justify-self: center;
}
.home .home_container .home_images img:nth-child(1) {
  width: 224px;
  position: absolute;
  right: -1.5rem;
  top: -9.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px black;
}
.home .home_container .home_images img:nth-child(2) {
  width: 180px;
  margin-left: 0.5rem;
  position: relative;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px black;
}

/*=============== NEW ===============*/
.new_container {
  row-gap: 2.5rem;
  padding-bottom: 1.5rem;
}
.new_container .card {
  justify-self: center;
}
.new_container .card img {
  width: 270px;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px black;
}
.new_container .card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--title-color);
  padding-right: 0.75rem;
}
.new_container .card a:hover i {
  transform: translateX(0.25rem);
}
.new_container .card a i {
  font-size: var(--h2-font-size);
  transition: 0.3s;
}
.new_container .card a h2 {
  font-size: var(--h2-font-size);
  margin-bottom: 0.5rem;
}
.new_container .card a span {
  font-size: 0.75rem;
  color: var(--text-color);
}

/*=============== COLLECTION ===============*/
.collection {
  background-color: var(--bg-color-light);
  overflow: hidden;
  transition: 0.4s; /*For animation dark mode*/
}
.collection .collection_container {
  position: relative;
  height: 571px;
  display: grid;
  justify-items: center;
}
.collection .collection_container h2 {
  font-size: var(--h1-font-size);
  margin-bottom: 0.75rem;
}
.collection .collection_container .explore {
  display: grid;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  position: absolute;
}
.collection .collection_container .explore .data_men {
  margin-top: 2.5rem;
}
.collection .collection_container .explore .data_women {
  align-self: flex-end;
  margin-bottom: 2.5rem;
}
.collection .collection_container .explore .btn {
  font-size: 0.8rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 5rem;
  border: 0.5px solid black;
  transition: 0.5s;
}
.collection .collection_container .explore .btn i {
  font-size: 1rem;
  transition: 0.3s;
}
.collection .collection_container .explore .btn:hover {
  transform: translateY(-5px);
  background-color: var(--body-color);
}
.collection .collection_container .explore .btn:hover i {
  transform: translateX(0.25rem);
}
.collection .collection_container .explore:nth-child(2) {
  grid-template-columns: 230px -webkit-max-content;
  grid-template-columns: 230px max-content;
  bottom: 1rem;
  margin-right: 3rem;
}
.collection .collection_container .explore:nth-child(1) {
  grid-template-columns: -webkit-max-content 230px;
  grid-template-columns: max-content 230px;
  top: 0;
  margin-left: 3rem;
}

/*=============== PRODUCTS ===============*/
.products_container {
  padding-bottom: 5rem;
}
.products_container .card {
  width: 270px;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px black;
  cursor: pointer;
  padding: 0.5rem;
  background-color: var(--body-color);
  margin-bottom: 3rem;
  margin-top: 1rem;
}
.products_container .card img {
  margin-bottom: 1.2rem;
  border-radius: 0.5rem;
}
.products_container .card h2 {
  font-size: var(--h2-font-size);
  margin-bottom: 0.75rem;
}
.products_container .card span {
  color: var(--title-color);
  font-weight: var(--font-medium);
}
.products_container .swiper-button-prev:after, .products_container .swiper-button-next:after {
  content: "";
}
.products_container .swiper-button-next, .products_container .swiper-button-prev {
  top: initial;
  bottom: 0;
  width: initial;
  height: initial;
  font-size: var(--h1-font-size);
  color: var(--title-color);
}
.products_container .swiper-button-prev {
  left: calc(50% - 2rem);
}
.products_container .swiper-button-next {
  right: calc(50% - 2rem);
}

/*=============== BRANDS ===============*/
.brand_container {
  grid-template-columns: repeat(2, -webkit-max-content);
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.brand_container img {
  width: 120px;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px black;
  cursor: pointer;
  transition: 0.4s;
}
.brand_container img:hover {
  transform: translateY(-10px);
}
.brand_container img:nth-child(even) {
  margin-top: 2rem;
}

/*=============== FOOTER ===============*/
.footer_container {
  row-gap: 3rem;
}
.footer_container .basic_info .logo {
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-medium);
  display: inline-block;
  margin-bottom: 0.75rem;
}
.footer_container .content {
  display: grid;
  grid-template-columns: repeat(2, -webkit-max-content);
  grid-template-columns: repeat(2, max-content);
  gap: 3.5rem 3rem;
}
.footer_container .content h3 {
  font-size: var(--h3-font-size);
  margin-bottom: 1.25rem;
}
.footer_container .content ul {
  display: grid;
  row-gap: 0.75rem;
}
.footer_container .content ul a {
  font-size: var(--small-font-size);
  color: var(--text-color);
  transition: 0.3s;
}
.footer_container .content ul a:hover {
  border-bottom: 0.5px solid var(--title-color);
  color: var(--title-color);
  margin-bottom: 0.5rem;
}
.footer_container .content .office_hours {
  font-size: var(--small-font-size);
}
.footer_container .content .socials {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.footer_container .content .socials .social_link {
  display: inline-flex;
  color: var(--title-color);
  padding: 0.4rem;
  background-color: var(--container-color);
  font-size: 1.25rem;
  border-radius: 0.5em;
  border: 0.5px solid var(--bg-color-light);
  transition: 0.3s;
}
.footer_container .content .socials .social_link:hover {
  background-color: var(--bg-color-light);
  border: 0.5px solid var(--bg-color);
  transform: translateY(-3px);
}

.footer_info {
  margin-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.75rem;
}
.footer_info span, .footer_info a {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

.scroll_up {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--container-color);
  box-shadow: 0 0 5px black;
  display: inline-flex;
  padding: 0.5rem;
  color: var(--title-color);
  font-size: 1.1rem;
  z-index: 10;
  border-radius: 5rem;
  transition: 0.3s;
}
.scroll_up:hover {
  transform: translateY(-0.6rem);
}

.show-scroll {
  bottom: 7.5rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .footer_container .content {
    grid-template-columns: -webkit-max-content;
    grid-template-columns: max-content;
    row-gap: 2rem;
  }
  .nav_menu {
    padding: 1rem 1.5rem;
  }
  .home .home_container {
    padding: 2rem 0 1rem;
    row-gap: 6rem;
  }
  .home .home_container .home_data p {
    font-size: var(--small-font-size);
  }
  .home .home_container .home_images {
    width: 248px;
  }
  .home .home_container .home_images img:nth-child(1) {
    width: 180px;
    top: -7rem;
  }
  .home .home_container .home_images img:nth-child(2) {
    width: 150px;
  }
  .new_container .card img {
    width: 230px;
  }
  .new_container .card a {
    padding-right: 0;
  }
  .collection .collection_container {
    height: initial;
    row-gap: 3rem;
  }
  .collection .collection_container .explore:nth-child(1), .collection .collection_container .explore:nth-child(2) {
    position: initial;
    grid-template-columns: 230px;
    row-gap: 2rem;
    margin: 0;
  }
  .collection .collection_container .explore .data_men {
    margin-top: 0;
  }
  .collection .collection_container .explore .data_women {
    margin-bottom: 0;
  }
  .products_container .card {
    width: 230px;
  }
  .brand_container {
    grid-template-columns: repeat(2, 100px);
    row-gap: 0.5rem;
  }
}
/* For medium devices */
@media screen and (min-width: 576px) {
  .nav_menu {
    width: 342px;
  }
  .footer_container .content {
    grid-template-columns: repeat(3, -webkit-max-content);
    grid-template-columns: repeat(3, max-content);
  }
}
@media screen and (min-width: 767px) {
  .home .home_container {
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
  }
  .home .home_container .home_images {
    margin-top: 7rem;
  }
  .new_container {
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
  }
  .brand_container {
    grid-template-columns: repeat(4, -webkit-max-content);
    grid-template-columns: repeat(4, max-content);
  }
  .footer_container {
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }
}
/* For large devices */
@media screen and (min-width: 1023px) {
  .section {
    padding: 7rem 0 1rem;
  }
  .section_title {
    margin-bottom: 4rem;
  }
  header nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  header .nav_menu {
    width: initial;
    margin-left: auto;
  }
  header .nav_menu ul {
    display: flex;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  header .nav_menu ul a {
    color: var(--text-color);
    font-weight: var(--font-medium);
    transition: 0.3s;
  }
  header .nav_menu ul a i {
    display: none;
  }
  header .nav_menu ul a:hover {
    color: var(--title-color);
  }
  header .nav_menu ul .active-link {
    color: var(--title-color);
    text-decoration: line-through;
    border-bottom: none;
  }
  header .change-theme {
    margin-left: 3rem;
    color: var(--text-color);
  }
  .dark-theme .nav_menu {
    background-color: transparent;
  }
  .dark-theme .nav_menu ul li .active-link {
    border-bottom: none;
  }
  .products_container {
    width: 954px;
  }
  .footer_container .content {
    grid-template-columns: repeat(4, -webkit-max-content);
    grid-template-columns: repeat(4, max-content);
    -moz-column-gap: 5.5rem;
         column-gap: 5.5rem;
  }
  .footer_container .content a {
    font-size: var(--normal-font-size);
  }
  .footer_info {
    padding-bottom: 2rem;
    row-gap: 1rem;
  }
}
@media screen and (min-width: 1054px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1124px) {
  .home .home_container {
    padding: 10rem 0 3rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .home .home_container .home_images {
    width: 500px;
    margin-top: 8rem;
    transform: translate(-1rem);
  }
  .home .home_container .home_images img:nth-child(1) {
    width: 345px;
    top: -14.5rem;
  }
  .home .home_container .home_images img:nth-child(2) {
    width: 277px;
  }
  .new_container {
    grid-template-columns: repeat(3, -webkit-max-content);
    grid-template-columns: repeat(3, max-content);
    padding-bottom: 4.5rem;
    gap: 4.5rem;
  }
  .new_container .card img {
    margin-bottom: 1.25rem;
  }
  .new_container .card a h2 {
    font-size: var(--h3-font-size);
  }
  .collection .collection_container {
    height: 760px;
    margin-bottom: 2rem;
  }
  .collection .collection_container .explore:nth-child(1) {
    grid-template-columns: -webkit-max-content 330px;
    grid-template-columns: max-content 330px;
    margin-left: 10rem;
  }
  .collection .collection_container .explore:nth-child(2) {
    grid-template-columns: 330px -webkit-max-content;
    grid-template-columns: 330px max-content;
    margin-right: 10rem;
  }
  .collection .collection_container .explore {
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .products_container {
    padding-bottom: 7rem;
  }
  .brand_container {
    -moz-column-gap: 5.5rem;
         column-gap: 5.5rem;
  }
  .brand_container img {
    width: 140px;
  }
  .scroll_up {
    right: 3rem;
  }
  .show-scroll {
    bottom: 3rem;
  }
}
/* For 2K resolutions (2048 x 1152, 2048 x 1536) */
@media screen and (min-width: 2048px) {
  body {
    zoom: 1.3;
  }
}
/* For 4K resolutions (3840 x 2160, 4096 x 2160) */
@media screen and (min-width: 3840px) {
  body {
    zoom: 2.3;
  }
}/*# sourceMappingURL=style.css.map */