@font-face
{
  font-family: "playground";
  src: url("/fonts/playground.woff2") format("woff2");
  font-display: swap;
}

@font-face
{
    font-family: DoctorGlitch;
    src: url(/fonts/DoctorGlitch.woff2);
}

@font-face
{
    font-family: Ford;
    src: url(/fonts/Ford.woff2);
}

.fontFord{
    font-family: 'Ford';
}

.fontDoctor{
    font-family: 'DoctorGlitch';
}

body {
    background-color: black;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    background-image: url('/img/backink.webp');
    background-position: center;
    background-repeat: no-repeat; 
    background-size: cover;
    @media screen and (max-width: 1920px) {
        font-size: 1.1rem;
    }

    @media screen and (max-width: 992px) {
        font-size: 1rem;
    }

    @media screen and (max-width: 768px) {
        font-size: 0.75rem;
    }

    @media screen and (max-width: 576px) {
        font-size: 0.65rem;
    }
}

.content {
    position: relative;
    z-index: 2; 
}

.navbar{
    z-index: 2;
}


h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  h4 {
    font-size: 1.5rem;
  }
  
  h5 {
    font-size: 1.25rem;
  }
  p {
    font-size: 1rem;
  }
  li {
    font-size: 1rem;
  }
  .list-group {
    font-size: 1rem;
  }
  

  @media (max-width: 767px) {
    h1 {
      font-size: 2rem; 
    }
  
    h2 {
      font-size: 1.75rem;
    }
  
    h3 {
      font-size: 1.5rem;
    }
  
    h4 {
      font-size: 1.25rem;
    }
  
    h5 {
      font-size: 1rem;
    }
    p {
        font-size: 0.875rem;
      }
    li {
      font-size: 0.875rem;
    }
    .list-group {
      font-size: 0.875rem;
    }
  }
  
  @media (max-width: 479px) {
    h1 {
      font-size: 1.5rem; 
    }
  
    h2 {
      font-size: 1.25rem;
    }
  
    h3 {
      font-size: 1rem;
    }
  
    h4 {
      font-size: 0.875rem;
    }
  
    h5 {
      font-size: 0.750rem;
    }
    p {
        font-size: 0.700rem;
      }
    li {
      font-size: 0.700rem;
    }
    .list-group {
      font-size: 0.700rem;
    }
  }

.text-justify {
    text-align: justify;
}

.para_left {
  position: relative;
  display: inline-block; 
  text-decoration: none; 
  color: white;
  font-weight: bold; 
}
  
.para_left::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 50;
    height: 0.1rem;
    width: 0;
    background-color: #ff3cec;
    transition: width 0.3s ease-in-out; 
  }
  
.para_left:hover::after {
  width: 100%;
}

.logo-nav{
    background-color: transparent;
    transition: transform 400ms;
}

.logo-nav:hover{
    transform: scale(1.05);
    animation: Animation_left 0.5s linear infinite;
    border-color: transparent;
}

.custom-link {
  color: #f710ff;

}

.custom-link:hover {
  color: #f41cfff8;;
  text-decoration: underline;
}

.custom-link:active {
  color: #d731c1; 
}

.custom-link:visited {
  color: #dd36ec; 
}


.custom-nav-link {
  position: relative;
  padding-bottom: 5px; 
}

.custom-nav-link::after {
  content: "";
  display: block;
  height: 0.25rem;
  width:0.25rem; 
  background-color: transparent;
  border-radius: 50%; 
  transition: background-color 0.3s;
  margin: auto;
  position: absolute;
  left: 50%; 
  transform: translateX(-50%);
  bottom: 0; 
}

.custom-nav-link.active::after {
  background-color: #ff3cec;
}

.flou{
  backdrop-filter: blur(20px) !important;
}

.custom-nav-link:hover:after {
  background-color: transparent;
}

.custom-text {
  display: inline-block;
}

.infos-container{
  @media screen and (max-width: 1920px) {
    max-width: 25% !important;
  }
  @media screen and (max-width: 992px) {
      max-width:40% !important;
  }
  @media screen and (max-width: 768px) {
      max-width: 40% !important;
  }
  @media screen and (max-width: 576px) {
      max-width: 45% !important;
  }
  @media screen and (max-width: 390px) {
    max-width: 60% !important;
  }
}
/* Style pour le bandeau d'information */
.info-banner {
  background-color: #93008b;
  color: white;
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  text-align: center;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}

.info-banner.show {
  transform: translateY(0);
}
/* Décalage du contenu pour ne pas être masqué par le bandeau */
.main-content {
  padding-top: 30px;
}