*{
  box-sizing: border-box;
  margin: 0;
  font-family: outfit, sans-serif;
}

html{
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #fff;
  font-weight: 500;
}

p, h1, h2, a{
  color: #1c1c1c;
  text-decoration: none;
}

a:hover{
  color: #696969;
  transition: all .3s;
}

p, li, a{
  font-size: clamp(1rem, 0.9167rem + 0.381vw, 1.25rem);
  line-height: 140%;
}

h1, h2, h3, h4{
  line-height: 105%;
}

h1{
  font-size: clamp(4rem, 3.6667rem + 1.5238vw, 5rem);
  margin-bottom: clamp(4.1875rem, 3.8333rem + 1.619vw, 5.25rem);
  margin-top: clamp(4.375rem, 3.9583rem + 1.9048vw, 5.625rem);
}

h2{
  font-size: clamp(2.8125rem, 2.5625rem + 1.1429vw, 3.5625rem);
  margin: 40px 0;
}

h3{
  font-size: clamp(2rem, 1.8333rem + 0.7619vw, 2.5rem);
}

h4{
  font-size: clamp(1.4375rem, 1.3333rem + 0.4762vw, 1.75rem);
  margin-bottom: clamp(1.4375rem, 1.3333rem + 0.4762vw, 1.75rem);
}

ul{
  padding: 0;
  list-style: none;
}

img{
  width: 100%;
  border-radius: 25px;
}

button{
  cursor: pointer;
  transition: all .3s;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  outline: none;
  appearance: none;
}

/*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ 

@media (min-width: 350px ){
  .menu{
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background-color: rgba(28, 28, 28, 0.4);
    z-index: 20;
  }

  .p--logo{
    font-size: 28px;
    font-weight: 700;
  }

  .menu--liste{
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .menu--btn{
    background: transparent;
    border: 0;
    padding: 0;
  }

  .menu .btn{
    width: 34px;
    height: 30px;
    position: relative;
  }

  .menu .btn span{
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1c1c1c;
    border-radius: 2px;
    display: block;
  }

  .menu.open .menu--liste{
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    background: #fff;
    padding: 16px 20px;
  }

  .menu--a{
    display: block;
    padding: 10px 0;
  }
}

.menu .btn span:nth-child(1) { top: 0; }
.menu .btn span:nth-child(2) { top: 14px; }
.menu .btn span:nth-child(3) { top: 28px; }

.menu .btn.active span:nth-child(1) { animation: top 0.3s forwards; }
.menu .btn.active span:nth-child(2) { animation: scaled 0.3s forwards; }
.menu .btn.active span:nth-child(3) { animation: bottom 0.3s forwards; }

.menu .btn.not-active span:nth-child(1) { animation: top-2 0.3s forwards; }
.menu .btn.not-active span:nth-child(2) { animation: scaled-2 0.3s forwards; }
.menu .btn.not-active span:nth-child(3) { animation: bottom-2 0.3s forwards; }


@keyframes top{
  0% { top: 0;    transform: rotate(0); }
  50% { top: 14px; transform: rotate(0); }
  100% { top: 14px; transform: rotate(45deg); }
}

@keyframes top-2{
  0% { top: 14px; transform: rotate(45deg); }
  50% { top: 14px; transform: rotate(0); }
  100% { top: 0;    transform: rotate(0); }
}

@keyframes bottom{
  0% { top: 28px; transform: rotate(0); }
  50% { top: 14px; transform: rotate(0); }
  100% { top: 14px; transform: rotate(-45deg); }
}

@keyframes bottom-2{
  0% { top: 14px; transform: rotate(-45deg); }
  50% { top: 14px; transform: rotate(0); }
  100% { top: 28px; transform: rotate(0); }
}

@keyframes scaled{
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}

@keyframes scaled-2{
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.p--logo, .menu--liste{
  font-size: clamp(1.125rem, 0.9792rem + 0.6667vw, 1.5625rem);
  font-weight: 700;
}

/* contenu */ /* contenu */ /* contenu */ /* contenu */ /* contenu */ /* contenu */ /* contenu */ /* contenu */ /* contenu */ /* contenu */ /* contenu */

