/*cache les liens*/
a {
    text-decoration: none; 
    color: inherit; 
  }

  /*trucs*/



  
  h1{
    font-family: "Smooch Sans", serif;
    font-size: xx-large;
    position: relative;
    text-align: center;
  }

  h2{
    font-family: "Smooch Sans", serif;
    font-size: x-large;
  }
  .smooch-sans-uniquifier {
    font-family: "Smooch Sans", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
  }

/* Header */

#videobanner {
  width:100%;
;
}

.videobanner {
width: 100%;

}

header{
  border-radius: 7px;
    background-color: #140409;
    background-repeat: no-repeat;
    height: 90px;
    display: block;
    width: 1500px;
    margin: auto;
    transition: 0.5s;
    transition-property: box-shadow;
}

header:hover {
  box-shadow: 0 0 5px rgb(124, 2, 2),
              0 0 25px rgb(223, 48, 4),
              0 0 50px rgb(224, 67, 5),
              0 0 100px rgb(204, 66, 2);
}


nav ul{
    
    display: flex;
    position: absolute;
    left: 300px;
    top: 40px;
    list-style: none;
    
}
nav ul li{
    margin: 30px;
}

.boton-elegante {
  margin-top: -20px;
  margin-right: 25px;
    padding: 15px 30px;
    border: 2px solid #140409;
    background-color: #140409;
    color: #ffffff;
    font-size: 12px;
    font-family: "Smooch Sans", sans-serif;
    font-size: x-large;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    font-weight: bold;
  }
  
  .boton-elegante::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle,
      rgba(255, 187, 0, 0.274) 0%,
      rgba(255, 136, 0, 0.199) 70%
    );
    transform: scale(0);
    transition: transform 0.5s ease;
  }
  
  .boton-elegante:hover::after {
    transform: scale(4);
  }
  
  .boton-elegante:hover {
    border-color: #d11e11;
    background: #d11e11;
  }


  
#icone{
  position: relative;
  width: 70px;
  border-radius: 50px;
  margin-top: 7px;
  margin-left: 40px;

}


/* Footer */
  
 .footer {
  width: 1080px;
    border: none;
    font-family: "Smooch Sans", serif;
    font-size: large;
    color: #fff;
    border-radius: 7px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.5s;
    transition-property: box-shadow;
    
    text-align: center;
    position: relative;
    justify-content: center;
    width: 100%;
    margin: -12px auto 20px auto;
    padding:20px;
    padding-top:50px;
  }
  
  .footer {
    background: #140409;
    box-shadow: 0 0 25px #140409;
  }
  
  .footer:hover {
    box-shadow: 0 0 5px rgb(124, 2, 2),
                0 0 25px rgb(223, 48, 4),
                0 0 50px rgb(224, 67, 5),
                0 0 100px rgb(204, 66, 2);
  }
  








  /*index accueil*/

body {
  overflow-x: hidden;
  width: 100%;
    background-color: #000000;
    background-image: url("https://preview.redd.it/high-quality-in-rainbows-desktop-background-v0-vvq3pmz35pea1.jpg?auto=webp&s=c7f47171abc1f988c7d8058b73b1af656db44404");
    background-color: rgba(0, 0, 0, 0.795);
    background-blend-mode: overlay;
    background-size: cover; 
    background-position: center ;
    background-repeat: no-repeat; 
    margin: 0;
    padding: 0;
    color: white;
  }

  
  .center{
    position: relative;
    justify-content: center;
    width: 1080px;
    margin: -12px auto 20px auto;
    padding:20px;
    padding-top:50px;
}



  p{
    font-family: "Smooch Sans", serif;
    font-size: larger;
    color: white;
  }

  .list{
    font-family: "Smooch Sans", serif;
    font-size: larger;
    color: white;
  }

  .frame {
    position: relative;
    display: inline-block;
    padding: 10px;
    background: black;
    box-shadow: 0 0 20px red, 0 0 40px orange, 0 0 60px rgb(255, 17, 0);
    animation: glow 2s infinite;
    
  }
  
  .frame img {
    position: relative;
  left: 36%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(219, 126, 4, 0.5);
  }
  
  .image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px; 
    padding: 40px;
    justify-content: center;
    align-items: center;
  }
  
  .gallery-item {
    position: relative;
    width: 100%; 
    padding-top: 100%; 
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 
                0 0 30px rgba(202, 52, 6, 0.8),
                0 0 45px rgba(255, 69, 0, 0.8);
  }
  
  .gallery-item img {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-item img:hover {
    transform: scale(1.05); 
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7), 
                0 0 50px rgba(255, 215, 0, 1),
                0 0 75px rgba(255, 69, 0, 1);
  }
  

  /*texte*/
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #140409a1; /* Fond semi-transparent */
  color: white;
  font-family: "Smooch Sans", serif;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Affichage du texte au survol */
