@font-face {
  font-family: "Tusker Grotesk";
  src: url("fonts/TuskerGrotesk-3800Super.woff2") format("woff2"),
    url("fonts/TuskerGrotesk-3800Super.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tusker Grotesk";
  src: url("fonts/TuskerGrotesk-3800Super.woff2") format("woff2"),
    url("fonts/TuskerGrotesk-3800Super.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("fonts/BebasNeue-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ========================= */
/* Version Mobile Adaptée    */
/* ========================= */
@media screen and (max-width: 768px) {
  /* Body */
  body {
    padding: 0;
    margin: 0;
  }

  /* Logo "KENTIN." */
  .logo-text {
    top: 20px;
    left: 20px;
    font-size: 24px;
    letter-spacing: 2px;
  }

  /* Bouton Contact */
  .contact-button {
    top: 20px;
    right: 20px;
    font-size: 16px;
    padding: 8px 16px;
  }

  /* Hero Banner */
  .hero-banner {
    padding: 60px 20px;
    height: 100vh;
    background-position: center;
    justify-content: center;
  }

  /* Titre principal */
  .hero-title {
    font-size: 48px;
    line-height: 1.1;
    transform: translate(0, 0);
    text-align: left;
    margin-bottom: 45px;
  }

  .hero-title .blue {
    color: #4ca8ff;
  }

  /* Description */
  .hero-description {
    font-size: 16px;
    line-height: 1.4;
    transform: translate(0, 0);
    text-align: left;
    margin-bottom: 20px;
  }

  /* Lien CTA */
  .cta-link {
    font-size: 20px;
    letter-spacing: 1px;
    transform: translate(0, 0);
    margin-top: 15px;
    text-align: left;
  }

  .cta-arrow {
    height: 20px;
  }
}

body {
  font-family: "Inter", sans-serif; /* Texte courant */
  background-color: #1a1a1a;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

/* Texte "KENTIN." */
.logo-text {
  position: absolute;
  top: 35px;
  left: 50px;
  font-family: "Tusker Grotesk", sans-serif;
  font-size: 32px; /* Taille augmentée */
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px; /* Espacement entre les lettres */
  z-index: 10;
  text-decoration: none;
}

.hero-banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 100px 60px; /* Légèrement à droite */
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: #fff;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: -1;
  opacity: 0.5;
}

/* Titre principal */
.hero-title {
  font-family: "Tusker Grotesk", sans-serif;
  font-size: 128px;
  line-height: 1; /* Réduit l'espace entre les deux lignes */
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  transform: translate(13%, 10%);
}

.hero-title .blue {
  color: #4ca8ff; /* Bleu par défaut */
  font-weight: bold;
}

/* Ligne "& VIDEO EDITOR" en bleu spécifique */
.hero-title span:last-child {
  color: #5bb2ff; /* Applique le bleu #5BB2FF */
}

/* Description */
.hero-description {
  font-size: 180px;
  font-family: "Inter", sans-serif;
  font-weight: 300; /* Texte fin */
  line-height: 1.5; /* Réduit l'espace entre les lignes */
  margin-bottom: 35px;
  max-width: 700px; /* Texte plus long */
  position: relative;
  z-index: 1;
  transform: translate(10%, 10%);
}

/* Lien avec flèche */
.cta-link {
  display: inline-flex;
  letter-spacing: 3px; /* Espacement entre les lettres */
  align-items: center; /* Aligne la flèche avec le texte */
  text-decoration: none;
  color: #4ca8ff;
  font-family: "bebas neue", sans-serif;
  font-size: 30px; /* Taille augmentée */
  font-weight: normal;
  position: relative;
  z-index: 1;
  transform: translate(33%, -200%); /* Alignement sous la description */
  margin-top: 0px; /* Espacement sous la description */
}

/* Flèche SVG */
.cta-arrow {
  margin-left: 10px; /* Espace entre le texte et la flèche */
  height: 26px; /* Taille agrandie */
  width: auto; /* Garde les proportions */
  transition: transform 0.3s, fill 0.3s;
}

.cta-link:hover .cta-arrow {
  transform: translateX(5px); /* Déplacement fluide au survol */
  fill: #1a6db3; /* Change la couleur de la flèche au survol */
}

/* Bouton Contact */
.contact-button {
  position: absolute;
  top: 30px;
  right: 70px;
  background-color: #4ca8ff;
  color: #000000; /* Couleur du texte en noir */
  font-size: 20px; /* Taille augmentée */
  font-weight: bold;
  text-decoration: none;
  padding: 10px 25px; /* Taille du bouton augmentée */
  border-radius: 50px;
  transition: background-color 0.3s, transform 0.3s;
}

.contact-button:hover {
  background-color: #1a6db3;
  transform: scale(1.05);
}

/* Nouvelle section de travail */
.work-section {
  display: flex;
  align-items: flex-start; /* Aligne les éléments vers le haut */
  justify-content: space-between;
  padding: 100px 60px; /* Réduction du padding pour remonter l'ensemble */
  background-color: #202020;
}

/* Décalage de l'image à droite */
.work-image {
  position: relative;
  flex: 1;
  max-width: 35%;
  margin-right: 0; /* Réinitialise les marges */
  transform: translateX(100px); /* Décale l'image de 50px à droite */
}

.work-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* Barre bleue et texte vertical inversé */
.image-caption {
  position: absolute;
  top: 20%; /* Ajuste la position verticale */
  left: -40px; /* Position horizontale */
  display: flex;
  flex-direction: row; /* Place la barre à côté du texte */
  align-items: center; /* Aligne verticalement la barre et le texte */
}

/* Barre bleue indépendante */
.blue-bar {
  position: absolute; /* Permet un placement libre */
  top: -15%; /* Ajuste verticalement */
  left: 17px; /* Ajuste horizontalement */
  width: 2px; /* Largeur de la barre */
  height: 70px; /* Hauteur de la barre */
  background-color: #4ca8ff;
  transform: translate(-100%, -50%); /* Centrage autour du point défini */
}

.image-caption p {
  font-family: "Inter", sans-serif;
  font-size: 22px; /* Texte plus gros */
  color: #ffffff;
  text-align: center; /* Centrage du texte */
  margin: 0;
  writing-mode: vertical-lr; /* Orientation verticale */
  transform: rotate(180deg); /* Tourne le texte à 180 degrés */
  transform-origin: center; /* Point d'origine de la rotation */
}

/* Contenu texte */
.work-content {
  flex: 1;
  max-width: 50%;
  transform: translateY(-60px); /* Remonte le texte */
}

/* Augmentation de la taille du titre */
.work-title {
  font-family: "Tusker Grotesk", sans-serif;
  font-size: 72px; /* Augmentation supplémentaire */
  font-weight: 700;
  line-height: 1.1; /* Réduction légère de l'espacement entre les lignes */
  margin-bottom: 10px;
  letter-spacing: 1px; /* Espacement entre les lettres */
}

.work-title .blue {
  color: #4ca8ff;
  font-weight: bold;
}

.work-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 20px;
}

/* Bouton */
.cta-link2 {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #4ca8ff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  font-weight: normal;
  transition: color 0.3s;
  letter-spacing: 3px; /* Espacement entre les lettres */
}

.cta-link:hover {
  color: #1a6db3;
}

.cta-arrow2 {
  margin-left: 10px;
  height: 22px;
  transition: transform 0.3s, fill 0.3s;
}

.cta-link:hover .cta-arrow {
  transform: translateX(5px);
  fill: #1a6db3;
}

/* Style spécifique pour le mot "AVEC" */
.work-title .white-text {
  color: #ffffff; /* Texte en blanc */
}

/* Section Travaux Sélectionnés */
.selected-work-section {
  padding: 150px 20px;
  background-color: #202020;
  color: #ffffff;
  text-align: center;
}

.selected-work-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  font-weight: 100;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.selected-work-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 50px;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  letter-spacing: 1px;
}

.selected-work-description .last-word {
  display: inline-block;
  text-align: center;
  color: #ffffff; /* Si besoin de changer de couleur pour mettre en avant "réalisés." */
}

.selected-work-grid {
  display: flex;
  flex-direction: column; /* Alignement vertical */
  gap: 20px; /* Espacement entre les cartes */
  justify-content: center; /* Centre les cartes horizontalement */
  align-items: center; /* Centre les éléments dans la grille */
  margin-bottom: 60px; /* Ajoute un espace en bas de la grille */
}

/* Carte de projet */
.selected-work-item {
  position: relative;
  width: 450px; /* Largeur fixe pour les cartes */
  height: 450px; /* Hauteur fixe pour un design uniforme */
  border-radius: 15px;
  overflow: hidden;
  background-color: #202020;
  transition: transform 0.3s ease-in-out;
  margin-bottom: -150px; /* Réduit davantage l'espace entre les cartes */
}

/* Décalage alterné */
.selected-work-item:nth-child(odd) {
  transform: translateX(-280px); /* Réduit le décalage vers la gauche */
}

.selected-work-item:nth-child(even) {
  transform: translateX(220px); /* Réduit le décalage vers la droite */
}

/* Image du projet */
.selected-work-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajuste l'image pour couvrir entièrement la carte */
}

