/*----------Projet------------*/
#Projet{
    padding: 80px 0;
    color: #ffffff;
  }
  
  .row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
  }
  
  .Projet-col-1{
    flex-basis: 35%;
  }
  .Projet-col-1 img{
    width: 100%;
    border-radius: 15px;
  }
  .Projet-col-2{
    flex-basis: 60%;
  }
  .sub-title{
    font-size: 60px;
    font-weight: 600;
    color: #fff;
  }
  .tab-titles{
    display: flex;
    margin: 20px 0 40px;
  }
  
  .project-info {
    list-style: none; /* Supprime les puces */
    padding: 0;
    margin-top: 10px;
  }
  
  .project-info li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .project-info i {
    color: #ff004f; /* Bleu pour les icônes */
    margin-right: 10px;
    font-size: 18px;
  }
  .Doc {
    position: relative;
    display: inline-block;
    z-index: 1001;
  }
  /*----------Doc------------*/
  .Doc-button {
    background-color: #ff004f;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .Doc-button svg {
    width: 25px;
    height: 25px;
  }
  
  .Doc-button p {
    margin: 0;
    font-weight: bold;
  }
  
  .Doc-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: rgb(0, 0, 0);
    border: 1px solid #000000;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    z-index: 1001;
  }
  
  .Doc:hover .Doc-content {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
  
  .Doc-content ul {
    padding: 10px;
    list-style-type: none;
    margin: 0;
  }
  
  .Doc-content li {
    padding: 5px 0;
  }
  
  .Doc-content ul ul {
    padding-left: 20px;
  }
  a {
    text-decoration: none; /* Enlève le soulignement */
    color: inherit; /* Utilise la couleur du texte parent */
  }
.spacer{
  height: 300px;
}  
.hidden {
  display: none;
}
.hidden_inversé{
  display: inline;
}

.button3 {
  width: 110px;
  height: 40px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: #ff004f;
  border-radius: 30px;
  color: rgb(19, 19, 19);
  font-weight: 600;
  border: none;
  position: relative;
  cursor: pointer;
  transition-duration: .2s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
  padding-left: 8px;
  transition-duration: .5s;
}

.svgIcon {
  height: 25px;
  transition-duration: 1.5s;
}

.bell path {
  fill: rgb(19, 19, 19);
}

.button3:hover {
  background-color: rgb(255, 28, 20);
  transition-duration: .5s;
}

.button3:active {
  transform: scale(0.97);
  transition-duration: .2s;
}

.button3:hover .svgIcon {
  transform: rotate(250deg);
  transition-duration: 1.5s;
}

.nav-arrows {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
  z-index: 999;
}

.nav-arrow {
  background-color: rgba(255, 0, 79, 0.8);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background-color: rgb(255, 0, 79);
  transform: scale(1.1);
}

.nav-arrow i {
  font-size: 24px;
}

.nav-arrow.prev {
  margin-right: auto;
}

.nav-arrow.next {
  margin-left: auto;
}

.spacer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.scroll-button {
    background-color: rgba(255, 0, 79, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
}

.scroll-button:hover {
    background-color: rgb(255, 0, 79);
    transform: scale(1.1);
}

.scroll-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-button i {
    font-size: 24px;
}

/* Styles responsifs pour la page AP */
@media screen and (max-width: 768px) {
    .nav-arrows {
        display: none;
    }

    .project-navigation {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
        padding: 20px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--text-color);
        opacity: 0.5;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-dot.active {
        opacity: 1;
        transform: scale(1.2);
    }

    #Projet {
        padding: 40px 20px;
    }

    .Projet-col-1, .Projet-col-2 {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .Projet-col-1 img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    .project-info {
        padding: 20px;
    }

    .project-info li {
        font-size: 14px;
    }

    .sub-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .Doc {
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    #Projet {
        padding: 30px 15px;
    }

    .Projet-col-1 img {
        max-width: 300px;
    }

    .project-info {
        padding: 15px;
    }

    .project-info li {
        font-size: 12px;
    }

    .sub-title {
        font-size: 20px;
    }

    .Doc-button {
        padding: 10px 15px;
    }

    .Doc-content {
        padding: 15px;
    }
}

@media screen and (max-width: 320px) {
    #Projet {
        padding: 20px 10px;
    }

    .Projet-col-1 img {
        max-width: 250px;
    }

    .project-info li {
        font-size: 11px;
    }

    .sub-title {
        font-size: 18px;
    }

    .Doc-button {
        padding: 8px 12px;
    }

    .Doc-content {
        padding: 10px;
    }
}

