:root {
  --color-background: rgba(0, 0, 0, 0.65);
  --color-text: #fff;
}
* {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--color-background);
}
#logo {
  height: 100px;
}
#logo:hover {
  animation-name: rotate;
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
nav {
  display: flex;
  justify-content: center;
  /* position: absolute; */
  z-index: 99;
}
ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.aNav {
  text-decoration: none;
  color: var(--color-text);
  display: block;
  padding: 10px 20px;
  width: 100px;
  text-align: center;
  font-size: 0.8rem;
}
ul ul {
  display: none;
  position: absolute;
}
li:hover > ul {
  display: block;
  background-color: var(--color-background);
}

ul li:hover > ul > li {
  display: flex;
}
ul ul li:hover {
  border-right: 4px solid var(--color-text);
}
ul ul li {
  border-right: 4px solid transparent;
}
.pays {
  position: absolute;
  right: 140px;
  background-color: rgba(0, 0, 0, 0.4) !important;
}

.btn {
  border: 2px solid rgba(0, 0, 0, 0.6);
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 1%;
  position: fixed;
  bottom: 120px;
  right: 20px;
  cursor: pointer;
  font-weight: bold;
  /* margin: 0 10px 10px 0; */
}
#link-btn {
  color: #000;
}
.btn:hover {
  background-color: rgba(255, 255, 255, 1);
  transition: 0.3s;
}

footer {
  background-color: var(--color-background);
  color: var(--color-text);
  text-align: center;
  padding: 1% 0;
}
footer a {
  text-decoration: none;
  color: var(--color-text);
}

/* MEDIA QUERY POUR MOBILE / BURGER */
@media screen and (max-width: 768px) and (min-width: 426px) {
  main {
    overflow-x: hidden;
  }
  header {
    display: flex;
    flex-direction: column;
  }

  .aNav {
    font-size: 15px;
  }

  #link-btn {
    display: none;
  }
}

@media screen and (max-width: 425px) {
  main {
    overflow-x: hidden;
  }
  header {
    display: flex;
    flex-direction: column;
  }

  .pays {
    font-size: 10px;
    right: 120px;
  }
  .aNav {
    padding: 10px 10px;
  }

  #link-btn {
    display: none;
  }
}

/* Animation si besoin ! Juste a appliquer dans une class pour faire marcher l'animation */

/* VERTICAL TOP */

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

/* ____________ */

/* HORIZONTAL RIGHT */

.revealHR {
  position: relative;
  transform: translateX(150px);
  opacity: 0;
  transition: 2s all ease;
}

.revealHR.active {
  transform: translateX(0);
  opacity: 1;
}

/* ________________ */

/* HORIZONTAL LEFT */

.revealHL {
  position: relative;
  transform: translateX(-150px);
  opacity: 0;
  transition: 2s all ease;
}

.revealHL.active {
  transform: translateX(0);
  opacity: 1;
}

/* _______________ */
