
/* GENERAL */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 62.5%;
}

/* LA FLECHE SUR LES LIENS A*/
.arrow::after {
  content: "\ebe6";
  font-family: boxicons!important;
  font-weight: 400;
  font-size: 1.6rem;
  vertical-align: middle;
}

.container {
  max-width: 1100px;
  margin : 0 auto;

}




/* QUELQUES REMARQUES :

les couleurs :
bleu (liens) : rgb(0,150,255);
bleu (overlay) : rgba(0,78,255,0.4);
gris foncé (product-brand) : color:darkgrey;

le logo : font-family: 'Orbitron', sans-serif;
l'effet d'ombrage sur les images tendances : box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

C'EST PARTI !!!!



*/


/* LE HEADER */

.header {
  background-image: url('../images/bg-header.jpg');
  background-size: cover;
}

.header nav {
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.2);

}

.menu { 
  display: flex;
  align-items: center;
}

#burger-menu { 
  display: none;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  text-decoration: none;
  color: white;
  letter-spacing: 5px;
  font-size: 1.6rem;
  font-style: italic;
  text-transform: lowercase;
  margin-right: 10px;

}

.products-menu {
  flex-grow: 1 ;
}

.products-menu a {
  text-decoration: none ;
  color: white;
  font-size: O.8rem;
  text-transform: uppercase;
  margin: 0 10px;
}

.user-menu {
  margin-left: auto; 
}

.user-menu a {
  color: white;
  font-size: 1.4rem;
}

.banner {
  display: flex;
}

.banner .banner-intro, .banner > a {
  flex-basis: 50%;

}

.banner img {
  width: 100%;
}

.banner-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;



}

.banner-intro a {
  text-decoration: none;
  color: white;
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 2px;

}

.banner-intro h2 {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 50;

}

.banner-intro span {
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 10;
  opacity: 70%;
  letter-spacing: 1px;

}


/* LES TENDANCES */

.tendance-item {
  display: flex;
  padding-top: 3rem;
  position: relative;
  flex-direction: row;
}

.tendance-txt, .tendance-img {
  flex-basis: 50%;
}

.tendance-img img {
  width: 100%;
}

.tendance-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
}


.tendance-txt h3{
  text-transform: capitalize;
  font-size: 1.1rem;
  font-weight: 300;
  padding-bottom: 1.3rem;
  font-weight : bold;
  padding-right: 2rem;
  padding-left: 2rem;
}

.tendance-txt p {
  font-size: 1.1rem;
  font-weight: 300;
  padding-bottom: 1.3rem;
  padding-right: 2rem;
  padding-left: 2rem;
  line-height: 1.5;
}

.tendance-txt a {
  text-decoration: none;
  color: rgb(0,150,255);
  font-size: 0.9rem;
  font-weight: 300;
  text-transform: uppercase;
  font-weight: bold;
  padding-right: 2rem;
  padding-left: 2rem;
}

.tendance-item > a {
  display: flex;
  width: 50px;
  background-color: rgb(0,150,255);
  aspect-ratio: 1 / 1;
  position: absolute;
  bottom: 0;
  left : 50%;
  color:white;
  font-size:1.5rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transform: translate(-50%, 50%);
}

.tendance-reverse {
  flex-direction: row-reverse;
}

/* LES PRODUITS */

.products-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product {
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.products h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 30px;
  padding-top: 5rem;
  padding-bottom: 1rem;
  text-align: center;
}

.product:hover {
  border: solid 1px rgba(186, 186, 186, 0.566);
}

.product {
  text-decoration: none;
}

.product-brand {
  color: grey;
  text-transform: uppercase;
  margin-top: 2%;
}

.product-title {
  color: black;
  text-transform: uppercase;
  margin-top: 2%;
  margin-bottom: 2%;
  margin-left: 25%;
  margin-right: 25%;
  text-align: center;
}

.product-price {
  color: rgb(0,150,255) ;
  font-weight: bold;
}

/* LE BOUTON */

.bouton{  
  margin : 20px auto;
  display: block;
  max-width: fit-content;
  text-decoration: none;
  text-transform: uppercase;
  background-color: rgb(0,150,255);
  color: white; 
  padding: 10px 20px;
  font-size: small;
  margin-top: 3%;
  margin-bottom: 3rem;
}

/* AVANTAGE CLUB */

.adventure {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0;
  background:  linear-gradient(rgba(0, 78, 255, 0.4), rgba(0, 78, 255, 0.4)), url(../images/bg-advantage.jpg);
  background-size: cover;
  justify-content: center;
  margin-bottom: 2rem;
}

.adventure-info {
  text-align: center;
}

.adventure-info h2 {
font-size: 1.4rem;
font-weight: bold;
text-transform: capitalize;
color: white;
margin-bottom: 1rem;
}

.adventure-info p {
  color: white;
  margin : 0 auto;
  max-width: 400px;
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.adventure-info a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.7px;
  font-size: 0.8rem;
}

/* LA NEWSLETTER */

.newsletter {
  text-align: center;
}

.newsletter h2 {
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: capitalize;
  padding-bottom: 1rem;
}

.newsletter p {
  font-size: 0.8rem;
  font-weight: 300;
  padding-bottom: 1rem;
  line-height: 1.5;
  max-width: 250px;
  margin: 0 auto;
}

.newsletter form {
  align-self: stretch;
  padding-bottom: 3rem;
}

.newsletter input[type="email"] {
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 250px;
}

.newsletter input[type="email"]:focus {
  border-color: #007bff;
}

.newsletter input[type="submit"] {
  background-color: rgb(0,150,255);
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  text-transform: uppercase;
  margin-left: 10px;
}

/* LE FOOTER */

footer .logo { 
  font-family: 'Orbitron', sans-serif;
  text-decoration: none;
  color: black;
  text-transform: lowercase;
  font-style: italic;
  letter-spacing: 5px;
  font-size: 1rem;
  font-weight: 300;
  margin-right: 10px;
}

footer {
  color: rgb(0, 0, 0);
  text-align: center;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.129);
  padding-top: 1rem;
}