@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  visibility: hidden;
}

.has-js [data-scrolly=fromBottom] {
  opacity: 0;
  transition: all 0.4s ease-out;
  transform: translateY(60px);
}
.has-js [data-scrolly=fromBottom].is-active {
  opacity: 1;
  transform: translateY(0px);
}
.has-js [data-scrolly=fromLeft] {
  opacity: 0;
  transition: all 0.4s ease-out;
  transform: translateX(-60px);
}
.has-js [data-scrolly=fromLeft].is-active {
  opacity: 1;
  transform: translateX(0px);
}
.has-js [data-scrolly=fromRight] {
  opacity: 0;
  transition: all 0.4s ease-out;
  transform: translateX(60px);
}
.has-js [data-scrolly=fromRight].is-active {
  opacity: 1;
  transform: translateX(0px);
}

/* ==========================================================================
   easing / settings
   ========================================================================== */
.page {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.page.is-entered {
  opacity: 1;
  transform: translateY(0);
}

.page.is-leaving {
  opacity: 0;
  transform: translateY(-12px);
}

.page {
  position: relative;
}

.page-overlay {
  position: absolute;
  inset: 0;
  background: #0e0e0e;
  z-index: 10;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.5s ease;
}

.page.is-entered .page-overlay {
  opacity: 0;
  pointer-events: none;
}

.parallax img {
  transition: transform 0.1s linear;
  will-change: transform;
}

[data-i18] {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

[data-i18].is-switching {
  opacity: 0;
  transform: translateY(2px);
}

.projects {
  margin: 0 auto;
  padding: 6rem 2rem;
}

.projectsTitle {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 3.5rem;
}

.moreProjectsTitle {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin: 2.5rem 0;
}

.projectGrid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  min-height: 300px;
}

@media (max-width: 1024px) {
  .projects {
    padding: 4rem 1.5rem;
  }
  .projects .projectGrid {
    grid-template-columns: 1fr;
  }
}
.aboutSection {
  width: 100%;
  padding: 5rem 10% 4rem 10%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.aboutContent {
  width: 60%;
}

.aboutImage {
  display: flex;
  justify-content: center;
  width: 40%;
}
.aboutImage img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.aboutTitle {
  font-size: 64px;
  color: #ffffff;
  padding-bottom: 20px;
}

.aboutSubtitle {
  font-size: 36px;
  margin: 20px 0 20px 0;
  color: #f07a4a;
}

.aboutText {
  font-size: 20px;
  color: #d1d5d8;
  line-height: 1.3;
  font-weight: 400;
}

@media (max-width: 768px) {
  .aboutSection {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .aboutImage {
    order: -1;
    margin-bottom: 2rem;
  }
}
.futureContent,
.skillsContent {
  padding: 4rem;
}

.futureGrid {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.futureColumn {
  width: 40%;
}

.futureContent h2,
.skillsContent h2 {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

.futureContent h3 {
  text-align: center;
  font-size: 28px;
  color: #f07a4a;
  margin-bottom: 1.5rem;
}

.futureContent p,
.skillsContent p {
  font-size: 20px;
  color: #d1d5d8;
  line-height: 1.4;
  font-family: "Work Sans", sans-serif;
}

.futureContent.has-particles {
  position: relative;
}

.futureContent.has-particles {
  position: relative;
  min-height: 450px;
}

@media (max-width: 768px) {
  .futureGrid {
    flex-direction: column;
    gap: 2rem;
  }
  .futureColumn {
    width: 100%;
  }
  .futureContent,
  .skillsContent {
    padding: 2rem;
  }
}
.passionsContent {
  padding: 4rem 3rem;
}

.passionsContent h2 {
  text-align: center;
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 4rem;
}

.passionGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.passionsContent.has-particles {
  position: relative;
}

.passionsContent.has-particles {
  position: relative;
  min-height: 500px;
}

@media (max-width: 768px) {
  .passionGrid {
    grid-template-columns: 1fr;
  }
}
.projectStoryVideo .storyHero {
  text-align: center;
  padding-top: 5rem;
  margin-bottom: 70px;
}
.projectStoryVideo .storyTitle {
  font-size: 64px;
}
.projectStoryVideo .storySubtitle {
  font-size: 22px;
  margin: 2rem auto 2rem;
  width: 70%;
}
.projectStoryVideo .heroMedia {
  display: flex;
  justify-content: center;
}
.projectStoryVideo .heroMedia .videoContainer {
  width: 55%;
}
.projectStoryVideo .storyChapter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1500px;
  padding: 0 0 60px 0;
  margin: auto;
}
.projectStoryVideo .storyChapter.reverse {
  flex-direction: row-reverse;
}
.projectStoryVideo .chapterText {
  width: 50%;
  text-align: center;
}
.projectStoryVideo .chapterText h2 {
  font-size: 40px;
  color: #f07a4a;
  padding-bottom: 20px;
}
.projectStoryVideo .chapterText p {
  font-size: 20px;
  color: #d1d5d8;
}
.projectStoryVideo .chapterMedia {
  width: 50%;
}
.projectStoryVideo .chapterMedia img,
.projectStoryVideo .chapterMedia video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.projectStoryVideo .storyCredits {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  text-align: center;
}
.projectStoryVideo .creditsGroup {
  margin-bottom: 3rem;
}
.projectStoryVideo .creditsGroup:last-child {
  margin-bottom: 0;
}
.projectStoryVideo .creditsRole {
  font-size: 28px;
  color: #f07a4a;
  margin-bottom: 1rem;
  font-weight: 700;
}
.projectStoryVideo .creditsNames {
  list-style: none;
  padding: 0;
  margin: 0;
}
.projectStoryVideo .creditsNames li {
  font-size: 18px;
  color: #d1d5d8;
  line-height: 1.6;
  margin: 0.3rem 0;
}

.projectStoryTech {
  padding: 6rem 0;
}
.projectStoryTech strong {
  color: #f07a4a;
  font-weight: 700;
}

/* HERO -------------------------------------------------- */
.techHero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1500px;
  margin: auto;
  padding: 30px 0;
}

.heroTitle {
  font-size: 72px;
}

.heroDescription {
  font-size: 22px;
  margin: 2rem 0;
}

.heroMeta {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
.heroMeta li {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.6;
}

.heroLeft {
  flex: 0 0 50%;
}

.heroRight {
  flex: 0 0 50%;
}

.heroRight video,
.heroRight img {
  width: 100%;
  border-radius: 24px;
}

/* FEATURES -------------------------------------------------- */
.techFeatures {
  width: 1500px;
  margin: auto;
}
.techFeatures .sectionTitle {
  padding: 20px 0;
}

.featuresGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.featureCard {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.featureCard:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.featureImage {
  width: 100%;
  max-height: 50%;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featureTitle {
  font-size: 24px;
  color: #f07a4a;
  margin-bottom: 1rem;
}

.featureCard p {
  font-size: 18px;
  color: #d1d5d8;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.featureCard p:last-child {
  margin-bottom: 0;
}

/* BREAKDOWN -------------------------------------------------- */
.techBreakdownArticle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin: auto;
  padding: 4rem 0;
  max-width: 1500px;
}
.techBreakdownArticle.reverse {
  flex-direction: row-reverse;
}
.techBreakdownArticle .breakdownContent {
  max-width: 60%;
}
.techBreakdownArticle p {
  font-size: 23px;
}

.breakdownMedia img {
  width: 100%;
  border-radius: 24px;
}

.breakdownTitle {
  text-align: center;
  font-size: 40px;
  color: #f07a4a;
  padding: 0 0 20px 0;
}

/* CREDITS -------------------------------------------------- */
.techCredits {
  width: 1500px;
  margin: auto;
  padding: 6rem 0;
  text-align: center;
}

.creditsGroup {
  margin-bottom: 3rem;
}

.creditsRole {
  color: #f07a4a;
  font-size: 24px;
  margin-bottom: 1rem;
}

.creditsNames {
  list-style: none;
  padding: 0;
}
.creditsNames li {
  font-size: 18px;
  color: #d1d5d8;
  margin: 0.3rem 0;
}

header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 5px 15px;
  width: 100%;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.4s;
}
header .logo {
  width: 100%;
}
header::before {
  background-color: #f07a4a;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: transparent;
}
.header-is-hidden.is-scrolling-down header {
  transform: translateY(-100%) translateY(4px);
}
@media screen and (min-width: 1024px) {
  header {
    background-color: rgba(1, 1, 1, 0);
  }
}

.header__brand {
  width: 100px;
  position: relative;
  z-index: 10;
  transition: all 0.4s;
}
.nav-is-active .header__brand {
  display: none;
}
.header__brand:hover {
  transform: rotate(360deg);
}

.header__toggle {
  --bar-width: 40px;
  --bar-height: 7px;
  --bar-spacer: 3px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 10;
}
.header__toggle .barres span {
  background: #fff;
  border-radius: 3px;
  height: var(--bar-height);
  width: var(--bar-width);
  position: absolute;
  top: calc(50% - var(--bar-height) / 2);
  left: calc(50% - var(--bar-width) / 2);
  transition: 0.3s all;
}
.header__toggle .barres span:nth-child(1) {
  top: calc(45% - var(--bar-height) / 2 - var(--bar-height) - var(--bar-spacer));
}
.header__toggle .barres span:nth-child(3) {
  top: calc(56% - var(--bar-height) / 2 + var(--bar-height) + var(--bar-spacer));
}
.nav-is-active .header__toggle {
  margin: 10px 0 0 auto;
}
.nav-is-active .header__toggle .barres span {
  top: calc(50% - var(--bar-height) / 2);
}
.nav-is-active .header__toggle .barres span:nth-child(1) {
  transform: rotate(45deg);
}
.nav-is-active .header__toggle .barres span:nth-child(2) {
  transform: scaleX(0);
}
.nav-is-active .header__toggle .barres span:nth-child(3) {
  transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  .header__toggle {
    display: none;
  }
}

.nav-primary {
  background-color: #f07a4a;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  overflow-y: auto;
  z-index: 1;
  transition: all 0.4s;
  transform: translateY(-100%);
}
.nav-is-active .nav-primary {
  transform: translateY(0);
}
.nav-primary ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  list-style: none;
  padding: 20px 0 0 0;
  width: 100%;
  margin: auto;
  transition: all 0.4s ease-out;
  transform: translateY(-70%);
  opacity: 0;
}
.nav-is-active .nav-primary ul {
  transform: translateY(0);
  opacity: 1;
}
.nav-primary ul li {
  margin: 20px;
}
.nav-primary ul li:nth-child(5) a {
  width: fit-content;
  padding: 20px;
  margin: 0 auto;
  border-radius: 10px;
  color: var(--color-font-primary);
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .nav-primary ul {
    justify-content: flex-end;
    flex-direction: row;
    width: 100%;
    opacity: 1;
    transform: none;
    padding: 0;
    font-size: var(--font-size-menu-small);
  }
}
@media screen and (min-width: 1024px) {
  .nav-primary {
    display: block;
    background: transparent;
    transform: none;
    position: relative;
    height: auto;
    z-index: 2;
    border: none;
  }
}

.nav-primary__item {
  font-size: var(--font-size-menu-large);
  color: var(--color-font-primary);
  font-weight: 600;
  padding: 40px 0;
  position: relative;
  display: block;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .nav-primary__item {
    font-size: var(--font-size-menu-small);
    font-weight: normal;
    padding: 10px 30px;
    transition: 0.4s all;
  }
  .nav-primary__item:hover {
    color: var(--color-font-secondary);
  }
}

.nav-is-active body {
  overflow: hidden;
}

.links-wrapper {
  position: relative;
}

.animation-hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #f07a4a;
  transform: scaleY(0);
  transform-origin: bottom left;
  transition: transform 0.3s;
}
.animation-hover:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background-color: #f07a4a;
  transform: scaleY(0);
  transform-origin: top right;
  transition: transform 0.3s;
}
.animation-hover .inner-wrapper {
  position: relative;
  display: inline-block;
}
.animation-hover .animation-a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #f07a4a;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.4s;
}
.animation-hover .animation-a:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #f07a4a;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
.animation-hover:hover:before, .animation-hover:hover:after {
  transform: scaleY(1);
}
.animation-hover:hover .animation-a:before, .animation-hover:hover .animation-a:after {
  transform: scaleX(1);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero__content {
  max-width: 80%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero__title {
  font-size: 150px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}
.hero__subtitle {
  margin-top: 1.2rem;
  font-size: 40px;
  font-weight: 600;
  color: #f07a4a;
  pointer-events: none;
}
.hero__tagline {
  margin-top: 0.8rem;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-inline: auto;
}
.hero__socials {
  margin: 2.5rem 0 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}
.hero__socials a {
  font-size: 1.6rem;
  color: #f07a4a;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.hero__socials a:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
  }
  .hero__subtitle {
    margin-top: 1.2rem;
    font-size: 20px;
    font-weight: 600;
    color: #f07a4a;
  }
  .hero__tagline {
    margin-top: 0.8rem;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-inline: auto;
  }
  .hero__socials {
    gap: 1.2rem;
  }
  .hero__socials a {
    font-size: 1.2rem;
  }
}
.projectCard {
  background-color: darkslategray;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 450px;
  background-color: #3b4249;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.projectCard .projectTitle {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.projectCard .projectMeta {
  color: #f07a4a;
  font-weight: 600;
  margin-bottom: 1rem;
}
.projectCard .projectDescription {
  color: #d1d5d8;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.projectCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.projectCard img {
  transition: transform 0.5s ease;
}
.projectCard:hover img {
  transform: scale(1);
}

.projectMedia.media-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.projectMedia.media-container img,
.projectMedia.media-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}
.projectMedia.media-container video {
  opacity: 0;
  pointer-events: none;
}