.gallery-item:hover .overlay {
  opacity: 1;
}





  .btn-23,
  .btn-23 *,
  .btn-23 :after,
  .btn-23 :before,
  .btn-23:after,
  .btn-23:before {
    border: 0 solid;
    box-sizing: border-box;
  }
  
  .btn-23 {
    -webkit-tap-highlight-color: transparent;
    background-color: #140409;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-family: "Smooch Sans", serif;
    font-size: larger;
    
    line-height: 1.5;
    margin: 0;
    margin-left: 70%;
   
    position: relative;
    margin-top: -40%;
  
    
    padding: 0;
    text-transform: uppercase;
  }

  .btn-23:-moz-focusring {
    outline: auto;
  }
  
  .btn-23 svg {
    display: block;
    
  }
  
  .btn-23 [hidden] {
    display: none;
  }
  
  .btn-23 {
    border-radius: 99rem;
    border-width: 2px;
    overflow: hidden;
    padding: 0.8rem 3rem;
    position: relative;
  }
  
  .btn-23 span {
    display: grid;
    inset: 0;
    place-items: center;
    position: absolute;
    transition: opacity 0.2s ease;
  }
  
  .btn-23 .marquee {
    --spacing: 5em;
    --start: 0em;
    --end: 5em;
    -webkit-animation: marquee 1s linear infinite;
    animation: marquee 1s linear infinite;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    opacity: 0;
    position: relative;
    text-shadow: #fff var(--spacing) 0, #fff calc(var(--spacing) * -1) 0,
      #fff calc(var(--spacing) * -2) 0;
  }
  
  .btn-23:hover .marquee {
    -webkit-animation-play-state: running;
    animation-play-state: running;
    opacity: 1;
  }
  
  .btn-23:hover .text {
    opacity: 0;
  }
  
  @-webkit-keyframes marquee {
    0% {
      transform: translateX(var(--start));
    }
  
    to {
      transform: translateX(var(--end));
    }
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(var(--start));
    }
  
    to {
      transform: translateX(var(--end));
    }
  }


  .btn-21,
  .btn-21 *,
  .btn-21 :after,
  .btn-21 :before,
  .btn-21:after,
  .btn-21:before {
    border: 0 solid;
    box-sizing: border-box;
  }
  
  .btn-21 {
    -webkit-tap-highlight-color: transparent;
    background-color: #140409;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-family: "Smooch Sans", serif;
    font-size: larger;
    
    line-height: 1.5;
    margin: 0;
    margin-left: 0%;
   
    position: relative;
    
  
    
    padding: 0;
    text-transform: uppercase;
  }

  .btn-21:-moz-focusring {
    outline: auto;
  }
  
  .btn-21 svg {
    display: block;
    
  }
  
  .btn-21 [hidden] {
    display: none;
  }
  
  .btn-21 {
    border-radius: 99rem;
    border-width: 2px;
    overflow: hidden;
    padding: 0.8rem 3rem;
    position: relative;
  }
  
  .btn-21 span {
    display: grid;
    inset: 0;
    place-items: center;
    position: absolute;
    transition: opacity 0.2s ease;
  }
  
  .btn-21 .marquee {
    --spacing: 5em;
    --start: 0em;
    --end: 5em;
    -webkit-animation: marquee 1s linear infinite;
    animation: marquee 1s linear infinite;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    opacity: 0;
    position: relative;
    text-shadow: #fff var(--spacing) 0, #fff calc(var(--spacing) * -1) 0,
      #fff calc(var(--spacing) * -2) 0;
  }
  
  .btn-21:hover .marquee {
    -webkit-animation-play-state: running;
    animation-play-state: running;
    opacity: 1;
  }
  
  .btn-21:hover .text {
    opacity: 0;
  }
  
  @-webkit-keyframes marquee {
    0% {
      transform: translateX(var(--start));
    }
  
    to {
      transform: translateX(var(--end));
    }
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(var(--start));
    }
  
    to {
      transform: translateX(var(--end));
    }
  }
  
  
  nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    margin: 0 20px;
  }
  
  
  button{
    font-family: "Smooch Sans", serif;
    margin-left: 43%;
    font-size: larger;
    padding: 1em 2.7em;
    font-weight: 500;
    background: #3b5282;
    color: rgb(255, 255, 255);
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 0.6em;
    cursor: pointer;
  }
  

  










  /*Galerie*/

