/* ============================== */
/* RESET */
/* ============================== */

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

/* ============================== */
/* BASE */
/* ============================== */

body {
  height: 200vh; /* nécessaire pour le scroll */
  font-size: 30pt;
  font-family: 'hal_scottsdale_unlicenselight';
}

/* ============================== */
/* LOGO */
/* ============================== */

.logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 24px;
  pointer-events: none;
  z-index: -100;
}

#logo-object {
  width: 100%;
  height: auto;
}

.logo svg {
  width: 100%;
  height: auto;
  transition: transform 0.1s linear;
}

.scroll-space {
  height: 65vh;
}

.scroll-to-bottom {
  top: 24px;
  right: 24px;
  z-index: 100000;

  font-size: 30pt;

  background: none;
  border: none;

  cursor: pointer;
  color: black;

  transition: transform 0.3s ease, opacity 0.3s ease;
}

.scroll-to-bottom:hover {
  transform: translateY(4px);
}

/* ============================== */
/* IMAGES */
/* ============================== */



/* Image centrée */

.figure-center {
  text-align: center;
}

.figure-center img {
  margin: 0 auto;
  max-width: 75%;
}

/* Image alignée gauche */

.figure-left {
  display: flex;
  justify-content: flex-start;
}

.figure-left img {
  max-width: 35%;
  margin-left:15%;

}

/* Image alignée droite */

.figure-right {
  display: flex;
  justify-content: flex-end;
}

.figure-right img {
  max-width: 35%;
  margin-right:15%;
}

/* Image grande largeur */

.figure-large img {
  width: 75%;
}


/* ============================== */
/* MENU */
/* ============================== */

.menu {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
  position: relative;
  z-index: 1000;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;

  width: 60%;
  margin-left: 20%;
}

.menu.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu ul {
  list-style: none;
}

.menu li {
  margin: 0.4rem 0;
}

.menu a {
  text-decoration: none;
  color: black;
}

.menu a:hover {
  text-decoration: underline;
    border: 50px solid  yellow;
    background-color: yellow;
    border-radius: 50%;

}

/* Typo menu */

.menu-title {
  margin-bottom: 2rem;
}

.menu-year {
  margin-top: 1.5rem;
  padding: 0.5em;
}

.menu-footer {
  margin-top: 2rem;
  padding: 0.5em;
}

/* ============================== */
/* PAGE INFORMATIONS */
/* ============================== */

.informations {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding-top: 35vh; /* espace sous le logo */
}

.informations-content {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.content {
z-index:100000;
}


/* Texte */

.informations-content p {
  margin-bottom: 2.5rem;
  line-height: 1.35;
}

/* Titres */

.informations-content h1,
.informations-content h2,
.informations-content h3 {
  font-weight: normal;
  margin: 4rem 0 2rem 0;
  line-height: 1.2;
}


 .text h1 {
   margin:0 auto;
   width:60%;
   margin-bottom:30px;
     }

.text {
  margin-top:100px;
  font-size:30pt;
  text-align:center;
  width:60%;
  margin-left:20%;
  z-index:1000000;
  
}

.text p {
background-color: none;
  margin-bottom:25px;
  margin-top:25px;
  }

.text a{
  color:black;
    display: inline;
  }

.text a:hover{
  text-decoration: underline;
    border: 50px solid  yellow;
  background-color: yellow;
border-radius: 50%;
}

.text figure img {
margin-top:15px;  
  margin-bottom:25px;  


}

::selection {
  background-color: #ffb7b7; /* Couleur de fond */
  color: #000000;            /* Couleur du texte */
}

/* Pour Firefox */
::-moz-selection {
  background-color: #ffb7b7;
  color: #000000;
}



/* ============================== */
/* LIENS DE FIN */
/* ============================== */

.informations-links {
  margin: 4rem 0;
}

.informations-links a {
  display: block;
  text-decoration: none;
  color: black;
  margin: 0.6rem 0;
}

.informations-links a:hover {
  text-decoration: underline;
}

/* ============================== */
/* RESPONSIVE */
/* ============================== */

@media (max-width: 768px) {

  body {
    font-size: 20pt;
  }

  .logo {

z-index: 10000;  
  
  }

  .page-home .logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.6s ease, top 0.6s ease;
    z-index: 10000;
  }

   .page-home .logo.is-compact {
    top: 0;
    transform: translate(-50%, 0);
  }


  .menu,
  .informations-content {
    width: 90%;
    margin-left: 5%;
  }

  .figure-left img,
  .figure-right img,
  .figure-center img {
    max-width: 100%;
  }

    .text {
  font-size:20pt;
  text-align:center;
  z-index:1000000;
  width: 90%;
  padding-top:25%;
  margin-left: 5%;
  margin-right: 5%;
}

  .scroll-space {
  height: 50vh;
}

  .text h1 {
  margin:0 auto;
   width:100%;
    font-size: 25pt;
  margin-bottom:30px;

  }

  .text a:hover{
  text-decoration: underline;
    border: 0px solid  white;
    background-color: white;
    border-radius: 0%;
}

.menu a:hover {
  text-decoration: underline;
    border: 0px solid  white;
    background-color: white;
    border-radius: 0%;

}

  /* ============================== */
/* IMAGES */
/* ============================== */


.informations-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Image centrée */

.figure-center {
  text-align: center;
}

.figure-center img {
  margin: 0 auto;
  max-width: 100%;
}

/* Image alignée gauche */

.figure-left {
  display: flex;
  justify-content: flex-start;
}

.figure-left img {
  max-width: 100%;
  margin-left:0%;

}

/* Image alignée droite */

.figure-right {
  display: flex;
  justify-content: flex-end;
}

.figure-right img {
  max-width: 100%;
  margin-right:0%;
}

/* Image grande largeur */

.figure-large img {
  max-width: 100%;
}


}