.projectCard.is-playing .projectMedia.media-container img {
  opacity: 0;
}
.projectCard.is-playing .projectMedia.media-container video {
  opacity: 1;
}

.skillCards {
  display: flex;
  gap: 2rem;
}

.skillCard {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
  background-color: #3b4249;
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.skillCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.skillCard img {
  transition: transform 0.5s ease;
}
.skillCard:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .skillCards {
    flex-direction: column;
  }
}
.passionCard {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.passionCard:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.passionIcon {
  font-size: 64px;
  margin-bottom: 1.5rem;
}

.passionCard h3 {
  font-size: 24px;
  color: #f07a4a;
  margin-bottom: 1rem;
}

.passionCard p {
  font-size: 18px;
  color: #d1d5d8;
  line-height: 1.5;
}

body {
  font-family: "Work Sans", sans-serif;
  background-color: #3b4249;
  color: #ffffff;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background-color: #f07a4a;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.projectButton {
  align-self: center;
  background-color: #f07a4a;
  color: #ffffff;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.projectButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(240, 122, 74, 0.35);
}

.scrollbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 6px;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

.scrollbar__thumb {
  display: block;
  width: 100%;
  height: 50px;
  background: #f07a4a;
  border-radius: 2px;
  transform-origin: top;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

.scroll-wrapper {
  height: 100vh;
  overflow-y: scroll; /* scroll actif */
}

/* cache la scrollbar du navigateur */
.scroll-wrapper::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.scroll-wrapper {
  scrollbar-width: none; /* Firefox */
}

.lang-switcher {
  position: fixed;
  bottom: 0px;
  right: 25px;
  z-index: 999;
  width: 120px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: #f07a4a;
  height: 50px;
  transition: height 0.25s ease;
}

/* Quand on hover : le conteneur s'agrandit vers le haut */
.lang-switcher:hover {
  height: 105px;
}

/* FR (toujours en bas) */
.lang-switcher__btn {
  width: 100%;
  height: 50px;
  background: transparent;
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* EN (au-dessus de FR) */
.lang-switcher__menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* 👇 caché par défaut */
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* 👇 quand on hover, EN apparaît */
.lang-switcher:hover .lang-switcher__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* EN */
.lang-switcher__item {
  width: 100%;
  height: 60px;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease;
}

/* Hover : seulement l'élément hover devient plus foncé */
.lang-switcher__btn:hover,
.lang-switcher__item:hover {
  background: #cf4610;
}

#particles-bg {
  position: fixed;
  inset: 0;
  /* Le canvas reste au-dessus pour capter la souris */
  z-index: 0;
  /* MAIS on laisse passer les clics vers le site */
  pointer-events: auto;
}

#particles-bg canvas {
  /* Le canvas reçoit la souris pour l'effet bubble */
  pointer-events: auto;
}

.page {
  position: relative;
  z-index: 1;
}

.videoContainer {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s ease;
}
.videoContainer video {
  width: 100%;
  display: block;
  pointer-events: auto;
}

.playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  background: rgba(240, 122, 74, 0.8);
  color: white;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.2s ease;
  pointer-events: auto;
}
.playButton:hover {
  background: rgba(207, 70, 16, 0.8);
  transform: translate(-50%, -50%) scale(1.08);
}
.playButton.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.videoContainer:hover {
  transform: scale(1.03);
}

/*# sourceMappingURL=main.css.map */