/* Conteneur texte sur l'image */
.selected-work-details {
  position: absolute;
  bottom: 20px; /* Positionne le texte vers le bas de la carte */
  left: 20px;
  right: 20px;
  text-align: left;
  padding: 10px;
  border-radius: 5px;
}

/* Titre des projets */
.selected-work-item-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px; /* Taille augmentée */
  font-weight: normal;
  color: #ffffff;
  margin-bottom: 5px;
  text-transform: uppercase; /* Texte en majuscules */
  letter-spacing: 2px; /* Espacement entre les lettres */
}

/* Description des projets */
.selected-work-item-subtitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px; /* Plus petite taille */
  font-weight: 400;
  color: #5bb2ff; /* Bleu clair spécifique */
  text-transform: uppercase; /* Texte en majuscules */
  letter-spacing: 1.5px; /* Espacement entre les lettres */
  margin: 0;
}

.clients-partners-section {
  background-color: #1a1a1a; /* Fond noir */
  padding: 40px 50px;
  max-width: 1200px; /* Largeur maximale pour limiter la bande */
  margin: 0 auto; /* Centre la section horizontalement */
  border-radius: 15px; /* Coins arrondis pour un design moderne */
  text-align: center; /* Centre le texte horizontalement */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centre verticalement le contenu */
  align-items: center; /* Centre horizontalement le contenu */
}

