
/* Hero Section */
.hero-custom-projet{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 180px;
    padding-right: 60px;
    padding-left: 60px;
    padding-bottom: 60px;
    text-align: center;
}


.hero-logo{
    display: flex;
    justify-content: center;
}

.hero-logo img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

/* Project Details Section */
.project-details {
    color: #25325F;
    padding-top: 80px;
    padding-left: 80px;
    padding-right: 80px;
}

.project-details-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #25325F;
    margin-bottom: 32px;
}

.info-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
}


/* Left Column - Project Intro */
.project-intro {
    flex: 1;
    max-width: 500px;
}

.project-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #25325F;
    margin-bottom: 15px;

}

/* Right Column - Project Info */
.project-info {
    flex: 1;
    max-width: 500px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.info-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #25325F;
}

.info-content {
    font-size: 1.1rem;
    font-weight: 500;
    color: #25325F;
}

@media screen and (max-width: 800px) {
    .info-details {
      flex-direction: column;
      gap: 32px;
    }

    .project-details {
        color: #25325F;
        padding-top: 32px;
        padding-left: 32px;
        padding-right: 32px;
    }
    
}  
/* Détails du projet */
.project-work {
    display: flex;
    flex-direction: column;
    padding-left: 80px;
    padding-right: 80px;
  }
  
  .project-banner {
    text-align: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-bottom: 48px;
    margin-top: 48px;
  }
  
  .project-banner img {
    max-width: 1200px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  }
  
  .project-step {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    max-width: 1200px;
  }
  
  .project-step.reverse {
    flex-direction: row-reverse;
  }
  
  .step-text {
    flex: 1;
    min-width: 280px;
  }
  
  .step-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #25325F;
  }
  
  .step-text p,
  .step-text ul {
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    color: #25325F;
  }

  li {
    text-decoration: none;
  }

  .step-text-center{
    color: #25325F;
    text-align: center;
  }

  .step-text-center h3 {
    font-size: 1.8rem;
    color: #25325F;
    text-align: center;
  }

  .step-img {
    flex: 1;
    min-width: 280px;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  
  .step-img img {
    max-width: 100%;
    border-radius: 16px;
    margin-bottom: 8px;
    transition: transform 0.4s ease;
  }
  
  .step-img2 {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }

  .step-img2 img {
    max-width: 50%;
    border-radius: 16px;
    transition: transform 0.4s ease;
  }
  
  .step-img3 {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }

  .step-img3 img {
    max-width: 85%;
    border-radius: 30px;
    transition: transform 0.4s ease;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .project-step,
    .project-step.reverse {
      flex-direction: column;
      gap: 24px;
    }
  
    .step-text h3 {
      text-align: center;
    }
  
    .step-img img {
      width: 100%;
    }

    .project-work {
        display: flex;
        flex-direction: column;
        padding-left: 24px;
        padding-right: 24px;
      }
  }
  @media screen and (max-width: 768px) {
    .project-step {
      flex-direction: column;
      text-align: left;
    }
  
    .project-step .step-img,
    .project-step .step-text {
      width: 100%;
    }
  
    .project-step img {
      width: 100%;
      max-width: 500px;
      height: auto;
    }

    .container {
      padding: 20px 16px;
    }
    .project-details-container {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  

/* Next Projects */
.next-projects {
    display: flex;   
    padding-bottom: 40px;
}

.next-projects-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 80px;
}

.next-project {
    text-decoration: none;
    color: #25325F;
    text-align: center;
    font-weight: 600;
}

.next-project img {
    width: 150px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.next-project:hover img {
    transform: scale(1.1);
}
.step-text-center {
  padding-bottom: 1rem ;
}
@media screen and (max-width: 768px) {
  .next-projects-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 24px;

  }

  .next-project,
  .before-project {
    flex: 1 1 100%;
    text-align: center;
  }

  .next-project img,
  .before-project img {
    max-width: 120px;
  }
}