@charset "UTF-8";
/* VARIABLES */
@import url("https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz@6..12&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap");
*, ::before, ::after {
  box-sizing: border-box;
}

body html,
body {
  height: 100%;
  margin: 0 auto;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
}
body::-webkit-scrollbar {
  background: lightgrey;
}
body::-webkit-scrollbar-thumb {
  background: #387c8b;
  border-radius: 20px;
}

main {
  min-height: 100%;
}
main::after {
  content: "";
  display: block;
}

.light-bg {
  background-color: white;
  color: black;
}

@font-face {
  font-family: "Ethnocentric";
  src: url("./fonts/ethnocentric-rg.otf") format("opentype");
}
@keyframes itemappear {
  from {
    opacity: 0;
    -webkit-clip-path: inset(50% 0% 50% 0%);
            clip-path: inset(50% 0% 50% 0%);
  }
  to {
    opacity: 1;
    -webkit-clip-path: inset(0% 0% 0% 0%);
            clip-path: inset(0% 0% 0% 0%);
  }
}
/* BANNIÈRE */
.navbar {
  padding: 30px 0;
  color: black;
  z-index: 1000;
  background-color: white;
  border-bottom: solid 1px rgb(226, 224, 224);
}

.banner {
  background-image: url("./images/banmobile_anim_elams.gif");
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: fixed;
}
.banner__img img {
  position: absolute;
  margin: 50% 25%;
  width: 50%;
}

/* RESPONSIVE */
@media screen and (min-width: 768px) {
  .banner {
    background-image: url("./images/bandesk_anim_elams.gif");
  }
}
.footer {
  background-color: #F6F6F7;
  position: relative;
  top: 80vh;
  padding: 30px;
  font-family: "Nunito Sans", sans-serif;
}
.footer a {
  color: black;
  text-decoration: none;
}
.footer a:hover {
  transform: scale(1.5);
  color: #387c8b;
}
.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;
}

@media screen and (min-width: 500px) {
  .footer__links {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .footer__links--list {
    display: flex;
    justify-content: space-evenly;
  }
}
main {
  position: relative;
  top: 100vh;
  padding-bottom: 20vh;
  background-image: linear-gradient(transparent, white);
}

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

.title {
  text-align: center;
  padding: 10vh 0;
  font-family: "Ethnocentric", sans-serif;
  color: #387c8b;
}

/* SECTION DES PRODUITS */
.featured-product {
  margin: 50px 10%;
}

@media screen and (min-width: 768px) {
  .shopify-buy__product__title {
    color: black !important;
  }
}
.slider-collection {
  text-align: center;
}

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

.newsletter {
  margin: 0 auto;
  max-width: 800px;
  padding: 50px;
}
.newsletter button {
  background-color: black;
  color: white;
  border-radius: 0;
  width: 100%;
}

.collection {
  margin: 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.collection__card {
  width: 100%;
  text-align: center;
  text-decoration: none;
  border: none;
  margin-top: 50px;
  transition: 1s;
}
.collection__card img {
  width: 100%;
}
.collection__card--title {
  color: #387c8b;
  font-family: "Orbitron", sans-serif;
}
.collection__card--title h4 {
  font-size: 18px;
}
.collection__card--title p {
  font-size: 12px;
  color: grey;
}

@media screen and (min-width: 768px) {
  .collection {
    flex-direction: row;
    margin-bottom: 10vh;
  }
  .collection__card {
    width: 700px;
  }
}/*# sourceMappingURL=style.css.map */