.clients-partners-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 50px;
  font-weight: normal;
  color: #ffffff;
  margin-bottom: 0px;
  margin-top: 0px; /* Réduit l'espace au-dessus du titre */
  text-transform: uppercase;
  letter-spacing: 2px; /* Espacement entre les lettres */
}

.clients-partners-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: 2px; /* Espacement entre les lettres */
}

.clients-partners-grid {
  display: flex;
  justify-content: center;
  gap: 40px; /* Espacement entre les cartes */
  flex-wrap: wrap;
}

.client-card {
  background-color: #1f1f1f; /* Légèrement plus clair que le fond */
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  width: 250px;
}

.client-card img {
  border-radius: 50%; /* Image circulaire */
  width: 80px;
  height: 80px;
  margin-bottom: 5px;
}

.client-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 5px;
}

.client-card p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #aaaaaa; /* Texte secondaire */
}

.clients-partners-section *:where(:is(h1, h2, h3, p)) {
  font-weight: bold;
}

/* Conteneur principal de la FAQ */
.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #202020;
  padding: 60px 20px;
  width: 100%; /* Utilise toute la largeur de l'écran */
  margin: 0 auto;
  box-sizing: border-box; /* Inclut le padding dans la largeur totale */
}

/* Image de la FAQ */
.faq-image img {
  width: 100%;
  max-height: 500px; /* Hauteur maximale de l'image */
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 80px;
}

/* Contenu de la FAQ */
.faq-content {
  display: flex;
  width: 100%; /* Utilise toute la largeur disponible */
  gap: 40px;
  box-sizing: border-box; /* Inclut le padding dans la largeur totale */
  padding: 0 20px; /* Ajoute un padding latéral pour éviter que le contenu touche les bords */
}

/* Titre de la FAQ */
.faq-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 500px; /* Largeur fixe pour le titre */
  flex-shrink: 0;
  text-align: left;
  margin: 0 auto; /* Centre horizontalement le titre */
  margin-left: 80px;
}

