body{
    margin: 0;
    padding: 0;
    
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: rgb(0, 162, 255, 0.7);;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Ajout d'une ombre pour le contraste */
    transition: background-color 0.3s ease; /* Transition pour changement d'arrière-plan */
  }

  .nav-links ul {
    padding-right: 60px;
    display: flex;
    list-style: none;
    position: relative;
  }

  .logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 130px; /* Ajustez la largeur selon vos besoins */
}

  .nav-links ul li {
    margin: 5 15px;
    position: relative;
    list-style-type: none;
  }

  .nav-links ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
  }

  .nav-links ul li a:hover {
    color: rgb(46, 42, 42);
  }

  .dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: rgba(187, 180, 180, 0.4);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.6);
    z-index: 1;
  }

  .dropdown-content a {
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: rgb(172, 151, 151);
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding-right: 20px;
  }

  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }

  .overlay1 {
    display: none; /* Initially hidden */
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    z-index: 1000; /* Placed above everything else */
  }

  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 15px;
    color: white;
    display: block;
    transition: 0.3s;
  }

  .sidenav div a {
    color: rgb(110, 211, 204);
  }

  .sidenav a:hover {
    color: #f1f1f1;
  }

  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 20px;
  }

  @media screen and (max-width: 825px) {
    .nav-links ul {
      display: none;
    }
    .menu-toggle {
      display: block;
    }
    .logo-img {
      width: 100px; /* Ajustez la largeur selon vos besoins */
  }
    
  }


  .car-interior {
    padding: 50px 20px;
    background-color: #e9e9e9;
    text-align: center;
}

.interior-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.interior-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.interior-item.reverse {
    flex-direction: row-reverse;
}

.interior-image {
    width: 60%;
}

.interior-image img {
    width: 70%;
    transition: transform .2s;
    border-radius: 20px;
    height: auto;
}

.interior-description {
    width: 40%;
    padding: 0 20px;
    line-height: 1.5;
  }

.interior-description p {
    font-size: 1em;

}


.description-buttons {
    margin-top: 10px;
  }
  .description-buttons a {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    background-color: #007bff;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
  }
  .description-buttons a:hover {
    background-color: #0056b3;
  }


    /* Car Interior Items */
    @media (max-width: 860px) {
      .car-interior .interior-item {
          flex-direction: column;
      }
      .car-interior .interior-description, .car-interior .interior-image {
          width: 100%;
      }
    }


    .interior-image img:hover{
    -ms-transform: scale(1.08); /* IE 9 */
    -webkit-transform: scale(1.08); /* Safari 3-8 */
    transform: scale(1.08); 
}