

  /* --- Navigation --- */
  .navbar {
    background-color: #080808;
    padding: 10px 20px;
  }
  
  .navbar .logo img {
    width: 200px;
  }
  
  .nav-list {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-list li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
  }
  
  .phone-number {
    font-weight: bold;
    color: #6DAB3B;
  }
  
  .phone-number:hover {
    color: #FFB606;
  }
  
  /* --- Galerie --- */
  .galerie-presentation {
    display: flex;
    flex-wrap: wrap;
    background-color: #F4EDE4;
    padding: 40px 20px;
    gap: 30px;
  }
  
  .galerie-left, .galerie-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .main-image img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .main-image img:hover {
    transform: scale(1.02);
  }
  
  /* --- Lightbox --- */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
  }
  
  #lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
  }
  
  .lightbox-navigation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
  }
  
  .nav-btn {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
  }
  
  .nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .galerie-right {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .galerie-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 1.2em;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
  }
  
  /* --- Responsive Styles (Media Queries) --- */
  
  /* Ordinateur de bureau (large écran) */
  @media (min-width: 1200px) {
    .navbar .nav-list {
      justify-content: flex-start;
    }
  
    .galerie-presentation {
      flex-direction: row;
    }
  
    .galerie-left, .galerie-right {
      flex: 1;
    }
  }
  
  /* Tablette (écrans de 768px à 1199px) */
  @media (max-width: 1199px) and (min-width: 768px) {
    .navbar .nav-list {
      justify-content: space-between;
    }
  
    .galerie-presentation {
      flex-direction: column;
      align-items: center;
    }
  
    .galerie-left, .galerie-right {
      width: 100%;
    }
  
    .overlay-text {
      font-size: 1.1em;
    }
  }
  
  /* Téléphone portable (écrans de 480px à 767px) */
  @media (max-width: 767px) {
    body {
      font-size: 14px;
    }
  
    .navbar .nav-list {
      display: none; /* Masque les liens du menu sur mobile */
      flex-direction: column;
    }
  
    .navbar .logo img {
      width: 40px;
    }
  
    .nav-list.active {
      display: flex; /* Montre les liens du menu lorsque activé */
    }
  
    .phone-number {
      font-size: 1em;
    }
  
    .galerie-presentation {
      flex-direction: column;
      padding: 20px 10px;
    }
  
    .main-image img {
      max-width: 100%;
      height: auto;
    }
  
    .overlay-text {
      font-size: 1.1em;
      padding: 15px;
    }
  }
  
  /* Téléphone portable très petit (moins de 480px) */
  @media (max-width: 479px) {
    .navbar {
      padding: 10px 5px;
    }
  
    .navbar .nav-list {
      display: none;
    }
  
    .nav-list.active {
      display: flex;
    }
  
    .galerie-presentation {
      flex-direction: column;
      padding: 15px;
    }
  
    .galerie-left, .galerie-right {
      width: 100%;
    }
  
    .overlay-text {
      font-size: 1em;
      padding: 10px;
    }
  }
  