@charset "UTF-8";
/*____________________________________________________________________________________________________________________________________*/
/*______________________________________________________Projet________________________________________________________________________*/
/*____________________________________________________________________________________________________________________________________*/
#projet {
  font-family: "Montserrat", sans-serif;
  background-color: #0a0a0a;
  color: #f0f0f0;
  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 #3b82f6;
  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: #3b82f6;
  border-color: #3b82f6;
}

/* Header Sticky Styles */
#projet .sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  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: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#projet .sticky-header .nav-btn {
  background: transparent;
  border: 2px solid #3b82f6;
  color: #3b82f6;
  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: #3b82f6;
  color: #0a0a0a;
}

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

#projet header {
  background: #0a0a0a;
  color: white;
  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 #3b82f6;
  color: #3b82f6;
  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: #3b82f6;
  color: #0a0a0a;
}

#projet .neon-text {
  color: #3b82f6;
}

#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: #3b82f6;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 500;
  margin: 5px;
}

#projet section {
  padding: 60px 0;
}

#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: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

#projet .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(59, 130, 246, 0.2);
}

#projet h2 {
  color: #3b82f6;
  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: #3b82f6;
}

#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: #3b82f6;
}

#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(59, 130, 246, 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: #3b82f6;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(59, 130, 246, 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(0, 0, 0, 0.3);
  height: 200px;
  border: 1px solid rgba(59, 130, 246, 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.02);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

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

#projet .competence-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #3b82f6;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#projet .competence-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

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

#projet footer {
  background-color: #000000;
  color: white;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(59, 130, 246, 0.3);
}

#projet .contact-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid #3b82f6;
  color: #3b82f6;
  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: #3b82f6;
  color: #0a0a0a;
}

#projet .back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #3b82f6;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(59, 130, 246, 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: #3b82f6;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  margin: 0 10px;
  text-decoration: none;
}

#projet .social-icons a:hover {
  color: #60a5fa;
}

/* RESET & CONFIGURATION SCROLL SNAP */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  height: 100vh;
  overflow-y: scroll;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #DFDFDF;
  color: #2C2C2C;
}

/* FILIGRANE FIXE */
#watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  font-weight: 800;
  color: #ffffff;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  letter-spacing: -5px;
}

/* HEADER FIXE */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 15px 50px;
  background: rgba(223, 223, 223, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
nav #logoNom {
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  color: #2C2C2C;
  letter-spacing: 2px;
}
nav #logoNom span {
  color: #D60013;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}
nav a:not(#logoNom) {
  text-decoration: none;
  color: #2C2C2C;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:not(#logoNom):hover {
  color: #00DCD0;
}

/* --- CONFIGURATION DES SECTIONS --- */
section, footer {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 80px 20px;
}

/* SECTION 1 : HERO (3D) */
#hero {
  overflow: hidden;
}

#spline-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

spline-viewer {
  width: 100%;
  height: 100%;
}

/* SECTION 2 : INTRO (TEXTE) */
#intro {
  background: transparent;
}

#hero-text {
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  padding: 50px 70px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  width: 100%;
}
#hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
#hero-text h2 {
  font-size: 1.2rem;
  color: #666666;
}
#hero-text p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.7;
  text-align: left;
  margin: 0 auto 20px;
  text-align: center;
}
#hero-text p a {
  color: #00DCD0;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  transition: color 0.3s;
}
#hero-text p a:hover {
  color: #D60013;
}

#status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
}
#status span {
  width: 10px;
  height: 10px;
  background-color: #00DCD0;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 220, 208, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 220, 208, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 220, 208, 0);
  }
}
#buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}
#buttons a {
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s;
}
#buttons a:first-child {
  background-color: #2C2C2C;
  color: #ffffff;
}
#buttons a:last-child {
  border: 2px solid #2C2C2C;
  color: #2C2C2C;
}

/* SECTION 3 : PROJETS */
#projets {
  justify-content: flex-start;
  padding-top: 120px;
}
#projets h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

#grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 1200px;
  overflow-y: auto;
  padding: 10px;
  max-height: 75vh;
}

article {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
article a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
article img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
article div {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
article h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #2C2C2C;
}
article p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.5;
}

/* SECTION 4 : CONTACT (Nouvelle Section) */
#contact-section {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}
#contact-section h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #2C2C2C, #00DCD0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#contact-section p {
  font-size: 1.2rem;
  color: #555555;
  margin-bottom: 50px;
  max-width: 600px;
  text-align: center;
  line-height: 1.6;
}

/* Bouton Contact Principal */
.btn-primary {
  background-color: #D60013;
  color: #ffffff;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(214, 0, 19, 0.3);
}
.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(214, 0, 19, 0.5);
  background-color: #b50010;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  html {
    scroll-snap-type: none;
    overflow-y: auto;
    height: auto;
  }
  section {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px;
  }
  #grid {
    grid-template-columns: 1fr;
    max-height: none;
  }
  nav ul {
    display: none;
  }
  #hero-text {
    padding: 40px 20px;
  }
  #contact-section h2 {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */