#img-container {
    color: white;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    background-size: cover;
  }
  
#img-container * {
    text-align: center;
    /* animation: fadeIn 2s ease;
    transform: translate(0, -50%); */
  }
  
  .img-logo {
    margin: 0 auto;
    width: 35%;
    max-width: 70%;
    margin-bottom: 4rem;
  }
  
  .img-title {
    font-size: 3em;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .img-subtitle {
    font-size: 1.2rem;
    margin: 0.5rem 0;
  }
  
  .img-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .btn {
    background-color: #0057a3;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn:hover {
    background-color: #003e75;
  }
  
  /* Fade-in animation */
  @keyframes fadeIn {
    0% { opacity: 0; transform: translate(-50%, -60%); }
    100% { opacity: 1; transform: translate(-50%, -50%); }
  }
    
  .transition-wrapper {
    display: flex;
    align-items: center;           /* Aligne lignes & texte au centre verticalement */
    justify-content: center;
    margin: 3rem 1rem;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .transition-text {
    font-weight: 600;
    color: #003e75;
    text-align: center;
    font-size: 2rem;              /* Texte plus gros */
    line-height: 1.2;
    margin: 0;
    flex-shrink: 0;               /* Évite que le texte se compresse */
  }

  .transition-text-2 {
    font-weight: 600;
    color: #003e75;
    text-align: center;
    font-size: 2rem;              
    line-height: 1.2;
    margin: 0;
    flex-shrink: 0;               
  }
  
  .line {
    flex: 1;
    height: 2px;
    background-color: #003e75;
    max-width: 200px;
    opacity: 0.7;
  }
  
  @media screen and (max-width: 768px) {
    .transition-wrapper {
      gap: 10px;
    }
  
    .transition-text {
      font-size: 1.4rem;
      text-align: center;
    }
  
    .line {
      max-width: 80px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .transition-text {
      font-size: 1.2rem;
      padding: 0 0.5rem;
    }
  
    .line {
      max-width: 50px;
    }
  }
  
 /* CHANGE TIRE FOOT PRINT */

/* SECTION ENTIÈRE */
.tire-footprint-section {
    background-color: #e6e6e6;
    padding: 3rem 1.5rem;
    font-family: Arial, sans-serif;
  }
  
  /* TITRE AVEC LIGNES */
  .tire-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .tire-title .line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background-color: #003e75;
    opacity: 0.6;
  }

  /* CAROUSSEL */
  .swiper-container {
    width: 100%;
    max-width: 1100px;
    height: 350px;
    margin: 40px auto;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  
  .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background: rgba(0, 0, 0, 0.15); /* fondu sombre */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 30px;
  }
  
  .slide-content h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .slide-content p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* CONTENU GLOBAL */
  .tire-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* COLONNE GAUCHE : IMAGES */
  .tire-images {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    justify-content: center;
    flex: 1 1 50%;
    flex-wrap: wrap;
  }
  
  .tire {
    text-align: center;
  }
  
  .tire img {
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
    width: var(--size);
    height: var(--size);
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  
  .tire p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
  }

  .tire:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .tire:hover p {
    color: #0057a3;
  }  
  
  /* COLONNE DROITE : TEXTE */
  .tire-text {
    flex: 1 1 45%;
    font-size: 1rem;
    color: #111;
    line-height: 1.6;
  }
  
  .tire-text strong {
    color: #003e75;
  }
  
  /* RESPONSIVE */
  @media screen and (max-width: 900px) {
    .tire-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .tire-images {
      justify-content: center;
    }
  
    .tire-text {
      max-width: 600px;
      margin-top: 2rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .tire-title h2 {
      font-size: 1.4rem;
    }
  
    .tire img {
      width: calc(var(--size) * 0.8);
      height: calc(var(--size) * 0.8);
    }
  
    .tire p {
      font-size: 0.85rem;
    }
  
    .tire-text {
      font-size: 0.95rem;
    }

    .solution-section {
      display: flex;
      flex-direction: column;
    }
  }
  
  /* THE SOLUTION */

  .solution-section {
    padding: 3rem 1rem;
    margin: auto 8%;
    background-color: #fff;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: fit-content;
  }
  
  .solution-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem auto;
    flex-wrap: wrap;
    max-width: 1200px;
  }
  
  .solution-image img,
  .solution-logo img {
    max-width: 100%;
    /* height: auto;
    display: block; */
  }
  
  .solution-image {
    flex: 1 1 600px;
  }
  
  .solution-logo {
    flex: 0 0 200px;
    max-width: 60%;
    margin: auto;
  }

  #jeep-logo {
    max-width: 40%;
  }
  
  @media screen and (max-width: 768px) {
    .solution-block {
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .solution-logo,
    .solution-image {
      flex: 1 1 100%;
    }
  
    .transition-text-2 {
      font-size: 1.5rem;
    }
  }

/* ACTIVAIR RACING BENEFITS */
.activair-racing {
  background-color: #e6e6e6;
  padding: 2rem 0;
}

.racing-benefits {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: auto 8%;
}

.benefit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.benefit.reverse {
  flex-direction: row-reverse;
}

.benefit .text {
  flex: 1;
  font-size: 1.2rem;
  color: #333;
  text-align: justify;
}

.benefit .image {
  flex: 1;
  max-width: 50%;
}

.benefit img {
  width: 100%;
  border-radius: 8px;
}

.racing-proven {
  border: 2px solid #003e75;
  padding: 30px;
  background-color: #f2f2f2;
  margin: 2% 8%;
  border-radius: 8px;
}

.racing-proven h3 {
  color: #003e75;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.race-details {
  font-family: Arial, sans-serif;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.race-details .left {
  min-width: 30%;
  font-size: 16px;
  color: #000;
}

.race-details .right {
  flex: 1;
  min-width: 250px;
  display: grid;
  grid-template-columns: repeat(3, 2fr) ;
  gap: 15px;
}

.right .main-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  align-self: flex-start;
}

.photo-and-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.right p {
  grid-column: span 2 / 4;
  text-align: center;
}

.testimonial {
  font-weight: 300;
  margin: 4% 8% 0;
  background-color: #d0312d;
  color: white;
  font-style: italic;
  font-size: 1.2rem;
  padding: 20px;
}

.testimonial strong {
  font-weight: bold;
}

@media screen and (max-width: 768px) {

  .right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .right .main-image {
    max-width: 100%;
  }
}

/* VIDEO PRESENTAITON */
.video-presentation{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.video-presentation video {
  max-width: 67%;
}

/*BANDEAU */

/* Bandeau principal */
.full-banner {
    width: 100%;
    background-color: #e52420;
    padding: 20px 0;
  }
  
  .banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
    font-size: 1.4rem;
  }
  
  .info {
    color: white;
    font-style: italic;
    white-space: nowrap;
  }
  
  /* Icônes sociales */
  .social-icons {
    display: flex;
    gap: 30px;
    font-size: 2rem;
  }
  
  .icon {
    color: white;
    text-decoration: none;
  }
  
  /* Bouton brochure */
  .brochure-btn {
    background-color: #003366;
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  }
/*FIN BANDEAU */
  
/*OUR APPLICATION */
.our-applications {
  padding: 60px 20px;
  text-align: center;
}


.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.application-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.application-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.application-item p {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #233469;
  font-weight: 500;
  margin: 0;
}

/* ACTIVAIR SUPPORT */

.support-activair {
    background-color: #d6d6d6;
    padding: 40px 20px;
    text-align: center;
  }
  
  /* Titre centré avec traits */
  .title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .line {
    flex: 1;
    height: 2px;
    background-color: #1e335f;
    max-width: 80px;
  }
  
  /* Grille de logos */
  #logo-grid-benefits {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  #logo-grid-benefits img:not(:last-child), #logo-grid-support img {
    margin: 0 auto;
    width: 100%;
    max-height: 150px;
    max-width: 250px;
    object-fit: contain;
    background-color: white;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
  }

  #logo-grid-support {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  #logo-grid-benefits img:last-child {
    grid-column: span 2 / 3;
    box-shadow: none;
    width: 100%;
    max-height: 150px;
    max-width: 250px;
    margin: 0 auto;
  }

  #logo-grid-support img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }

@media screen and (max-width: 992px) {
  .our-applications {
    margin: auto 8%;
  }

  #img-container {
    padding: 2%;
  }

  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .race-details .right {
    display: flex;
    flex-direction: column;
  }

  .benefit .image {
    max-width: 100%;
  }
  
  .race-details {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .right .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    align-self: center;
  }

  .img-logo {
    width: 80%;
    max-width: 100%;
  }

  .testimonial {
    margin: 8% 8% 0;
  }
  .video-presentation video {
    width: 85%;
    max-width: 100%;
  }

  #logo-grid-support img {
    min-height: 120px;
  }
}

@media screen and (max-width: 600px) {
  .applications-grid {
    grid-template-columns: 1fr;
  }

  .transition-wrapper .transition-text-2 {
    font-size: 22px;
  }

  .benefit, .benefit.reverse {
    flex-direction: column;
  }

  .solution-section {
    display: flex;
    flex-direction: column;
  }
}

/* Responsive tweaks */
@media screen and (max-width: 600px) {
  .img-title {
    font-size: 2em;
  }
  .img-subtitle {
    font-size: 1rem;
  }
  .img-buttons {
    gap: 0.75rem;
  }

  .video-presentation video {
    max-width: 95%;
  }

  .banner-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}