@charset "UTF-8";
/* VARIABLES */
@import url("https://fonts.googleapis.com/css2?family=Libre+Caslon+Display&display=swap");
*, ::before, ::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0 auto;
}

main {
  min-height: 100%;
  font-family: "Libre Caslon Display", serif;
}
main::after {
  content: "";
  display: block;
}

.light-bg {
  background-color: #ffffff;
  color: black;
}

@keyframes slide {
  0% {
    transform: scaleX(3deg);
  }
  100% {
    transform: scaleX(10deg);
  }
}
/* BANNIÈRE */
.navbar {
  padding: 40px 0;
  font-family: "Libre Caslon Display", serif;
  color: black;
}
.navbar .offcanvas {
  background-color: black;
  max-width: 80%;
}
.navbar .offcanvas .btn-close {
  color: #ffffff;
}
.navbar .offcanvas__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.navbar .offcanvas__footer--socials a {
  color: #ffffff;
}

/* LOGO*/
.logo {
  position: relative;
  text-align: center;
  z-index: 2000;
  margin: 0 auto;
  padding-top: 30px;
}
.logo__img {
  width: 150px;
  position: relative;
  bottom: 50vh;
}
.logo.fixed {
  position: fixed;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
}
.logo.fixed img {
  bottom: 0;
}
.logo .light {
  display: none;
}

/* RESPONSIVE */
@media screen and (min-width: 768px) {
  .banner {
    background-image: url("https://placehold.co/600x400");
  }
}
@media screen and (min-width: 991px) {
  .offcanvas__footer {
    display: none;
  }
}
.footer {
  background-color: #ffffff;
  color: black;
  background-image: url("./images/mer.jpg");
  position: relative;
  padding: 30px;
  font-family: "Libre Caslon Display", serif;
  font-size: bolder;
}
.footer a {
  color: black;
  text-decoration: none;
}
.footer a:hover {
  color: grey;
  transform: scale(1.5);
}
.footer ul {
  margin-left: 0;
  padding-left: 0;
}
.footer li {
  list-style-type: none;
}
.footer__logo {
  text-align: center;
  padding: 15px;
}
.footer__links {
  padding: 15px 0;
}
.footer__socials {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 15px 0;
}
.footer__copy {
  display: flex;
  padding-top: 15px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer__copy--shop {
  margin-right: 10px;
  font-weight: bolder;
}

@media screen and (min-width: 768px) {
  .footer__links--list {
    display: flex;
    justify-content: space-evenly;
  }
  .footer__copy {
    align-items: center;
    justify-content: center;
  }
}
main {
  position: relative;
}

.banner {
  background-image: url("https://placehold.co/600x400"); /*url('./images/banmobile.png');*/
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: fixed;
}
.banner__img img {
  position: absolute;
  margin: 50% 25%;
  width: 50%;
}

.title {
  text-align: center;
  padding: 5vh 0;
  text-transform: uppercase;
}

/* SECTION DES PRODUITS */
.product {
  margin: 0 auto;
  max-width: 1100px;
}
.product__first {
  padding: 10px 10%;
}
.product__second {
  padding: 10px 10%;
  background-color: black;
  color: #EFEFEF;
}
.product div {
  margin: 50px 0;
}

.video-container {
  overflow: hidden;
  background-position: center;
}
.video-container video {
  position: center;
  width: 100%;
  height: 100%;
}

.featured-product {
  margin: 40px 10%;
}

@media screen and (min-width: 768px) {
  .product {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product__second {
    background-color: #EFEFEF;
    color: black;
  }
  .shopify-buy__product__title {
    color: black !important;
  }
  .featured-collection {
    margin: 40px auto;
  }
}
.slider-collection {
  text-align: center;
}

#product-component-1689082072302, #product-component-1689082312209 {
  margin: 0 auto;
  max-width: 50% !important;
}

.newsletter {
  max-width: 450px;
  padding: 50px 0;
}
.newsletter button {
  width: 50%;
}
.newsletter input {
  border: solid 1px black;
  background-color: transparent;
}
.newsletter input:focus {
  background-color: transparent;
}

@media screen and (min-width: 768px) {
  .newsletter {
    margin: 0 auto;
  }
}
.button {
  color: #ffffff;
  background-color: black;
}
.button:hover {
  transition: 0.5s;
  background-color: transparent;
  border: solid 1px black;
}/*# sourceMappingURL=style.css.map */