@charset "utf-8";

@keyframes shimmer {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}

@media (min-width: 1000px) {
  #vision_about_block {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1.4fr 1fr;
  }

  #hide_when_vertical {
    display: none;
  }

  #about {
    /* j'utilise un flex au lieu d'align-self pour que le border puisse couvrir la totalité du côté gauche */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-left: 1.5px solid #4f2e6e;
    margin-left: unset;
    padding-left: 1rem;
  }

  #about ul {
    margin-left: unset;
    list-style-position: inside;
  }

  #about small {
    font-size: 0.5rem;
    opacity: 50%;
  }
}

#vision p {
  width: 70%;
  text-shadow: 1px 1px 2px black;
}

#vision #vision_p1, #vision_p2, #vision_p3 {
  background-size: cover;
}

#vision #vision_p1 {
  background-image:
    linear-gradient(135deg, rgba(55, 0, 106, 1) 15%, transparent),
    url("../images/guyanne1.jpg");
  background-position: right 60%;
  border-radius: 0 2rem 0 0;
}

#vision #vision_p2 {
  background-image:
    linear-gradient(90deg, rgba(55, 0, 106, 1) 2%, transparent),
    url("../images/sahara.jpg");
  background-position: right 30%;
}

#vision #vision_p3 {
  background-image:
    linear-gradient(45deg, rgba(55, 0, 106, 1) 15%, transparent),
    url("../images/groenland2.jpg");
  background-position: right 90%;
  border-radius: 0 0 2rem 0;
}

#slogan {
  margin: 0;
}

#slogan_title {
  text-align: center;
  margin-top: 1rem;
}

#logo_slogan {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#logo_slogan img {
  border-radius: 50%;
  width: 50%;
}

#logo_slogan figcaption {
  margin: 2rem 0 2rem 0;
  font-size: 3vw;
  font-family: "Varela Round", sans-serif;
  letter-spacing: 0.075rem;
  background: linear-gradient(
    90deg,
    #3a0088 0%,
    #6b00b6 15%,
    #00c2ff 30%,
    #ffd700 50%,
    #00c2ff 70%,
    #6b00b6 85%,
    #3a0088 100%
  );
  text-shadow:
    0 0 15px rgba(0, 194, 255, 0.3),
    0 0 25px rgba(255, 215, 0, 0.2);
  background-clip: text;
  background-size: 400%;
  color: transparent;
  animation: shimmer 16s cubic-bezier(0.45, 0.1, 0.55, 0.9) infinite;
}