.button {
    position: relative;
    display: flex;
    margin:auto;
    
    background-color: #00DA5A;
    color: #ffffff;
    padding: 0.5rem 1.4rem;
    font-size: 30px;
    line-height: 1.25rem;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    border-radius: 0.5rem;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: .6s ease;
  }
  
  .button svg {
    height: 30px;
  }
  
  .button:hover {
    box-shadow: none;
  }
  
  .playing {
    display: flex;
    justify-content: center;
    gap: 2px; 
    width: 1400px; 
    height: 200px; 
  }
  
  .greenline {
    position: relative;
    
    
    background-color: #ffffff86; 
    width: 1400px; 
    height: 200px; 
    margin:auto;
    transform-origin: bottom; 
  }
  
  .line-1 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.2s;
  }
  
  .line-2 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.4s;
  }
  
  .line-3 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.6s;
  }
  
  .line-4 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.8s;
  }
  
  .line-5 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 1s;
  }
  
  .line-6 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.2s;
  }
  
  .line-7 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.4s;
  }
  .line-8 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.6s;
  }
  .line-9 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.8s;
  }
  .line-10 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 1s;
  }
  .line-11 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.2s;
  }
  
  .line-12 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.4s;
  }
    .line-13 {
      animation: playing 1s infinite ease-in-out;
      animation-delay: 0.6s;
  }
  .line-14 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.8s;
  }
  .line-15 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 1s;
  }
  .line-16 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.2s;
  }
  .line-17 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.4s;
  }
  .line-18 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.6s;
  }
  .line-19 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 0.8s;
  }
  .line-20 {
    animation: playing 1s infinite ease-in-out;
    animation-delay: 1s;
  }
  @keyframes playing {
    0% {
      transform: scaleY(0.1); /* Ligne presque invisible */
    }
    50% {
      transform: scaleY(1); /* Ligne pleine hauteur */
    }
    100% {
      transform: scaleY(0.1); /* Ligne presque invisible */
    }
  }

  .gallery {
    margin: auto;
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
    justify-content: center; 
    padding: 20px;
}

.gallery img {
  margin: auto;
    flex: 0 0 15%;
    max-width: 15%; 
    height: auto; 
    object-fit: cover; 
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s, box-shadow 0.3s; 
}

.gallery img:hover {
    transform: scale(1.05); 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    
}


input[type="submit"] {
  background-color: #e89827; 
  color: white; 
  font-size: 23px; 
  font-weight: bold;
  border-radius: 5px; 
  padding: 5px 20px; 
  cursor: pointer; 
  transition: background-color 0.3s ease; 
}

input[type="submit"]:hover {
  background-color: #d94325; 
}









  /* Données */