/* Description sous le titre */
.faq-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.5;
  max-width: 500px; /* Largeur maximale identique à celle du titre */
  margin-bottom: 40px;
  letter-spacing: 2px;
  margin-left: 80px;
}

/* Conteneur des questions FAQ */
.faq-items {
  flex: 1;
  max-width: 600px; /* Réduit la largeur des questions */
  text-align: left;
  margin-left: 100px;
}

/* Style des éléments FAQ */
.faq-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
}

.faq-item details {
  cursor: pointer;
}

/* Style des résumés (questions) */
.faq-item summary {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  outline: none;
  transition: color 0.3s; /* Animation pour le changement de couleur */
}

/* Changement de couleur des questions ouvertes */
.faq-item details[open] summary {
  color: #5bb2ff; /* La question devient bleue lorsqu'elle est ouverte */
}

/* Style des paragraphes (réponses) */
.faq-item p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #cccccc;
  margin-top: 10px;
  line-height: 1.5;
}

/* Footer principal */
.site-footer {
  display: flex;
  height: 100vh;
  position: relative;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  background-color: #1a1a1a;
  overflow: hidden;
}

/* Contenu à gauche */
.footer-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Alignement en haut */
  padding: 50px 80px 60px 0; /* Padding ajusté pour remonter le bloc */
  box-sizing: border-box;
  align-items: flex-end; /* Aligne le contenu à droite */
}

/* Titre principal */
.footer-title {
  font-family: "Tusker Grotesk", sans-serif;
  font-size: 120px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px; /* Espacement réduit */
  text-align: right; /* Aligne le texte à droite */
}

/* Texte bleu */
.footer-title .blue-text {
  color: #5bb2ff;
}

/* Description */
.footer-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 2px;
  margin-bottom: 20px; /* Espacement réduit */
  max-width: 400px;
  text-align: right; /* Aligne le texte à droite */
}

/* Bloc contact */
.footer-contact {
  display: flex;
  align-items: center;
  background-color: #202020;
  padding: 0px;
  border-radius: 10px;
  margin-bottom: 20px;
  max-width: 400px;
  width: 100%;
}

/* Image de la card contact */
.footer-contact img {
  width: 150px;
  height: 100%;
  border-radius: 10px 0 0 10px; /* Coins arrondis uniquement à gauche */
  object-fit: cover;
  flex-shrink: 0; /* Empêche l'image de se réduire */
  margin-right: 0; /* Supprime l'espacement à droite */
}

/* Détails du contact */
.contact-details {
  flex: 1; /* Prend tout l'espace restant */
  padding-left: 30px; /* Augmente l'espacement à gauche du texte */
  padding-right: 10px; /* Ajoute un léger padding à droite */
  padding-bottom: 40px; /* Décale le texte vers le haut */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Alignement en haut */
}

.contact-details h3 {
  font-family: "Tusker Grotesk", sans-serif;
  font-size: 20px;
  letter-spacing: 2px; /* Letter-spacing ajouté */
  margin-bottom: 5px;
}

.contact-details p {
  margin: 0;
  font-size: 14px;
  color: #cccccc;
}

/* Icônes des réseaux sociaux */
.footer-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-end; /* Alignement à droite */
  width: 100%;
  margin-bottom: 30px;
}

.footer-icon {
  color: #ffffff;
  font-size: 24px;
  transition: color 0.3s;
}

.footer-icon:hover {
  color: #5bb2ff;
}

/* Image à droite */
.footer-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Texte de copyright */
.footer-copyright {
  font-size: 10px;
  color: #8c8c8c;
  position: absolute;
  bottom: 20px;
  left: 525px;
  letter-spacing: 1px;
}

/* Conteneur principal du projet */
.project-container {
  display: flex;
  flex-direction: column;
  padding: 60px 80px;
  background-color: #1a1a1a;
  color: #ffffff;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Titre du projet */
.project-title {
  font-family: "Tusker Grotesk", sans-serif;
  font-size: 80px;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 150px;
  letter-spacing: 2px;
  text-align: left;
  margin-left: 100px; /* Ajoute une marge à gauche pour le titre */
}

/* Année du projet */
.project-year {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  position: absolute;
  top: 170px;
  right: 560px;
  color: #ffffff;
  text-align: right;
}

/* Conteneur pour l'image et le texte */
.project-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 100px;
  margin-left: 100px; /* Ajoute une marge à gauche pour le contenu */
}

