@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700;800;900&family=Tapestry&display=swap');

/* Custom Base Colors & Properties */
:root {
  --color-orange: #FF5A1D;
  --color-dark: #141414;
  --color-card-bg: #1A1A1A;
  --color-white: #F8F8F8;
  --color-offcanva-text: #141414;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-dark);
  color: var(--color-white);
  overflow-x: hidden;
}

.font-anton {
  font-family: 'Anton', sans-serif;
}

.font-tapestry {
  font-family: 'Tapestry', cursive, serif;
}

/* Header Container (Fixed Z-50 ALWAYS VISIBLE ON TOP) */
#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  pointer-events: none;
}

/* Inner Nav Element (80% screen width pill floating centered initially) */
#headerNav {
  pointer-events: auto;
  width: 80%;
  max-width: 80%;
  margin: 1rem auto 0 auto;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: max-width, margin-top, border-radius, background-color;
}

/* Floating Scrolled Header */
#mainHeader.scrolled-header #headerNav {
  width: 80%;
  max-width: 80%;
  margin-top: 0.75rem;
  padding: 0.65rem 2rem;
  background-color: rgba(14, 14, 14, 0.96);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

@media (max-width: 640px) {
  #headerNav {
    width: 90%;
    max-width: 90%;
    padding: 0.75rem 1.25rem;
  }

  #mainHeader.scrolled-header #headerNav {
    width: 90%;
    max-width: 90%;
    margin-top: 0.5rem;
    padding: 0.6rem 1.25rem;
  }
}

/* ========================================== */
/* ========================================================= */
/* DENNIS SNELLENBERG STYLE CURVED DARK PAGE TRANSITION      */
/* Rideau fluide avec courbes SVG et nom de page centré      */
/* ========================================================= */

#pageTransitionCurtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 9999999;
  background-color: #141414;
  pointer-events: none;
  transform: translate3d(0, calc(100% + 120px), 0);
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curtain-curve-top {
  position: absolute;
  top: -99px;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
}

.curtain-curve-bottom {
  position: absolute;
  bottom: -99px;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
}

.curtain-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  user-select: none;
}

.curtain-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--color-orange);
  box-shadow: 0 0 16px var(--color-orange), 0 0 32px rgba(255, 90, 29, 0.7);
  display: inline-block;
  flex-shrink: 0;
}

.curtain-title,
#curtainTitleText {
  font-family: 'Anton', Impact, 'Arial Black', sans-serif !important;
  color: #FFFFFF !important;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* 1. Sortie de page : le rideau monte et recouvre l'écran */
#pageTransitionCurtain.curtain-monte {
  transform: translate3d(0, 0%, 0) !important;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1) !important;
  pointer-events: auto !important;
}

#pageTransitionCurtain.curtain-monte .curtain-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

/* 2. Arrivée immédiate sur la nouvelle page : le rideau couvre l'écran */
html.page-is-entering #pageTransitionCurtain {
  transform: translate3d(0, 0%, 0) !important;
  pointer-events: auto !important;
  transition: none !important;
  display: flex !important;
}

html.page-is-entering #pageTransitionCurtain .curtain-content {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 3. Dévoilement de la page : le rideau glisse de haut en bas pour laisser apparaître la page */
html.page-is-entering #pageTransitionCurtain.curtain-descend {
  transform: translate3d(0, calc(100% + 120px), 0) !important;
  transition: transform 0.62s cubic-bezier(0.76, 0, 0.24, 1) !important;
  pointer-events: none !important;
}

html.page-is-entering #pageTransitionCurtain.curtain-descend .curtain-content {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.28s ease, transform 0.35s ease;
}

/* Masquer les anciens overlays superflus */
#preloader,
#pageTransitionOverlay {
  display: none !important;
}

/* Marquee Infinite Keyframes Fixed */
@keyframes marqueeLeft {
  0% {
    transform: translate3d(0%, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    transform: translate3d(0%, 0, 0);
  }
}

.animate-marquee-left {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  animation: marqueeLeft 70s linear infinite;
}

.animate-marquee-right {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  animation: marqueeRight 70s linear infinite;
}

.animate-marquee-fast {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  animation: marqueeLeft 35s linear infinite;
}

.animate-marquee-fast-reverse {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  animation: marqueeRight 35s linear infinite;
}

/* Circular Text Slow Spin with accurate SVG center */
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  transform-origin: 50% 50%;
  animation: spinSlow 20s linear infinite;
}