th, td{
    border: none;
    border-color: #ffffff;
  }
  
  .paginate_button:hover{
    background: #140409 !important;
  }
  
    main{
      color: white;
      font-family: "Smooch Sans", serif;
      font-size: large;
      position: relative;
      justify-content: center;
      width: 1080px;
      margin: -12px auto 20px auto;
      padding:20px;
      padding-top:50px;
    }
  
  
  .container {
    padding: 0;
    margin:  auto;
    box-sizing: border-box;
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .wave {
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }
  .wave:nth-child(1) .bar {
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
    width: 2px;
    height: 220px;
    background-color: #ccc;
  }
  .wave:nth-child(n + 2) .bar {
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
    -webkit-animation:
      barHeight 3.9s infinite ease-in-out alternate,
      barSkew 3.9s infinite ease-in-out alternate;
    animation:
      barHeight 3.9s infinite ease-in-out alternate,
      barSkew 3.9s infinite ease-in-out alternate;
  }
  .wave .bar:nth-child(1) {
    -webkit-animation-delay: calc(var(--f) * 0), calc(var(--f) * 0 - 1.95s);
    animation-delay: calc(var(--f) * 0), calc(var(--f) * 0 - 1.95s);
  }
  .wave .bar:nth-child(2) {
    -webkit-animation-delay: calc(var(--f) * 1), calc(var(--f) * 1 - 1.95s);
    animation-delay: calc(var(--f) * 1), calc(var(--f) * 1 - 1.95s);
  }
  .wave .bar:nth-child(3) {
    -webkit-animation-delay: calc(var(--f) * 2), calc(var(--f) * 2 - 1.95s);
    animation-delay: calc(var(--f) * 2), calc(var(--f) * 2 - 1.95s);
  }
  .wave .bar:nth-child(4) {
    -webkit-animation-delay: calc(var(--f) * 3), calc(var(--f) * 3 - 1.95s);
    animation-delay: calc(var(--f) * 3), calc(var(--f) * 3 - 1.95s);
  }
  .wave .bar:nth-child(5) {
    -webkit-animation-delay: calc(var(--f) * 4), calc(var(--f) * 4 - 1.95s);
    animation-delay: calc(var(--f) * 4), calc(var(--f) * 4 - 1.95s);
  }
  .wave .bar:nth-child(6) {
    -webkit-animation-delay: calc(var(--f) * 5), calc(var(--f) * 5 - 1.95s);
    animation-delay: calc(var(--f) * 5), calc(var(--f) * 5 - 1.95s);
  }
  .wave .bar:nth-child(7) {
    -webkit-animation-delay: calc(var(--f) * 6), calc(var(--f) * 6 - 1.95s);
    animation-delay: calc(var(--f) * 6), calc(var(--f) * 6 - 1.95s);
  }
  .wave .bar:nth-child(8) {
    -webkit-animation-delay: calc(var(--f) * 7), calc(var(--f) * 7 - 1.95s);
    animation-delay: calc(var(--f) * 7), calc(var(--f) * 7 - 1.95s);
  }
  .wave .bar:nth-child(9) {
    -webkit-animation-delay: calc(var(--f) * 8), calc(var(--f) * 8 - 1.95s);
    animation-delay: calc(var(--f) * 8), calc(var(--f) * 8 - 1.95s);
  }
  .wave .bar:nth-child(10) {
    -webkit-animation-delay: calc(var(--f) * 9), calc(var(--f) * 9 - 1.95s);
    animation-delay: calc(var(--f) * 9), calc(var(--f) * 9 - 1.95s);
  }
  .wave .bar:nth-child(11) {
    -webkit-animation-delay: calc(var(--f) * 10), calc(var(--f) * 10 - 1.95s);
    animation-delay: calc(var(--f) * 10), calc(var(--f) * 10 - 1.95s);
  }
  .wave .bar:nth-child(12) {
    -webkit-animation-delay: calc(var(--f) * 11), calc(var(--f) * 11 - 1.95s);
    animation-delay: calc(var(--f) * 11), calc(var(--f) * 11 - 1.95s);
  }
  .wave .bar:nth-child(13) {
    -webkit-animation-delay: calc(var(--f) * 12), calc(var(--f) * 12 - 1.95s);
    animation-delay: calc(var(--f) * 12), calc(var(--f) * 12 - 1.95s);
  }
  .wave .bar:nth-child(14) {
    -webkit-animation-delay: calc(var(--f) * 13), calc(var(--f) * 13 - 1.95s);
    animation-delay: calc(var(--f) * 13), calc(var(--f) * 13 - 1.95s);
  }
  .wave .bar:nth-child(15) {
    -webkit-animation-delay: calc(var(--f) * 14), calc(var(--f) * 14 - 1.95s);
    animation-delay: calc(var(--f) * 14), calc(var(--f) * 14 - 1.95s);
  }
  .wave .bar:nth-child(16) {
    -webkit-animation-delay: calc(var(--f) * 15), calc(var(--f) * 15 - 1.95s);
    animation-delay: calc(var(--f) * 15), calc(var(--f) * 15 - 1.95s);
  }
  .wave .bar:nth-child(17) {
    -webkit-animation-delay: calc(var(--f) * 16), calc(var(--f) * 16 - 1.95s);
    animation-delay: calc(var(--f) * 16), calc(var(--f) * 16 - 1.95s);
  }
  .wave .bar:nth-child(18) {
    -webkit-animation-delay: calc(var(--f) * 17), calc(var(--f) * 17 - 1.95s);
    animation-delay: calc(var(--f) * 17), calc(var(--f) * 17 - 1.95s);
  }
  .wave .bar:nth-child(19) {
    -webkit-animation-delay: calc(var(--f) * 18), calc(var(--f) * 18 - 1.95s);
    animation-delay: calc(var(--f) * 18), calc(var(--f) * 18 - 1.95s);
  }
  .wave .bar:nth-child(20) {
    -webkit-animation-delay: calc(var(--f) * 19), calc(var(--f) * 19 - 1.95s);
    animation-delay: calc(var(--f) * 19), calc(var(--f) * 19 - 1.95s);
  }
  .wave .bar:nth-child(21) {
    -webkit-animation-delay: calc(var(--f) * 20), calc(var(--f) * 20 - 1.95s);
    animation-delay: calc(var(--f) * 20), calc(var(--f) * 20 - 1.95s);
  }
  .wave .bar:nth-child(22) {
    -webkit-animation-delay: calc(var(--f) * 21), calc(var(--f) * 21 - 1.95s);
    animation-delay: calc(var(--f) * 21), calc(var(--f) * 21 - 1.95s);
  }
  .wave .bar:nth-child(23) {
    -webkit-animation-delay: calc(var(--f) * 22), calc(var(--f) * 22 - 1.95s);
    animation-delay: calc(var(--f) * 22), calc(var(--f) * 22 - 1.95s);
  }
  .wave .bar:nth-child(24) {
    -webkit-animation-delay: calc(var(--f) * 23), calc(var(--f) * 23 - 1.95s);
    animation-delay: calc(var(--f) * 23), calc(var(--f) * 23 - 1.95s);
  }
  .wave[data-level="1"] .bar {
    width: 11px;
    background-color: #fff;
    --f: -0.24375s;
    --h: 40px;
  }
  .wave[data-level="2"] .bar {
    width: 8px;
    background-color: #eee;
    --f: -0.4875s;
    --h: 100px;
  }
  .wave[data-level="3"] .bar {
    width: 5px;
    background-color: #ddd;
    --f: -0.325s;
    --h: 120px;
  }
  
  @-webkit-keyframes barHeight {
    from {
      height: var(--h);
    }
    to {
      height: calc(var(--h) + 50px);
    }
  }
  
  @keyframes barHeight {
    from {
      height: var(--h);
    }
    to {
      height: calc(var(--h) + 50px);
    }
  }
  @-webkit-keyframes barSkew {
    from {
      transform: skewY(30deg);
    }
    to {
      transform: skewY(-30deg);
    }
  }
  @keyframes barSkew {
    from {
      transform: skewY(30deg);
    }
    to {
      transform: skewY(-30deg);
    }
  }

  








/* crédits */

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto;
  
  padding-top: 60px;
}

