
  body{

    font-family: 'Futura', sans-serif;
    scroll-behavior: smooth;
    background: linear-gradient(270deg, #0f0033, #3b1b00, #2d003f, #003549, #003a29, #240033);
    background-size: 1200% 1200%;
    animation: degradeAnime 40s ease infinite;
        cursor: none;
      
  }

  #custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: rgba(0, 224, 255, 0.6);
    border: 2px solid #00e0ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, background-color 0.2s ease, border 0.2s ease;
  }
  
  #cursor-trail {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #00e0ff;
    opacity: 0.1;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
    backdrop-filter: blur(8px);
  }
  
  
  .cursor-hover {
    transform: translate(-50%, -50%) scale(2);
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
  }
  
  .trail-hover {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0.2;
  }
  h1{
    color: #ddd;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(8px); 
    justify-content: center;
    border-bottom: 1px solid rgba(129, 129, 129, 0.1); 
    font-size: 1.2rem;
  }
  

  #about {

    color: #ffffff;
  }
  #works {

    color: #ffffff;
  }
  #contact {

    color: #ffffff;
  }
  
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1rem; 
    justify-content: center;
    align-items: center;
    padding: 0;
    flex-wrap: nowrap; 
  }
  nav a {
    text-decoration: none;
    color: #ebebeb;

    
    transition: opacity 0.4s ease;
  }
  
  nav a:hover {
    opacity: 0.7;


  }
.mobile-toggle {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 0 1rem;
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 1100;
  }
  
 
  .has-submenu:hover .submenu,
.has-submenu .submenu:hover {
  display: flex;
}
  
  
  .submenu a {
    color: #ebebeb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 0rem;
    border-radius: 8px;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 180px;
    z-index: 1001;
    transition: opacity 0.3s ease;
  }
  .has-submenu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .submenu a:hover {
    color: #f9d423;
  }
  
  @media (max-width: 768px) {
    .mobile-toggle {
        display: block;
      }
      
    header{
        padding: 0%;
    }
      nav {
        
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);

        z-index: 1050;
      }
    
      nav.active {
        display: block;
        border-radius: 25px;
        font-size: 2rem;
      }
    
      nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }
    
      .submenu {
        position: static;
        transform: none;
        background: none;
        border-radius: 0;
        display: none;
        margin-top: 0.5rem;
      }
    
      .submenu.open {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }
    
      .has-submenu {
        flex-direction: column;
        align-items: center;
      }
    

    }
    
  
  #nom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 9rem;
    font-family: 'Voklea', sans-serif;
    color: #fff;
    animation: levitation 3s ease-in-out infinite;
  }
  
  #nom span {
    display: inline-block;
    transition: transform 0.5s ease;
  }
  



