/************************************************* Style général *************************************************/
body {
  font-family: "Roboto", sans-serif;
}

.bg-perso {
  background-color: rgb(0, 152, 72);
}

.bg-produit {
  background-color: rgb(232, 232, 232);
}

.text-perso {
  color: rgb(0, 152, 72);
}

.btn-perso {
  background-color: rgb(0, 152, 72);
  color: white;
}

.btn-perso:hover {
  background-color: rgb(0, 196, 91);
  color: white;
}

.min-vh {
  min-height: calc(100vh - (408px));
}

.btn-quantity {
  background-color: white;
  border: 1px solid rgb(0, 152, 72);
  padding: 0 7px;
  color: rgb(0, 152, 72);
  font-size: 1.1rem;
}

.btn-quantity:hover {
  background-color: rgb(0, 152, 72);
  border: 2px solid rgb(0, 152, 72);
  color: white;
}

.smaller {
  font-size: 0.8rem;
}

.bigger {
  font-size: 1.2rem;
}

/************************************************* Homepage *************************************************/

/************ Banner ************/
#home-banner {
  background-image: url("/assets/img/benet.jpg");
  min-height: 85vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
}

#home-banner h2,
#home-banner p {
  color: white;
}

#collection-women,
#collection-men {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 80vh;
  width: 100%;
}

#collection-women {
  background-image: url("/assets/img/women.jpg");
}

#collection-men {
  background-image: url("/assets/img/men.jpg");
}

#home-collection h2 {
  font-size: 3rem;
}

@media only screen and (min-width: 992px) {
  #collection-women,
  #collection-men {
    width: 49%;
  }

  #home-collection h2 {
    font-size: 5rem;
  }
}

/************ Navbar ************/

#navbar a {
  font-size: 1rem;
}

.navbar-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-out;
}

.navbar-visible {
  transform: translateY(0);
  transition: transform 0.3s ease-in;
}

#nav-separator {
  height: 108px;
  background-color: rgb(255, 255, 255);
  width: 100%;
}

.nav-icon {
  position: absolute;
  top: 24px;
  right: 48px;
}

.homepage-navbar {
  background-color: transparent !important;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0)
  ) !important;
  border: none;
}

.homepage-navbar:hover {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0)
  ) !important;
  background-color: #ffffff !important;
  transition: background-color 0.3s ease-in !important;
}

#navbar a {
  color: black;
}

#navbar a:hover {
  color: rgb(151, 151, 151) !important;
}

#navbar #brand {
  font-size: 2rem;
}

#navbar #brand:hover {
  color: rgb(0, 152, 72) !important;
}

.homepage-navbar a {
  color: white !important;
}

.homepage-navbar:hover a {
  color: black !important;
}

@media only screen and (min-width: 992px) {
  .nav-center {
    position: absolute;
    width: 100vw;
    left: 0%;
    display: flex;
    z-index: 2;
    justify-content: center;
  }

  .z-high {
    z-index: 3;
  }
}

.essaie-svg {
  position: relative;
  top: -1px;
}

@media only screen and (max-width: 992px) {
  #home-banner {
    background-image: url("/assets/img/benet-mob.jpg");
    min-height: 100vh;
    background-position: top;
  }
  .nav-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

/************************************************* Footer *************************************************/
#footer li {
  list-style-type: none;
}

#footer .smaller {
  font-size: 0.6rem;
  font-style: italic;
}

#footer h3 {
  font-size: 2.2rem;
}

#footer h5 {
  font-size: 1.4rem;
}

#footer .copyright {
  font-size: 0.8rem;
  font-weight: bold;
  color: black;
}

/************************************************* Shop *************************************************/
/* #shop .imgF:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
} */

/************************************************* Product *************************************************/
.vertical-bar {
  width: 1px;
  height: 55%;
  background-color: rgb(136, 136, 136);
}

/************************************************* Panier *************************************************/

@media only screen and (min-width: 1200px) {
  #resume {
    position: absolute;
    top: 0;
    right: 0;
  }

  .custom-grid {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/************************************************* Autre *************************************************/
.divider {
  display: flex;
  align-items: center;
}

.divider::before,
.divider::after {
  content: "";
  flex-grow: 1;
  border-top: 1px solid rgb(190, 190, 190);
  margin: 0 10px;
}