.cards .black {
  background-color: #120b0b;
  margin: auto;
}

.cards .brown {
  background-color: #803121;
  margin: auto;
}

.cards .blue {
  background-color: #4b576e;
  margin: auto;
}

.cards .blue2{
  background-color: #7e8794;
  margin: auto;
}

.cards .blueclair{
  background-color: #bac7d1;
  margin: auto;
}


.cards .card {
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 200px;
  width: 450px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 400ms;
}

.cards .card p.tip {
  font-size: larger;
  font-weight: 700;
  margin: auto;
}

.cards .card p.second-text {
  font-size: large;
  margin: auto;
}

.cards .card:hover {
  transform: scale(1.1, 1.1);
  margin: auto;
}

.btn {
  font-family: "Smooch Sans", serif;
  font-size: large;
  display: inline-block;
  background-color: #ffffff; 
  color: rgb(0, 0, 0); 
  padding: 10px 15px;
  text-decoration: none; 
  border-radius: 5px; 
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e4e7eb;
}










/* contact */



input[type="radio"].demo5 {
  display: none;
}
input[type="radio"].demo5 + label {
  position: relative;
  padding-left: 1.3rem;
}
input[type="radio"].demo5 + label::before,
input[type="radio"].demo5 + label::after {
  display: block;
  position: absolute;
  box-sizing: border-box;
  bottom: 0;
  left: 0;
  content:'';
  width: 1rem;
  height: 1rem; 
  border-radius: 1rem;
}
input[type="radio"].demo5 + label::before {
  border: 1px solid #140409;
  background-color: #eee;
}
input[type="radio"].demo5:checked + label::after {
  background-color: #d94325;
  
}