#titre {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 6rem;
  color: #ccc;
  margin-top: 1rem;
}
  
  #titre span {
    display: inline-block;
    transition: transform 0.5s ease;
  }
  
  @media (max-width: 768px) {
    #nom {
      font-size: 6rem; 
      flex-wrap: wrap;
    }
  
    #titre {
      font-size: 3rem; 
      flex-wrap: wrap;
    }
  
    .hero h1 {
      font-size: 4rem;
    }
  
    .hero p {
      font-size: 2rem;
    }
  }
  

  @keyframes glowSoft {
    0% {
      text-shadow:
        0 0 3px #ffffff,
        0 0 6px #00e0ff,
        0 0 12px #00e0ff;
    }
    50% {
      text-shadow:
        0 0 6px #ffffff,
        0 0 12px #00e0ff,
        0 0 24px #00e0ff;
    }
    100% {
      text-shadow:
        0 0 3px #ffffff,
        0 0 6px #00e0ff,
        0 0 12px #00e0ff;
    }
  }
  
  #nom, #titre {
    animation: glowSoft 4s ease-in-out infinite;
  }
  






  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  @keyframes degradeAnime {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  






  @keyframes levitation {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }



  @font-face {
    font-family: 'Voklea';
    src: url('fonts/Voklea.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  .hero h1 {
    font-size: 10rem;
    font-family: 'Voklea', sans-serif;
    color: #ffffff;
    animation: levitation 3s ease-in-out infinite;
    text-align: center;
  }

  .hero p {
    text-align: center;
    font-size: 40px;
    color: #666;
  }








              
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  
  .hero p {
    font-size: 6rem;
    color: #666;
  }
  
  .wave-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }
  

  .wave-bars {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    z-index: 999;
    background: transparent;
    pointer-events: none;
  }
  
  
  .bar {
    width: 10px;
    height: 30px;
    background: #ffffff;
    border-radius: 6px;
    transform-origin: bottom;
    animation: waveSync 2s ease-in-out infinite;
    transition: transform 0.3s cubic-bezier(0.2, 1.5, 0.3, 1), background 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  

  .bar:hover {
    transform: translateY(-300px) scaleY(4) rotate(25deg);
    background: #ff9900;
    box-shadow: 0 0 40px #ffaa00, 0 0 80px #ffaa00;
  }
  
  

  @keyframes waveSync {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(2); }
  }

  .bar:nth-child(1)  { animation-delay: 0s; }
  .bar:nth-child(2)  { animation-delay: 0.1s; }
  .bar:nth-child(3)  { animation-delay: 0.2s; }
  .bar:nth-child(4)  { animation-delay: 0.3s; }
  .bar:nth-child(5)  { animation-delay: 0.4s; }
  .bar:nth-child(6)  { animation-delay: 0.5s; }
  .bar:nth-child(7)  { animation-delay: 0.6s; }
  .bar:nth-child(8)  { animation-delay: 0.7s; }
  .bar:nth-child(9)  { animation-delay: 0.8s; }
  .bar:nth-child(10) { animation-delay: 0.9s; }
  .bar:nth-child(11) { animation-delay: 1s; }
  .bar:nth-child(12) { animation-delay: 1.1s; }
  .bar:nth-child(13) { animation-delay: 1.2s; }
  .bar:nth-child(14) { animation-delay: 1.3s; }
  .bar:nth-child(15) { animation-delay: 1.4s; }
  .bar:nth-child(16) { animation-delay: 1.5s; }
  .bar:nth-child(17) { animation-delay: 1.6s; }
  .bar:nth-child(18) { animation-delay: 1.7s; }
  .bar:nth-child(19) { animation-delay: 1.8s; }
  .bar:nth-child(20) { animation-delay: 1.9s; }
  
  
  

  @keyframes glowBox {
    0% {
      box-shadow: 0 0 5px #00e0ff, 0 0 10px #00e0ff, 0 0 15px #00e0ff;
    }
    50% {
      box-shadow: 0 0 10px #00e0ff, 0 0 20px #00e0ff, 0 0 30px #00e0ff;
    }
    100% {
      box-shadow: 0 0 5px #00e0ff, 0 0 10px #00e0ff, 0 0 15px #00e0ff;
    }
  }
  
  .about-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    animation: glowBox 4s ease-in-out infinite;
    border: 1px solid rgba(0, 224, 255, 0.4);
    color: #fff;
    line-height: 1.8;
  }
  
  @keyframes shock {
    0% { transform: translate(0); }
    15% { transform: translate(-5px, 3px); }
    30% { transform: translate(4px, -3px); }
    45% { transform: translate(-3px, 2px); }
    60% { transform: translate(2px, -2px); }
    75% { transform: translate(-1px, 1px); }
    100% { transform: translate(0); }
  }
  
  .about-box:hover {
    animation: shock 0.5s linear, glowBox 4s ease-in-out infinite;
  }
  

  section {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  
  .project {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(0, 224, 255, 0.4);
    box-shadow: 0 0 6px #00e0ff, 0 0 12px #00e0ff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-size: cover;
    background-position: center;
  }
  
  
  @keyframes shock {
    0% { transform: translate(0); }
    15% { transform: translate(-6px, 4px); }
    30% { transform: translate(5px, -4px); }
    45% { transform: translate(-4px, 2px); }
    60% { transform: translate(3px, -2px); }
    75% { transform: translate(-2px, 1px); }
    100% { transform: translate(0); }
  }
  
 
.project:hover {
    animation: shock 0.5s linear;
    box-shadow: 0 0 12px #00e0ff, 0 0 24px #00e0ff;
    transform: scale(1.02);
  }
 
.project-content {
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
  }





  .contact-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(0, 224, 255, 0.4);
    box-shadow: 0 0 5px #00e0ff, 0 0 10px #00e0ff, 0 0 15px #00e0ff;
    animation: glowBox 4s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: #fff;
  }
  
  
  .contact-box:hover {
    animation: shock 0.5s linear, glowBox 4s ease-in-out infinite;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  input, textarea {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(4px);
    outline: none;
    transition: box-shadow 0.3s ease;
  }
  
  input:focus, textarea:focus {
    box-shadow: 0 0 10px #00e0ff;
  }
  
  button {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: #00e0ff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  button:hover {
    background: #00bcd4;
  }

  

  @keyframes glowBox {
    0% {
      box-shadow: 0 0 5px #00e0ff, 0 0 10px #00e0ff, 0 0 15px #00e0ff;
    }
    50% {
      box-shadow: 0 0 10px #00e0ff, 0 0 20px #00e0ff, 0 0 30px #00e0ff;
    }
    100% {
      box-shadow: 0 0 5px #00e0ff, 0 0 10px #00e0ff, 0 0 15px #00e0ff;
    }
  }
  
  @keyframes shock {
    0% { transform: translate(0); }
    15% { transform: translate(-5px, 3px); }
    30% { transform: translate(4px, -3px); }
    45% { transform: translate(-3px, 2px); }
    60% { transform: translate(2px, -2px); }
    75% { transform: translate(-1px, 1px); }
    100% { transform: translate(0); }
  }
  




#social{
    color: #ffffff;
}
  .social-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .social-card {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 224, 255, 0.4);
    box-shadow: 0 0 6px #00e0ff, 0 0 12px #00e0ff;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: glowBox 4s ease-in-out infinite;
  }
  
  .social-card i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  .social-card span {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  
  .social-card:hover {
    animation: shock 0.5s linear, glowBox 4s ease-in-out infinite;
    transform: scale(1.05);
    box-shadow: 0 0 12px #00e0ff, 0 0 24px #00e0ff;
  }
  
  @media (min-width: 768px) {
    .social-grid {
      flex-direction: row;
      justify-content: center;
    }
  }
  




  .site-footer {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem 1rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(0, 224, 255, 0.3);
    text-align: center;
    color: #ddd;
  }
  
  .footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .footer-links a {
    color: #00e0ff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  


#creer-site-web {
  color: #ffffff;
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

#creer-site-web h2 {
  font-size: 2.5rem;
  text-align: center;
  
  margin-bottom: 2.5rem;
  color: #ffffff;
}

#creer-site-web .gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  #creer-site-web .gallery {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}


#creer-site-web .projec {
  flex: 1 1 calc(48% - 1rem);
  min-height: 240px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  color: white;
  border: 1px solid rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 6px #00e0ff, 0 0 12px #00e0ff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: glowBox 4s ease-in-out infinite;
  display: flex;
  flex-direction: column;
}

#creer-site-web .projec:hover {
  animation: shock 0.5s linear, glowBox 4s ease-in-out infinite;
  transform: scale(1.03);
  box-shadow: 0 0 14px #00e0ff, 0 0 28px #00e0ff;
}

#creer-site-web .projec-content {
  padding: 1.5rem;
  flex-grow: 1; 
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: auto; 
}

#creer-site-web .projec-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #00e0ff;
}

#creer-site-web .projec-content p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

#creer-site-web code {
  background: rgba(0, 224, 255, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  color: #00e0ff;
}
.project-img {
  height: 150px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 224, 255, 0.2);
  display: block;
}
.projec {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  
  
  border: 1px solid rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 6px #00e0ff, 0 0 12px #00e0ff;
  animation: glowBox 4s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: white;
}
@media (max-width: 768px) {
  #creer-site-web .projec {
    flex: 1 1 100%;
    width: 100%;
  }
}



.btn-contact {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 8px;
  background: #00e0ff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
  
}

.btn-contact:hover {
  background: #00bcd4;
  transform: scale(1.05);
  box-shadow: 0 0 12px #00e0ff, 0 0 24px #00e0ff;
  color: #ffffff;
}
.visiteur-box {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 224, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 0 10px #00e0ff, 0 0 20px #00e0ff;
  text-align: center;
  color: #ffffff;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  animation: glowBox 4s ease-in-out infinite;
}

