/* Reset CSS pour enlever les marges et les paddings par défaut */
body, ul {
    margin: 0;
    padding: 0;
  }
  
  /* Styles pour le header et les éléments du menu */
  header {
    position: fixed;
    top: 0px;
    width: 100%;
    background-color: none;
    color: #fff;
    display: flex;
    justify-content:space-between ;
    align-items: center;
    padding: 20px;
    margin-right: 20px;
    height: 20px;
    z-index: 1000; /* Définissez un z-index plus élevé */
  }
  
  header:hover {
    background-color: black; 
    transition: 0.2ms; 
   
  }
  

  nav {
    flex-grow: 1;
    text-align: center;
  }
  
  
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  
  nav ul li {
    display: inline;
    margin-left: 10px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
  }

  .brand {
    margin-left: 0px;
    padding-right: 0px;
  }

  .icons {
    display: flex;
    align-items: center;
    color: white;
    margin-right: 35px;
  }

  .icons a {
    margin-left: 15px;
  }
  
  .icons img {
    width: 30px; /* Ajuste la taille de tes icônes */
    height: auto;
  }
  
  

  /* Styles pour la section de l'image principale */
  .main-image {
    position: relative;
    background-size: cover; /* Ajuste la taille de l'image pour remplir l'espace de <main> */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Empêche la répétition de l'image */
    height: 100vh; /* Utilise 100% de la hauteur de la fenêtre du navigateur */
    background-attachment: fixed; /* Fixe l'image de fond */
    display: flex; /* Utilisation de flexbox pour aligner le contenu */
    justify-content: ; /* pour pouvoir aligner ou position tout le contenues dans mon mian */
    align-items: center; /* Centre verticalement le contenu */
    z-index: 100; /* Définissez un z-index plus élevé */
  }
  
  .main-image img {
    display: block;
    width: 100%;
    height: 900px;
  }
  
  .button-action {
    position: absolute;
    bottom: 10px; /* Distance du bas de l'image */
    left: 50%; /* Placement à 50% de la largeur */
    transform: translateX(-50%); /* Centrage horizontal */
    padding: 10px 20px;
    background-color: red;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    border-radius: 5px;
  }
  
  .button-action:hover {
    background-color: #e65c00;
  }
  .button-promo {
    position: absolute;
    bottom: 10px; /* Distance du bas de l'image */
    left: 10px; /* Distance de la gauche de l'image */
    padding: 10px 20px;
    background-color: rgb(231, 222, 222);
    color: black;
    text-decoration: none;
    font-size: 15px;
    border-radius: 5px;
  }

  .button-promo:hover {
    background-color: rgb(20, 122, 230);
    color: #fff;}

  /* Styles pour les icônes et leur conteneur */
.icon-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  }
  
  .icons {
    display: flex;
    font-size: 10px;
    margin-left: 10px; /* Marge entre les icônes */
  }



  /* Icônes SVG en CSS */
    
  /* Répétez pour chaque icône (références de fichiers d'icônes à adapter) */

  
  
  /* Autres styles pour le header, la marque, le menu, etc. */


  
footer {
  background-color: black;
  height: 350px;
  
}

.icons-footer{
  display: flex;
  align-items: ;
  justify-content: center;
  float: left;
  margin-left: 50px;
}

.icons-footer ul{

  list-style: none;
  padding: 0;
  margin: 40px;
  display: inline-flex;
}

.icons-footer ul li {
}

.icons-footer ul li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.footer-contents {
  
  display: flex;
  margin-bottom: 0px;
  margin-top: 0px

}

.footer-list {
  padding-right: 90px;
  padding-top: 75px;
  
}


ul {
  list-style: none;
  padding: 0;
  color: white;
  padding-top: 20px;
  margin-right: 0px;
}

/* Styles pour le copyright */
footer .copyright {
  margin: 20px;

}