html {
  background-color: #0a0a0a;
}

body {
  background-image: radial-gradient(circle at center, rgba(50, 115, 220, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 120% 120%;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  scroll-behavior: smooth;
}


h1,
h2,
h3,
.title {
  font-family: 'Playfair Display', serif;
}


section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}


.title-section {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.title-section::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background: #3273dc;
  position: relative;
  margin: 0.8rem auto 0;
  transition: width 0.6s ease 0.6s;
}

section.visible .title-section::after {
  width: 50%;
}


.bio-card p,
.interest p,
.card-content .content {
  color: #333;
}


.bio-card img,
.interest img,
.box img {
  border-radius: 12px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.bio-card img:hover,
.interest img:hover,
.box img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


.hero-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(50, 115, 220, 0.2) 0%, rgba(10, 10, 10, 0.95) 70%);
  z-index: 1;
}

.hero-image {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 450px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  animation: fadeInImage 1s ease forwards 0.5s;
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.portfolio-title {
  opacity: 0;
  animation: fadeInTitle 1s ease forwards 0.8s;
}

@keyframes fadeInTitle {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.portfolio-title h1 {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.5rem;
}

.portfolio-title h2 {
  font-size: 2.8rem;
  color: #3273dc;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}


.navbar {
  background-color: #0d1b2a !important;
  color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
}



.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98) !important;
  padding: 5px 0;
}

.navbar-item {
  font-weight: 600;
  color: #ffffff !important;
  transition: color 0.3s ease;
}

.navbar-item:hover {
  color: #90caf9 !important;
  background-color: transparent !important;
}

.navbar {
  background: linear-gradient(to right, #0d1b2a, #1b263b) !important;
  color: #fff !important;
}



.navbar.scrolled .navbar-item {
  color: #333;
}


.navbar-item:hover {
  background-color: transparent !important;
}


.navbar-brand .navbar-item:hover {
  background-color: transparent;
}

.navbar-link {
  color: #ffffff !important;
  font-weight: 600;
}

.navbar-link:hover {
  background-color: transparent !important;
  color: #90caf9 !important;
}



.bio-card {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible .bio-card {
  transform: translateY(0);
  opacity: 1;
}

.bio-image,
.bio-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.bio-text p {
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

section.visible .bio-text p {
  opacity: 1;
  transform: translateX(0);
}

section.visible .bio-text p:nth-child(1) {
  transition-delay: 0.1s;
}

section.visible .bio-text p:nth-child(2) {
  transition-delay: 0.2s;
}

section.visible .bio-text p:nth-child(3) {
  transition-delay: 0.3s;
}

section.visible .bio-text p:nth-child(4) {
  transition-delay: 0.4s;
}

section.visible .bio-text p:nth-child(5) {
  transition-delay: 0.5s;
}


.competences-container {
  max-width: 900px;
  margin: 0 auto;
}

.carrousel {
  width: 100%;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: #0f0f0f;
  padding: 1.5rem 0;
}

.carrousel-track {
  display: flex;
  gap: 15px;
  animation: scrollLeft 25s linear infinite;
  width: max-content;
  padding: 0 1rem;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.skill {
  min-width: 160px;
  height: 120px;
  background: #fff;
  color: #333;
  text-align: center;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.skill:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.skill img {
  height: 45px;
  width: auto;
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.skill:hover img {
  transform: scale(1.15);
}

.skill span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Projets améliorés */
.project-block {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible .project-block {
  opacity: 1;
  transform: translateY(0);
}

section.visible .project-block:nth-child(2) {
  transition-delay: 0.2s;
}

section.visible .project-block:nth-child(3) {
  transition-delay: 0.4s;
}

section.visible .project-block:nth-child(4) {
  transition-delay: 0.6s;
}

section.visible .project-block:nth-child(5) {
  transition-delay: 0.8s;
}

.project-image,
.project-details {
  flex: 1 1 45%;
  min-width: 300px;
}

.project-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.project-image:hover img {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.project-details .card {
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.project-details .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-details .title {
  color: #3273dc;
  margin-bottom: 1.2rem;
  position: relative;
}

.project-details .title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #3273dc;
  margin-top: 0.5rem;
  transition: width 0.5s ease;
}

.project-details .card:hover .title::after {
  width: 60px;
}


.parcours-columns {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.parcours-box {
  background: #fff;
  color: #333;
  padding: 2.5rem;
  border-radius: 12px;
  width: 45%;
  min-width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.parcours-box:nth-child(1) {
  transition-delay: 0.2s;
}

.parcours-box:nth-child(2) {
  transition-delay: 0.4s;
}

section.visible .parcours-box {
  opacity: 1;
  transform: translateY(0);
}

.parcours-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.parcours-box .title {
  color: #3273dc;
}

.parcours-box .card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.parcours-box .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.interests-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.interest {
  width: 30%;
  min-width: 280px;
  background: #fff;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.interest:nth-child(1) {
  transition-delay: 0.1s;
}

.interest:nth-child(2) {
  transition-delay: 0.3s;
}

.interest:nth-child(3) {
  transition-delay: 0.5s;
}

section.visible .interest {
  opacity: 1;
  transform: translateY(0);
}

.interest:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.interest img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border-radius: 8px;
}


.socials-big {
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  font-family: 'Playfair Display', serif;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.social-item {
  font-size: 8vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}

.social-item:hover {
  color: #ffffff;
}

.social-item::after {
  content: '';
  background-repeat: no-repeat;
  background-position: center;
  background-size: 120px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.2s ease;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.social-item:hover::after {
  opacity: 0.1;
}

.social-item[data-logo="linkedin"]:hover::after {
  background-image: url('img/linkedin_logo.png');
}

.social-item[data-logo="instagram"]:hover::after {
  background-image: url('img/instagram_logo.png');
}

.social-item[data-logo="x"]:hover::after {
  background-image: url('img/x_logo.png');
}

.real-footer {
  background-color: #0a0a0a;
  color: #ccc;
  text-align: center;
  padding: 4rem 2rem 3rem;
  font-family: 'Playfair Display', serif;
  margin-top: 5rem;
  position: relative;
  width: 100%;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-links a {
  color: #ccc;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.social-links a i {
  margin-right: 0.6rem;
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

.social-links a:hover i {
  transform: scale(1.3);
  color: #3273dc;
}

.footer-subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.4rem;
  font-family: 'Raleway', sans-serif;
}

.footer-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cv-btn {
  background-color: #3273dc;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
  margin-bottom: 1rem;
}

.cv-btn:hover {
  background-color: #255bbf;
}

.footer-email {
  font-size: 0.95rem;
  font-family: 'Raleway', sans-serif;
}

.footer-email a {
  color: #90caf9;
  text-decoration: none;
}

.footer-email a:hover {
  text-decoration: underline;
}




.section-indicator {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.indicator-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);

  cursor: pointer;
  transition: all 0.4s ease;
}

.indicator-dot.active {
  background: #3273dc;

  transform: scale(1.3);
  box-shadow: 0 0 5px rgba(50, 115, 220, 0.7);
}



.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #3273dc;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 20;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}


.progress-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #3273dc;
  z-index: 110;
  transition: width 0.2s ease;
}


.navbar-item {
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #3273dc;
  transition: all 0.3s ease;
}

.navbar-item:hover::after {
  width: 80%;
  left: 10%;
}


.button {
  transition: all 0.4s ease;
  border-radius: 30px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
}

.button.is-primary {
  background-color: #3273dc;
}

.button.is-primary:hover {
  background-color: #275cc7;
  color: #fff;
}

.button.is-light:hover {
  background-color: #ddd;
  color: #000;
}


@media (max-width: 768px) {


  .hero-container {
    height: auto;
    min-height: 100vh;
    padding: 6rem 1rem;

  }

  .hero-image {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .portfolio-title h1 {
    font-size: 3rem;
  }

  .portfolio-title h2 {
    font-size: 2rem;
  }

  section {
    padding: 4rem 1rem;
  }

  .title-section {
    font-size: 2.5rem;
  }

  .bio-card {
    padding: 1.5rem;
    gap: 2rem;
  }

  .bio-image,
  .bio-text {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .carrousel {
    width: 100%;
    overflow-x: auto;
  }

  .skill {
    min-width: 120px;
  }

  .project-block {
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .project-image,
  .project-details {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .project-details .card {
    padding: 1.5rem;
  }

  .parcours-columns {
    flex-direction: column;
    gap: 2rem;
  }

  .parcours-box {
    width: 100%;
    min-width: 100%;
    padding: 1.5rem;
  }

  .interests-section {
    gap: 2rem;
  }

  .interest {
    width: 100%;
    min-width: 100%;
    padding: 1.5rem;
  }

  .section-indicator {
    display: none;
  }

  .navbar-menu {
    background: linear-gradient(to right, #0d1b2a, #1b263b) !important;
  }

  .navbar-burger {
    color: white;
  }

  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .portfolio-title h1 {
    font-size: 2.5rem;
  }

  .portfolio-title h2 {
    font-size: 1.5rem;
  }

  .title-section {
    font-size: 2rem;
  }

  .hero-image img {
    max-width: 250px;
  }

  section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 768px) {

  section {
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: block !important;
    visibility: visible !important;
  }

  .interest,
  .parcours-box,
  .project-block,
  .bio-card,
  .bio-text p {
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: block !important;
    visibility: visible !important;
  }

  .title-section {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
  }

  .title-section::after {
    width: 50% !important;
  }
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a1a, #1f1f3f);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out, visibility 0.8s;
  overflow: hidden;
}

#loading-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 82, 204, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.loading-container {
  text-align: center;
  padding: 2rem;
  position: relative;
  max-width: 500px;
}

.logo-container {
  position: relative;
  margin-bottom: 2rem;
}

.loading-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  animation: float 3s ease-in-out infinite;
}

.loading-progress-bar {
  height: 4px;
  width: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0052cc, #4a87ff);
  border-radius: 4px;
  transition: width 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  animation: progress 3s ease-out forwards;
}

.loading-content {
  margin-bottom: 2rem;
}

.loading-title {
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.loading-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.loading-message {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 1.1s;
}

.loading-skills {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.skill-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.8);
}

.skill-icon:nth-child(1) {
  animation: popIn 0.5s ease forwards 1.3s;
}

.skill-icon:nth-child(2) {
  animation: popIn 0.5s ease forwards 1.5s;
}

.skill-icon:nth-child(3) {
  animation: popIn 0.5s ease forwards 1.7s;
}

.skill-icon:nth-child(4) {
  animation: popIn 0.5s ease forwards 1.9s;
}

@keyframes progress {
  0% {
    width: 0%;
  }

  10% {
    width: 10%;
  }

  30% {
    width: 30%;
  }

  50% {
    width: 50%;
  }

  70% {
    width: 70%;
  }

  90% {
    width: 90%;
  }

  100% {
    width: 100%;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  70% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hidden {
  opacity: 0;
  visibility: hidden;
}


.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

* {
  transition: all 0.3s ease-in-out;
}
.carrousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