.velo--nom__front{
  grid-column: 1/-1;
}

.style--velo, .article--style__velo{
  padding: 20px 0;
}

.velo--details, .velo--description, .img--col1col3, .velo--image, .velo--nom, .details--velo, .event--image, .event--date, .event--lieu, .event--nom, .event--description{
  grid-column: 1/-1;
}

.details--velo{
  padding-top: 20px;
}

.details--velo__li{
  margin-bottom: 8px;
}

.title--section{
  margin: 40px 0px 40px 20px ;
}

.event--image{
  border-radius: 25px;
}

.cta--acceuil, .cta--retour{
  grid-column: 1/-1;
  text-align: center;
  padding: 10px;
  margin: 20px 0;
  background-color: #696969;
  color: #fff;
  border-radius: 25px;
  transition: all .3s;
  border: transparent 1px solid;
}

.cta--acceuil:hover, .cta--retour:hover{
  background-color: transparent;
  border: #696969 1px solid;
  color: #696969;
}

.velo--nom{
  margin-bottom: 40px;
}

.section--description, .retour--client{
  grid-column: 1/-1;
}

.retour--client{
  margin-top: 40px;
  grid-row: 3/4;
}

.velo--item{
  grid-column: 1/-1;
}

.title--shop h2, .form--shop{
  grid-column: 1/-1;
}

.filter--marque, .filter--type, .filter--prix{
  margin-bottom: 16px;
  grid-column: 1/-1;
}

.btn--shop__pos{
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.btn--reset, .btn--submit{
  height: 100%;
  padding: 10px 16px 8px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--submit{
  background-color: #696969;
  transition: all .3s;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-submit{
  stroke: none;
  background-color: transparent;
  color: #fff;
  line-height: 140%;
  font-size: clamp(1rem, 0.9167rem + 0.381vw, 1.25rem);
  transition: all .3s;
}

.btn--submit:hover {
  border: 1px solid #696969;
  background-color: transparent;
}

.btn--submit:hover .btn-submit {
  color: #696969;
  background-color: transparent;
}

.btn--reset{
  border: 1px solid #696969;
  display: flex;
  transition: all .3s;
}

.btn--reset .btn-reset {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #696969;
  transition: all .3s;
}

.btn--reset:hover {
  background-color: #696969;
}

.btn--reset:hover .btn-reset {
  color: #fff;
}

footer{
  background-color: #696969;
  color: #fff;
}

.footer--ul a , li{
  color: #fff;
  padding: 20px 0 20px 0;
}

.footer--ul{
  grid-column: 1/-1;
}

small{
  padding: 20px;
  display: flex;
  width: 100%;
  justify-content: center;
}

.gridcol{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 20px;
}

.zone--footer{
  margin: 0;
  padding: 20px;
}


@media (min-width: 1250px){

  hr{
    display: none;
  }

/*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ /*menu*/ 

  .menu--btn{
    display: none;
  }

  .menu--liste{
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .velo--nom{
    grid-column: 4/-1;
    margin-bottom: 24px;
  }

  .img--col1col3{
    grid-column: 1/4;
    grid-row: 1/2;
  }

  .section--description{
    grid-column: 4/-1;
    grid-row: 1/2;
  }

  .velo--description{
    margin-top: 50px;
  }

  .cta--retour{
    grid-column: 3/4;
  }

  .retour--client{
    grid-column: 1/-1;
  }

  .gridcol{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-left: 120px;
    margin-right: 120px;
  }

  .article--style__velo{
    width: 48%;
    border-bottom: 1px solid #1c1c1c;
  }

  .velo--item{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .home--events__list{
    display: flex;
    flex-direction: row;
  }

  .home--event{
    width: 31%;
    margin: 0 20px;
  }

  .cta--acceuil{
    height: fit-content;
  }

  .cta--acceuil__pos{
    display: flex;
    justify-content: center;
    grid-column: 1/-1;
  }

}