/* Title Highlight Orange Box Effect */
.title-orange-badge {
  position: relative;
  display: inline-block;
}

.title-orange-badge::after {
  content: '';
  position: absolute;
  left: -4px;
  bottom: 0px;
  width: calc(100% + 12px);
  height: 45%;
  background-color: var(--color-orange);
  z-index: -1;
  border-radius: 4px;
}

/* ========================================================= */
/* DIRECTIONAL BUTTON HOVER EFFECT (SWEEP GAUCHE -> DROITE) */
/* Au survol : entre de gauche à droite                     */
/* À la sortie : repart de gauche à droite vers l'extérieur */
/* ========================================================= */

.btn-flow-container {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  z-index: 1 !important;
  transition: border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-flow-container .btn-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-orange);
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  transform: translate3d(-101%, 0, 0);
  will-change: transform;
}

.btn-flow-container .btn-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  transition: color 0.3s ease;
}

.btn-flow-container:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 30px rgba(255, 90, 29, 0.38);
  border-color: var(--color-orange) !important;
}

.btn-flow-container:hover .btn-label,
.btn-flow-container.is-hovered .btn-label {
  color: #FFFFFF !important;
}

/* Voir plus button */
.btn-voir-plus {
  border: 2.5px solid var(--color-orange);
  color: #141414;
  background-color: transparent;
  border-radius: 9999px;
  padding: 0.85rem 3.5rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Bouton retour Réalisations sur les pages projets */
.btn-retour-realisations {
  border: 2px solid var(--color-orange);
  color: #141414;
  background-color: transparent;
  border-radius: 9999px;
  padding: 0.75rem 3rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Orange Tape Ribbon Marquees (3D Crossing Ribbon Effect - NON COUPÉ) */
.tape-ribbon-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  padding: clamp(1rem, 2.5vw, 2.5rem) 0;
}

.tape-ribbon {
  color: #141414;
  font-family: 'Anton', sans-serif;
  padding: 0.55rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .tape-ribbon {
    padding: 0.85rem 0;
  }
}

.tape-ribbon-1 {
  background-color: #df4c14;
  opacity: 0.95;
  transform: rotate(-3.5deg);
  z-index: 1;
}

@media (min-width: 640px) {
  .tape-ribbon-1 {
    transform: rotate(-2.2deg);
  }
}

.tape-ribbon-2 {
  background-color: var(--color-orange);
  opacity: 1;
  transform: rotate(2.8deg);
  margin-top: -1.25rem;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

@media (min-width: 640px) {
  .tape-ribbon-2 {
    transform: rotate(1.8deg);
    margin-top: -2.2rem;
  }
}

/* Hamburger Icon Style */
.hamburger-icon {
  width: 28px;
  height: 18px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 0;
}

.hamburger-line {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s ease;
}

.hamburger-btn:hover .hamburger-line {
  background-color: var(--color-orange);
}

.hamburger-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ========================================================= */
/* OFFCANVAS DRAWER RESPONSIVE STYLING                       */
/* Desktop: Textes agrandis pour mieux occuper l'espace      */
/* Mobile & Tablette: Textes centrés                         */
/* ========================================================= */

.offcanvas-drawer {
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.offcanvas-backdrop {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offcanvas-link {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. Mobile (< 768px) & Tablette (768px - 1023px) : Textes centrés */
@media (max-width: 1023px) {
  .offcanvas-drawer nav {
    width: 100% !important;
    text-align: center !important;
  }

  .offcanvas-drawer nav ul {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .offcanvas-drawer nav li {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .offcanvas-drawer .offcanvas-link {
    display: inline-block !important;
    text-align: center !important;
    font-size: clamp(2.2rem, 6.5vw, 3.4rem) !important;
    line-height: 1.15 !important;
  }

  .offcanvas-drawer .offcanvas-link:hover {
    transform: scale(1.06) !important;
    color: var(--color-orange);
  }
}

/* Format tablette spécifique (768px - 1023px) : tiroir proportionné */
@media (min-width: 768px) and (max-width: 1023px) {
  .offcanvas-drawer {
    width: 55% !important;
    max-width: 480px !important;
  }
}

/* 2. Format Desktop (>= 1024px) : Textes agrandis pour mieux occuper l'espace */
@media (min-width: 1024px) {
  .offcanvas-drawer {
    width: 38% !important;
    min-width: 440px !important;
    max-width: 640px !important;
    padding: 3.5rem 3.2rem !important;
  }

  .offcanvas-drawer nav {
    width: 100% !important;
    text-align: left !important;
  }

  .offcanvas-drawer nav ul {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.6rem !important;
  }

  .offcanvas-drawer nav ul.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0 !important;
  }

  .offcanvas-drawer nav li {
    width: 100% !important;
    text-align: left !important;
  }

  .offcanvas-drawer .offcanvas-link {
    font-size: clamp(3.6rem, 4.4vw, 5.2rem) !important;
    line-height: 1.05 !important;
    letter-spacing: 0.02em !important;
    display: inline-block !important;
  }

  .offcanvas-drawer .offcanvas-link:hover {
    transform: translateX(18px) !important;
    color: var(--color-orange);
  }
}

/* Format Grands Écrans Desktop (>= 1440px) */
@media (min-width: 1440px) {
  .offcanvas-drawer {
    width: 36% !important;
    min-width: 500px !important;
    max-width: 680px !important;
    padding: 4rem 4rem !important;
  }

  .offcanvas-drawer .offcanvas-link {
    font-size: clamp(4.2rem, 4.8vw, 5.8rem) !important;
  }

  .offcanvas-drawer nav ul {
    gap: 1.85rem !important;
  }
}

/* Services Accordion Styling (Modern Mockup Fidelity) */
.title-orange-block-vices {
  position: relative;
  display: inline-block;
}

.title-orange-block-vices::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -24px;
  bottom: -10px;
  top: 48%;
  background-color: var(--color-orange);
  z-index: -1;
  pointer-events: none;
}

.service-row {
  cursor: pointer;
  border-bottom: 1px solid rgba(113, 113, 122, 0.35);
  background-color: transparent;
  padding: 2.25rem 0;
  transition: background-color 0.35s ease, padding 0.35s ease;
  user-select: none;
  width: 100%;
}

@media (min-width: 640px) {
  .service-row {
    padding: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .service-row {
    padding: 2.75rem 0;
  }
}

.service-row:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.03);
}

.service-row.active {
  background-color: #303030;
}

/* Service Responsive Grid Layout */
@media (max-width: 767px) {
  .service-grid {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .service-grid {
    display: grid;
    grid-template-columns: 130px 290px 1fr;
    gap: 2rem;
    align-items: center;
    transition: align-items 0.3s ease;
  }

  .service-row.active .service-grid {
    align-items: start;
  }

  .service-num-cell {
    grid-column: 1;
    padding-top: 0.5rem;
  }

  .service-img-cell {
    grid-column: 2;
  }

  .service-content-cell {
    grid-column: 3;
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: 150px 320px 1fr;
    gap: 2.5rem;
  }
}

/* Service Retro Image Card with Offset Drop Shadow */
.service-image-card {
  border-radius: 1.25rem;
  box-shadow: 6px 8px 0px 0px #D9D9D9;
  overflow: hidden;
  position: relative;
  background-color: #141414;
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 270px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.service-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .service-row:not(.active) .service-img-cell {
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
  }

  .service-row.active .service-img-cell {
    opacity: 1;
    height: auto;
    transition: opacity 0.4s ease 0.1s;
  }
}

/* Title & Orange Accent Underline */
.service-title-accent {
  position: absolute;
  bottom: -6px;
  left: 20%;
  right: -50px;
  height: 2px;
  background-color: var(--color-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-row.active .service-title-accent {
  opacity: 1;
}

/* Arrow Rotation (↘ collapsed, ↗ active) */
.service-arrow svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: rotate(90deg);
}

.service-row.active .service-arrow svg {
  transform: rotate(0deg);
}

/* Expandable Details & Badges */
.service-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.service-row.active .service-details {
  max-height: 1200px;
  opacity: 1;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease 0.1s;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background-color: #242424;
  border: 1px solid rgba(113, 113, 122, 0.45);
  color: #D4D4D8;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: all 0.2s ease;
  user-select: none;
}

.service-pill:hover {
  border-color: var(--color-orange);
  color: #FFFFFF;
  background-color: #2a2a2a;
}

/* Legacy service-item compatibility */
.service-item {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}

.service-item.active .service-content {
  max-height: 600px;
  opacity: 1;
}

.service-item.active .arrow-icon {
  transform: rotate(45deg);
  color: var(--color-orange);
}

/* Skill Cards Grid */
.skill-card {
  background-color: #FFFFFF;
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -4px rgba(255, 90, 29, 0.35);
}

/* Sliding Orange Screen Overlay (Left to Right) */
.skill-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-orange);
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  transform: translateX(-101%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  z-index: 10;
  pointer-events: none;
}

.skill-card:hover .skill-overlay {
  transform: translateX(0);
}

.skill-overlay-title {
  color: #FFFFFF !important;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.05em;
  transform: translateX(-14px);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1) 0.04s, opacity 0.22s ease 0.04s;
}

.skill-overlay-desc {
  color: #FFFFFF !important;
  font-family: 'Inter', sans-serif;
  transform: translateX(-14px);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1) 0.08s, opacity 0.22s ease 0.08s;
}

.skill-card:hover .skill-overlay-title,
.skill-card:hover .skill-overlay-desc {
  transform: translateX(0);
  opacity: 1;
}

/* Filter Buttons Styling */
.filter-btn {
  transition: all 0.25s ease;
}

.filter-btn.active {
  background-color: var(--color-orange) !important;
  color: #FFFFFF !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #141414;
}

::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange);
}

/* Smooth Glows */
.glow-orange {
  box-shadow: 0 0 40px -5px rgba(255, 90, 29, 0.4);
}

/* Encart & Mockup Drop Shadows (no white borders) */
.encart-drop-shadow {
  box-shadow: 0 16px 36px -4px rgba(0, 0, 0, 0.16), 0 6px 16px -4px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.encart-drop-shadow:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -6px rgba(0, 0, 0, 0.24), 0 12px 24px -4px rgba(0, 0, 0, 0.12);
}

.mockup-drop-shadow {
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.20), 0 10px 20px -5px rgba(0, 0, 0, 0.10);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-drop-shadow:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px -10px rgba(0, 0, 0, 0.28), 0 14px 28px -5px rgba(0, 0, 0, 0.14);
}

