 /*LOADING SCREEN*/
        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #111;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 20px;
            z-index: 9999;
            transition: opacity .6s ease;
            color: white;
            text-align: center;
        }

        #loader img {
            width: 320px;
            animation: pulse 1.6s infinite ease-in-out;
        }


        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.10); opacity: 1; }
            100% { transform: scale(1); opacity: 0.7; }
        }

   
        .loading-text {
            font-size: 1.2rem;
            font-family: Last christmas;
            letter-spacing: 3px;
            animation: fadeText 1.5s infinite ease-in-out;
            color: white;
        }

        @keyframes fadeText {
            0% { opacity: 0.3; }
            50% { opacity: 1; }
            100% { opacity: 0.3; }
        }

        #page-content {
            opacity: 0;
            transition: opacity 1s ease;
        }




/* CLASS BOOTSTRAP */
    /* .bg{
        background-image: url(/images/ange1.png);
        background-size: cover;
        background-position: center;
        background-repeat:no-repeat;

    } */

    .white{
        color: white;
    }

    .gold{
        border-color: #ffd001 !important;
    }

    .white:hover{
        color: #ffd001;
    }

    .nav{
        font-size: 1.5rem;
    }

    .fill{
        width: 100vw;
    }


 /*PAGE WEB*/

html,body {
        margin: 0;
        padding: 0;
        background-color: rgb(0, 0, 0);
        scroll-behavior: smooth

        }

/* #video{
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
} */




@font-face {
    font-family: Last christmas;
    src: url('./last_christmas/LastChristmas_PERSONAL_USE_ONLY.otf') format("opentype");
}

@font-face {
    font-family: Poppis;
    src: url('./poppis/Poppis-Demo.otf') format("opentype");
}


h1 {color: #ffffff;
    font-family: Last christmas;
    text-align: center;
    font-size: 100px;
    margin-top: -90px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    
    
}

h2{color: #ffd001;
    font-family: Last christmas;
    text-align: center;
    font-size: 70px;
    
}

h3{
    color: #ffffff;
    font-family: Last christmas;
    text-align: center;

    
}

h4{
    color: #ffffff;
    font-family: Last christmas;
    text-align: center;
}


.logo{
    text-align: center;
    display: inline-block;
    position:sticky;
    
}

section{
    margin-top: 100px;
    padding-top: 90px;
    color: #ffffff;
    font-family: Last christmas;
    font-size: xx-large;
    text-align: center;
    display: inline-block;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgb(0, 0, 0), rgba(0, 0, 0, 0.1));
}


#projet1 .row,#projet2 .row,#projet3 .row,#projet4 .row {
    justify-content: center !important;  
    text-align: center;                  
}


#projet1,#projet2,#projet3,#projet4 {
    max-width: 900px;
    margin: 0 auto;  
}


.texte{
    display: inline-block;
    width: 50%;
   vertical-align: middle;
   text-align: center;

}

#presentation {
  height: 100vh; /* prend toute la hauteur de la fenêtre */
  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;     /* centre verticalement */
  padding: 20px;
  box-sizing: border-box;
}

.contenu {
  display: flex;
  gap: 40px; /* espace entre l’image et le texte */
  align-items: center; /* aligne verticalement l'image et le texte */
  flex-wrap: wrap; /* responsive : passe en colonne sur petits écrans */
  text-align: left;
}

.photo img {
  width: 200px;
  height: auto;
  border-radius: 30%; /* optionnel : rond */
}


nav{
    background-color: black;
    position: sticky;
    width: 100vw;
    top: 0;
    text-align: center;
    z-index: 5;
}

#nav .navbar-toggler {
  margin-left: 0 !important;
}

button{


    width: 200px;
    height: 50px;
    border-radius: 10%;
    background-color: black;
    border-color: #ffffff;
}

a{
    text-decoration: none;
    font-size: x-large;
    font-family: Last christmas;
    color: white;

    z-index: 2;
    
}



p{
    color: #ffffff;
    font-family: Poppis;
    font-size: x-large;
    text-align: center;
}
a:hover{
    color: #ffd001;
    opacity: 1;
}
a h1:hover{
    color: #ffd001;
}

footer{
    height: 200px;
    text-align: center;
    padding-top: 100px;
}

footer > a, nav > a{
    opacity: 0.5;
}
button{
    margin: 10px;
    width: 200px;
    height: 50px;
    border-radius: 10%;
    background-color: black;
    border-color: #ffffff;
    z-index: 5;
}
#icone img:hover{
content: url("./images/icons8-linkedin-50.png");
}

#fleche{
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius:70% 70% 70% 70%;
    border-style: none;
    opacity:1;
}

#fleche img{
    width: 55px;
    height: auto;
    z-index: 3;
}

#fleche:hover img{
content: url("./design/fleche-or.png");

}


html{
    scroll-behavior: smooth;
}



.group{
    display: flex;
    gap: 10px;
    padding-right: 20px;
    will-change: transform;
    animation: scrolling 10s linear infinite;
}

  @keyframes scrolling {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  



.card {
    width: 40vw;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 20px 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    position: relative;
}







.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.card:hover{
     transform:scale(1.05);
}