form {
  margin: auto;
  font-family: "Smooch Sans", serif;
  font-size: x-large;
  background-color: #140409;
  width: 500px;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

#en-tete {
  font-family: "Smooch Sans", serif;
  display: flex;
  gap: 80px;
}

label {
  font-family: "Smooch Sans", serif;
  font-size: x-large;
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

input, textarea {
  font-family: "Smooch Sans", serif;
  font-size: large;
  width: 100%;
  height: 35px;
  padding: 5px;
  margin-top: 5px;
  border-radius: 5px;
  border: none;
  outline: none;
}

textarea {
  font-family: "Smooch Sans", serif;
  font-size: x-large;
  height: 100px;
  resize: none;
}

#send {
  font-family: "Smooch Sans", serif;
  margin-top: 15px;
  width: 100%;
  height: 40px;
  padding: 5px 20px; 
  background-color: #e89827;
  color: white;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

#send:hover {
  font-size: x-large;
  background-color: #d94325;
}

span {
  font-size: x-large;
  color: #ffffff;
}

.carousel {
  position: relative;
  margin: auto;
  width: 80%;
  max-width: 700px;
  margin: 20px auto; 
  overflow: hidden;
  position: relative;
}

.carousel-images {
  display: flex;
  animation: slide 9s infinite;
}

.carousel-images img {
  width: 100%; 
  flex-shrink: 0; 
}

@keyframes slide {
  0%, 20% {
    transform: translateX(0); 
  }
  25%, 45% {
    transform: translateX(-100%); 
  }
  50%, 70% {
    transform: translateX(-200%); 
  }
  75%, 100% {
    transform: translateX(0); 
  }
}









/*partenaire*/


/* Style global de la section partenaires */
.partners-container {
  font-family: "Smooch Sans", serif;
    max-width: 1080px;
    margin: 50px auto;
    text-align: center;
    padding: 20px;
    color: white;
}

/* Titres principaux */
.partners-container h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    
    margin-bottom: 20px;
}

/* Texte de présentation et motivations*/
.presentation, .motivations {
    width: 80%;
    margin: 0 auto 40px;
}

.presentation p, .motivations p {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.6;
}

/*Grille des partenaires (2x2)*/
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    justify-content: center;
    margin-bottom: 50px;
}

/*Style des cartes*/
.partner-card {
    background: #140409c9;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 
                0 0 15px rgba(223, 152, 119, 0.5);
    transition: transform 0.2s ease-in-out;
    position: relative;
}

/*Hover sur les cartes */
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(133, 7, 7, 0.8), 
              0 0 30px rgba(199, 123, 10, 0.8);
}
/* Image de profil */
.partner-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #140409;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #e6904e;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px #140409;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Effet au survol */
.partner-card img:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0px 0px 15px #e6904e;
}


.partner-card {
  position: relative;
}

.partner-card:hover::after {
  content: "✨👋";
  font-size: 20px;
  position: absolute;
  top: -13%;
  left: 50%;
  animation: float-hearts 1s ease-out infinite;
  opacity: 0;
  transform: translate(-50%, -50%);
}



@keyframes float-hearts {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -70%) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -100%) scale(1);
  }
}


/*Contenu des cartes*/
.card-content {
  padding-top: 50px;
}

/*Nom du membre*/
.partner-card h3 {
  font-size: 1.5rem;
  color: #f5e6e0;
  text-shadow: 0 0 5px rgba(172, 44, 5, 0.8);
  margin-bottom: 10px;
}

/*Texte de présentation*/
.partner-card p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 15px;
}

/*Lien du site*/
.partner-card a {
  background-color: #140409;
  padding: 5px;
  border-radius: 15px;
  text-decoration: none;
  color: #c71e23;
  font-weight: bold;
  transition: color 0.3s;
}

.partner-card a:hover {
  color: #f08c1a;
}

/*Liens des projets en bas*/
.project-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.project-links a {
  background-color: #140409;
  padding: 5px;
  border-radius: 15px;
  color: #c71e23;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.project-links a:hover {
  color: #f08c1a;
}