/* Conteneur de l'image */
.project-image {
  flex: 1;
  margin-right: 20px; /* Ajoute une marge à droite pour l'image */
}

.project-image img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 50px;
}

/* Texte descriptif à droite de l'image */
.project-description {
  width: 25%; /* Ajuste la largeur du texte */
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: left;
  margin-right: 150px;
}

/* Lien du projet avec icône */
.project-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  font-family: "Tusker Grotesk", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid #ffffff;
  transition: color 0.3s, border-color 0.3s;
  letter-spacing: 1px;
  margin-bottom: 200px;
}

.project-link .link-icon {
  margin-left: 8px;
  font-size: 20px;
  display: inline-block;
  transform: translateY(-2px);
}

.project-link:hover {
  color: #5bb2ff;
  border-color: #5bb2ff;
}

.logo-text a {
  color: #ffffff; /* Définit la couleur du texte en blanc ou la couleur de ton choix */
  text-decoration: none; /* Enlève le soulignement par défaut */
}

.logo-text a:visited {
  color: #ffffff; /* Empêche le violet pour les liens visités */
}

.logo-text a:hover {
  color: #5bb2ff; /* Optionnel : change la couleur au survol si souhaité */
  transition: color 0.3s ease;
}

/* Section prochain projet */
.next-project {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0;
}

.next-project-link {
  display: inline-block;
  transition: transform 0.3s;
}

.next-project-link:hover {
  transform: scale(1.05);
}

.next-project-image {
  width: 100%;
  max-width: 400px; /* Ajuste selon la taille souhaitée */
  height: auto;
  border-radius: 10px;
  display: block;
}

.next-project-title {
  font-family: "Tusker Grotesk", sans-serif;
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 20px;
  letter-spacing: 2px;
}

/* Section du carrousel */
.video-carousel-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #202020;
  color: #ffffff;
  overflow: hidden;
}

/* Titre de la section */
.video-carousel-title {
  font-family: "Tusker Grotesk", sans-serif;
  font-size: 58px;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.video-carousel-title .blue {
  color: #5bb2ff;
}

/* Conteneur du carrousel */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Piste du carrousel pour l'animation */
.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 20s linear infinite;
}

.carousel-track img {
  width: 250px;
  height: 150px;
  object-fit: cover;
}

/* Animation pour le défilement */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Ajustement pour le défilement continu */
.carousel-container:hover .carousel-track {
  animation-play-state: paused; /* Pause au survol */
}

/* Section de la galerie vidéo */
.video-gallery-section {
  padding: 60px 20px;
  background-color: #202020;
}

/* Conteneur principal de la galerie */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Élément individuel de la galerie */
.video-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding-bottom: 20px;
}

/* Vidéos */
.gallery-video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Légende sous la vidéo */
.video-caption {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #ffffff;
  margin-top: 10px;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

/* Icône de lien */
.video-link-icon {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

/* Effet au survol de l'icône */
.video-link-icon:hover {
  color: #5bb2ff;
}

/* Alignement de la troisième vidéo pour un look équilibré */
.video-gallery .video-item:nth-child(3) {
  grid-column: span 2;
  max-width: 50%;
  margin: 0 auto;
}

/* Section Logiciels */
.software-section {
  padding: 80px 60px;
  background-color: #202020;
  color: #ffffff;
  text-align: center;
}

/* Titre de la section */
.software-title {
  font-family: "Tusker Grotesk", sans-serif;
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

/* Texte en bleu */
.software-title .blue-text {
  color: #5bb2ff;
}

/* Conteneur des cartes */
.software-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

/* Style des cartes */
.software-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: left;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Icône du logiciel */
.software-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

/* Nom du logiciel */
.software-name {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Description du logiciel */
.software-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  
  .project-video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
}

.custom-video-wrapper {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.custom-video-wrapper iframe {
    max-width: 100%;
    margin: 0 auto;
}

  