/*ajout de la police aclonica*/
@font-face {
  font-family: "aclonicaregular";
  src: url("../fonts/aclonica-regular-webfont.woff2") format("woff2"),
    url("../fonts/aclonica-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/*paramètres générales*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

/*définit la police dans le body et enlève la marge par défaut du body*/
body {
  font-family: "aclonicaregular";
  background-color: #f7f1e9;
  color: white;
}

/*styles du header*/
header {
  background-color: #9c1f4d;
  padding-top: 30px;
  padding-bottom: 50px;
}

/*dimensions du logo de la coupe*/
#logo {
  width: 200px;
  height: 150px;
  transition: 1s ease-in-out;
}

/*curseur en pointe au survol du logo*/
#logo:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: 1s;
}

/*taille de la police du titre*/
#title {
  font-size: 550%;
}

#title:hover {
  cursor: default;
}

/*style du lien des infos*/
#info {
  font-size: 200%;
  transition: 1s ease-in-out;
}

/*style du lien des infos au survol*/
#info:hover {
  cursor: pointer;
  font-size: 250%;
  font-style: italic;
  color: black;
  transition: 1s;
}

/*style pour les balises de lien*/
a {
  color: white;
}

/*style pour la bar de navigation*/
.nav-bar {
  min-height: 70px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/*style pour les barres du logo du  menu hamburger*/
.bar {
  display: block;
  width: 60px;
  height: 8px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
  border-radius: 25px;
}

/*style pour le logo du menu hamburger*/
#hamburger {
  display: block;
  cursor: pointer;
  transition: 2s ease-in-out;
}

/*style pour le logo du menu hamburger au survol*/
#hamburger:hover .bar {
  background-color: black;
  width: 70px;
  height: 12px;
  transition: 1s;
}

/*style pour le menu déroulant*/
#nav-menu {
  display: none;
  justify-content: space-around;
  position: absolute;
  top: 235px;
  gap: 0;
  background: linear-gradient(180deg, #9c1f4d, black);
  width: 100%;
  text-align: center;
  transition: 0.3s;
}

/*style pour les liens du menu déroulant*/
.nav-item {
  margin: 30px 0;
  font-size: 100%;
}

/*style pour les liens du menu au survol*/
.nav-link:hover {
  cursor: pointer;
  font-style: italic;
}

/*le lien de la page sur laquelle on se trouve a une couleur de texte différentes */
#actu {
  color: #00c3ab;
}

/*couleur de fond du footer*/
footer {
  background-color: black;
}

/*ajoute des marges internes pour le footer*/
.nav-footer {
  padding: 40px;
}

/*style pour le logo des contacts*/
#image-contact {
  width: 100px;
  height: 100px;
  transition: 1s ease-in-out;
}

/*style pour le logo fifa*/
#logo-fifa {
  width: 180px;
}

/*display flex pour le footer*/
.nav-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*display flex pour le container 1*/
#container1 {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/*style pour les liens du footer*/
.item-footer {
  margin: auto 50px;
  font-size: 150%;
  transition: 1s ease-in-out;
}

/*style pour les liens du footer au survol*/
.item-footer:hover {
  font-style: italic;
  transform: scale(1.1);
  color: #9c1f4d;
  transition: 1s;
}

/*style pour le logo des contacts au survol*/
#image-contact:hover {
  transform: scale(1.1);
  transition: 1s;
}

/*la partie responsive*/
@media screen and (max-width: 1000px) {
  #title {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  #logo-fifa {
    display: none;
  }
}