/* ========================================================= */
/* SECTION PARCOURS — FLUO ARROW TIMELINE (CENTRÉE)         */
/* Flèche verticale centrée s'illuminant en orange fluo      */
/* ========================================================= */

.parcours-timeline-track {
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 28px;
  width: 3px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  pointer-events: none;
}

@media (min-width: 768px) {
  .parcours-timeline-track {
    left: 50%;
    transform: translateX(-50%);
  }
}

.parcours-timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #FF5A1D 0%, #FF6A00 100%);
  border-radius: 9999px;
  box-shadow: 0 0 16px rgba(255, 90, 29, 0.85), 0 0 32px rgba(255, 90, 29, 0.5);
  will-change: height;
}

.parcours-timeline-moving-arrow {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -10%);
  color: #FF5A1D;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  will-change: top;
  filter: drop-shadow(0 0 10px #FF5A1D) drop-shadow(0 0 22px rgba(255, 90, 29, 0.9));
  pointer-events: none;
}

.parcours-timeline-circle-tip {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FF5A1D;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 20px #FF5A1D, 0 0 40px rgba(255, 90, 29, 0.85);
  z-index: 10;
  will-change: top;
}

.parcours-timeline-arrowhead {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, filter 0.3s ease;
  pointer-events: none;
}

.parcours-timeline-arrowhead.active {
  color: #FF5A1D;
  filter: drop-shadow(0 0 10px #FF5A1D) drop-shadow(0 0 22px rgba(255, 90, 29, 0.85));
}

/* ========================================================= */
/* PAGES PROJETS - FOND DÉGRADÉ SUBLIME (MAQUETTE)           */
/* ========================================================= */
.project-showcase-gradient {
  background: linear-gradient(180deg, #F8F8F8 0%, #ECEEF1 14%, #D4D8DD 45%, #D4D8DD 55%, #ECEEF1 86%, #F8F8F8 100%);
}

.mockup-drop-shadow {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.22), 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}