#burger-menu{
    display:none
}
header {
    position: fixed;
    width: 100%;
    transition: 0.3s ease;
    z-index: 120;
    position: sticky;
    background-color: rgba(66, 66, 66, 0.781);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.329);
}

nav {
    position: fixed;
    z-index: 9;
    top: 0%;
    width: 100%;
    background-color: rgba(11, 11, 11, 0.603);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.329);
}

nav ul li#accueil{
    display: none;
}

nav ul {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

nav ul li {
    color: rgb(226, 226, 226);
    align-items: center;
    font-weight: bold;
    text-decoration: none;
    list-style: none;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 50px ;
}

li {
    font-size: 15pt;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    color: rgb(226, 226, 226);
    display: inline-block;
}

img{
    width: 40px;
    padding-right: 60%px;
    }

li:after {
    display: block;
    content: '';
    border-bottom: solid 3px rgb(226, 226, 226);  
    transform: scaleX(0);  
    transition: transform 500ms ease-in-out;
}

li:hover:after {
    transform: scaleX(1); 
}

a{
    color: rgb(226, 226, 226);
    text-decoration: none;
}

 header img:hover{
    opacity: 0.5;

   }

h2{
    color: rgb(226, 226, 226);
    margin:0px;
    margin-top:100px;
    font-size: 35px;
    margin-bottom: 50px;
    
}
body {
    background-color: #141414;
    
    top: 0;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

#realisations{
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}

#images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
    padding: 10px;
    margin-left: 20%;
    margin-right: 20%;
}

#images img {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    /
}
#images img:hover {
  transition: ease-in-out 0.4s;
  transform: scale(1.5);
  z-index: 100;

}



/* Lightbox styling (you need to include lightbox CSS) */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

footer{
    margin-top:200px;
    padding-top: 70px;
    background-color: #111111;
    padding-bottom: 20px;
    color: white;
    transition: filter 0.3s ease, color 0.3s ease;
    
  }
  
  .Liste a:hover{
    opacity: 0.5;
  }
  
  
  .Contactbouton {
      cursor: pointer;
      margin-top: 40px;
      background-color: red;
      color: #fff;
      text-transform: uppercase;
      display: inline-block;
      border-radius: 30px;
      text-decoration: none;
      padding: 10px 35px;
      font-weight: 600;
      margin-left: 45%;
  }


  
  
  #copyright {
    display: block;
    margin-top: 100px; 
    color: #ffffff36;
    text-align: center;
  }
  
  #copyright2{
      display: none;
  }
  
  
  .Liste{
    
    display:flex ;
    flex-direction: row;
    justify-content: space-around;
    padding-left: 10%;
    padding-right: 10%;
  }


  @media only screen and (max-width: 600px) {
    @media all and (max-width: 992px) {
         #burger-menu {
        display: none; /* On cache le bouton burger en desktop */
        }
        #burger-menu {
            color: #fff;
          display: block;
          width: 100%;
          text-align: right;
          padding: 8px 24px;
          font-size: 24px;
          background-color: #111111;
          border: none;
          border-radius: 0;
          
        }

       nav ul li#accueil{
        display: block;
       }

      a img{
        display: none;
       }

        nav ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            background-color: rgba(11, 11, 11, 0.603);
            box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.329);
            align-items: center;
          }
          
          nav ul li {
            width: 100%;
            text-align: center;
            font-family: "Montserrat", sans-serif;
            font-weight: bold;
            
          }
          
          nav ul li a {
            display: inline-block;
            width: 100%;
            padding: 16px 0;
            text-decoration: none;
            color: #fff;
            background-color: none;
            
          }


        nav #menu-principal {
          display: none;
          flex-direction: column;
          position: absolute;
          width: 100%;
          z-index: 9;
        }
      
        .background-logo {
          display: none;
        }
      }
      
      h2{
        margin-top: 30px;
      }
      /* 
        STYLE BOUTON BURGER 
      */
      
      #bars {
        display: inline-block;
        width: 24px;
        height: 2px;
        background-color: #fff;
        position: relative;
        transition: transform 0.35s ease-in;
        bottom: 5px;
        left: 5px;
      }
      
      #bars::before,
      #bars::after {
        content: '';
        display: inline-block;
        width: 24px;
        height: 2px;
        background-color: #fff;
        position: absolute;
        left: 0;
        transition: transform 0.35s ease-in, opacity 0.35s ease-in;
      }
      
      #bars::before {
        top: -8px;
      }
      
      #bars::after {
        top: 8px;
      }
      
      #bars.open {
        transform: rotate(45deg);
      }
      
      #bars.open::before {
        transform: rotate(90deg);
        top: 0;
      }
      
      #bars.open::after {
        transform: rotate(90deg);
        top: 0;
      }
      
    
    
     a img{
        width: 40px;
        padding-right: 60%;
        }
    
    li:after {
        display: block;
        content: '';
        border-bottom: solid 3px rgb(226, 226, 226);  
        transform: scaleX(0);  
        transition: transform 500ms ease-in-out;
    }
    
    li:hover:after {
        transform: scaleX(1); 
    }
    
    a{
        color: rgb(226, 226, 226);
        text-decoration: none;
    }
    
    #images {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      grid-gap: 20px;
      padding: 10px;
      margin-left: 10%;
      margin-right: 10%;
  }





  footer {
        margin-top: 50px;
    padding-top: 70px;
    background-color: #111111;
    padding-bottom: 20px;
    color: white;
  }
  
  
  .Contactbouton {
    margin-top: 40px;
    margin-bottom: 40px ;
    margin-left: 25%;
  }
  
  

  .Liste {
    display: flex;
    flex-direction: column; 
    
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
  }
  
  .Contact {
    margin-bottom: 10px; 
  }
  
  #reseaux {
    margin-top: 10px; 
  }
  
  #copyright2{
    display: block;
    margin-top: 30px; 
    color: #ffffff36;
    text-align: center;
  }
  
#copyright{
    display: none;
}
  }