@charset "UTF-8";
#projet {
  font-family: "Montserrat", sans-serif;
  background-color: #DFDFDF;
  color: #2C2C2C;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

#projet .cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #00DCD0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, background-color 0.3s ease;
  z-index: 9999;
  mix-blend-mode: difference;
  background-color: transparent;
  will-change: transform;
}

#projet .cursor.active {
  transform: translate(-50%, -50%) scale(2);
  background-color: #00DCD0;
  border-color: #00DCD0;
}

/* Header Sticky Styles */
#projet .sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(223, 223, 223, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  padding: 15px 0;
}

#projet .sticky-header.hidden {
  transform: translateY(-100%);
}

#projet .sticky-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#projet .sticky-header .logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2C2C2C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#projet .sticky-header .nav-btn {
  background: transparent;
  border: 2px solid #00DCD0;
  color: #00DCD0;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

#projet .sticky-header .nav-btn:hover {
  background-color: #00DCD0;
  color: #ffffff;
}

#projet .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#projet header {
  background: rgba(255, 255, 255, 0.5);
  color: #2C2C2C;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px; /* Compensation pour le header sticky */
}

#projet header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/api/placeholder/800/400") center/cover;
  opacity: 0.1;
  z-index: 0;
}

#projet .header-content {
  position: relative;
  z-index: 1;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 0.3;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#projet .btn-primary {
  background: transparent;
  border: 2px solid #00DCD0;
  color: #00DCD0;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  text-decoration: none;
}

#projet .btn-primary:hover {
  background-color: #00DCD0;
  color: #2C2C2C;
}

#projet .neon-text {
  color: #00DCD0;
}

#projet h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#projet .subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

#projet .tech-badge {
  display: inline-block;
  background-color: #00DCD0;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 500;
  margin: 5px;
}

#projet section {
  padding: 60px 0;
}

#projet section[style] {
  background-color: #ffffff !important;
  color: #2C2C2C !important;
}

#projet .competence-card {
  border-left-color: #00DCD0 !important;
}

#projet .project-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  #projet .project-details {
    grid-template-columns: 1fr;
  }
  #projet .btn-primary {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
  #projet .sticky-header .container {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }
  #projet .sticky-header .logo {
    font-size: 1rem;
  }
  #projet .sticky-header .nav-btn {
    padding: 6px 16px;
    font-size: 0.8rem;
  }
}
#projet .project-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

#projet .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

#projet h2 {
  color: #00DCD0;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.05em;
}

#projet h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #00DCD0;
}

#projet .info-list {
  list-style-type: none;
}

#projet .info-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

#projet .info-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #00DCD0;
}

#projet .progress-container {
  margin: 60px 0;
}

#projet .progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 30px;
}

#projet .progress-steps::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(0, 220, 208, 0.3);
  z-index: 0;
}

#projet .step {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100px;
}

#projet .step-icon {
  width: 30px;
  height: 30px;
  background-color: #00DCD0;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 220, 208, 0.7);
}

#projet .step-text {
  margin-top: 10px;
  font-size: 0.9rem;
}

#projet .preview-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

#projet .preview-img {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(44, 44, 44, 0.3);
  height: 200px;
  border: 1px solid rgba(0, 220, 208, 0.3);
}

#projet .preview-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

#projet .preview-img:hover img {
  transform: scale(1.05);
}

#projet .competence-section {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

#projet .competence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

#projet .competence-card {
  background-color: #ffffff;
  border-left: 4px solid #00DCD0;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#projet .competence-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 220, 208, 0.2);
}

#projet .competence-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #00DCD0;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

#projet footer {
  background-color: rgba(223, 223, 223, 0.85);
  color: #2C2C2C;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

#projet .contact-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid #00DCD0;
  color: #00DCD0;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 9999px;
  margin-top: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

#projet .contact-btn:hover {
  background-color: #00DCD0;
  color: #ffffff;
}

#projet .back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00DCD0;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 220, 208, 0.7);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

#projet .back-to-top:hover {
  opacity: 1;
}

#projet #canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#projet .social-icons {
  margin-top: 20px;
}

#projet .social-icons a {
  color: #00DCD0;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  margin: 0 10px;
  text-decoration: none;
}

#projet .social-icons a:hover {
  color: rgb(67, 255, 244.7454545455);
}/*# sourceMappingURL=projet.css.map */