.visiteur-nombre {
  font-weight: bold;
  color: #00e0ff;
  font-size: 1.4rem;
  text-shadow: 0 0 10px #00e0ff, 0 0 20px #00e0ff;
}





#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  background: rgba(0, 224, 255, 0.7);
  color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px #00e0ff, 0 0 20px #00e0ff;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  z-index: 9999;
  animation: glowBox 4s ease-in-out infinite;
}

#backToTop:hover {
  transform: scale(1.1);
  background: #00bcd4;
}

#backToTop.show {
  opacity: 1;
}



.motion-presentation {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.motion-block {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 6px #00e0ff, 0 0 12px #00e0ff;
  overflow: hidden;
  animation: glowBox 4s ease-in-out infinite;
}

.motion-video {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 224, 255, 0.3);
}

.motion-content {
  padding: 2rem;
  color: #ffffff;
}

.motion-content h3 {
  color: #00e0ff;
  margin-top: 1rem;
}

.motion-content p {
  margin-top: 0.5rem;
  line-height: 1.6;
}




























.zoomable-img {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.zoomable-img:hover {
  transform: scale(1.02);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px #00e0ff;
  border-radius: 8px;
}

.print-gallery {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.print-block {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 6px #00e0ff, 0 0 12px #00e0ff;
  overflow: hidden;
  animation: glowBox 4s ease-in-out infinite;
}

.print-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 224, 255, 0.3);
}

.print-content {
  padding: 2rem;
  color: #ffffff;
}

.print-content h3 {
  color: #00e0ff;
  margin-bottom: 0.5rem;
}

.print-content p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}









.model-block {
  margin-bottom: 3rem; 
}
.model-gallery {
  display: flex;
  flex-direction: column;
  gap: 4rem; 
  margin-top: 2rem;
}
h3{
  color: #fff;
}
.model-block {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 6px #00e0ff, 0 0 12px #00e0ff;
  overflow: hidden;
  animation: glowBox 4s ease-in-out infinite;
}

.model-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 224, 255, 0.3);
}

.model-content {
  padding: 2rem;
  color: #ffffff;
}

.model-content h3 {
  color: #00e0ff;
  margin-bottom: 0.5rem;
}

.model-content p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.filament-gallery {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.filament-block {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 6px #00e0ff, 0 0 12px #00e0ff;
  overflow: hidden;
  animation: glowBox 4s ease-in-out infinite;
}

.filament-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 224, 255, 0.3);
}

.filament-content {
  padding: 2rem;
  color: #ffffff;
}

.filament-content h3 {
  color: #00e0ff;
  margin-bottom: 0.5rem;
}

.filament-content p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.plateaux-gallery {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.plateau-block {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 6px #00e0ff, 0 0 12px #00e0ff;
  overflow: hidden;
  animation: glowBox 4s ease-in-out infinite;
}

.plateau-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 224, 255, 0.3);
}

.plateau-content {
  padding: 2rem;
  color: #ffffff;
}

.plateau-content h3 {
  color: #00e0ff;
  margin-bottom: 0.5rem;
}

.plateau-content p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}



.btn-ajouter {
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 8px;
  background: #00e0ff;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  animation: glowBox 4s ease-in-out infinite;
}

.btn-ajouter:hover {
  background: #00bcd4;
  transform: scale(1.05);
}

#recapitulatif {
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 10px #00e0ff, 0 0 20px #00e0ff;
  color: #fff;
}

.recap-box ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.recap-box li {
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 224, 255, 0.1);
  border-left: 3px solid #00e0ff;
  border-radius: 6px;
}







.video-gallery {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  
}

.video-block {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 224, 255, 0.4);
  box-shadow: 0 0 6px #00e0ff, 0 0 12px #00e0ff;
  overflow: hidden;
  animation: glowBox 4s ease-in-out infinite;
  
}

.video-preview {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 224, 255, 0.3);
}

.video-content {
  padding: 2rem;
  color: #ffffff;
}

.video-content h3 {
  color: #00e0ff;
  margin-bottom: 0.5rem;
}

.video-content p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
