 <style>
    /* Styles globaux */
    body {
      font-family: Arial, sans-serif;
      background-color: #f8f0e3;
      color: #4e3224;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      scroll-behavior: smooth;
    }
    /* Navigation identique à index.html */
    nav {
       
      display: block;
      background: linear-gradient(to right, #D8B07D, #A16A3F, #4E3224);
      padding: 8px 0;
    }
    .navbar-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
    }
    .logo {
      height: 80px;
      width: auto;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 40px;
      margin: 0;
      padding: 0;
      align-items: center;
    }
    nav ul li a {
      text-decoration: none;
      color: white;
      font-weight: bold;
      font-size: 18px;
      transition: color 0.3s, transform 0.3s;
    }
    nav ul li a:hover {
      color: #fff4e0;
      transform: scale(1.1);
    }
    /* Sous-navigation interne */
    .subnav {
      text-align: center;
      margin: 20px 0;
    }
    .subnav a {
      margin: 0 8px;
      display: inline-block;
      padding: 8px 14px;
      background-color: #A16A3F;
      color: white;
      border-radius: 20px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.2s;
    }
    .subnav a:hover {
      background-color: #4E3224;
    }
    /* Sections galerie */
    .container {
      padding: 0 20px 40px;
      max-width: 1200px;
      margin: auto;
    }
    h1, h2 {
      color: #A16A3F;
      text-align: center;
      margin: 40px 0 20px;
    }
    h3 {
      margin: 20px 0 10px;
      font-style: italic;
      color: #4e3224;
      border: none;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }
    .gallery img,
    .gallery video {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    .gallery img:hover,
    .gallery video:hover {
      transform: scale(1.05);
    }
    /* Footer */
    footer {
      background-color: #4E3224;
      color: white;
      text-align: center;
      padding: 10px 0;
      margin-top: 40px;
    }
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  border-radius: 8px;
  transition: transform 0.2s ease;
}


}
.galerie-swiper {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 30px auto;
  padding-bottom: 32px;
}

/* Slides : largeur ajustable (plus petit = voisines plus visibles) */
.swiper-slide {
  width: 100px !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Images Swiper */
.swiper-slide img {
  display: block;
  max-width: 220%;
  height: 150px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(67,41,26,0.12);
  background: #fff;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.18s, opacity 0.2s;
}

/* Agrandit la slide centrale (scale sur la SLIDE, pas sur l'image) */
.swiper-slide-active {
  z-index: 2;
  transform: scale(1.00);
}
.swiper-slide-next,
.swiper-slide-prev {
  transform: scale(0.60);
  z-index: 1;
}
/* Optionnel : ombre centrale + voisines */
.swiper-slide-active img {
  box-shadow: 0 4px 24px rgba(67,41,26,0.18);
}
.swiper-slide-next img,
.swiper-slide-prev img {
  opacity: 0.92;
}

/* Wrapper visible pour débordement du scale */
.galerie-swiper .swiper-wrapper {
  overflow: visible;
}

/* Responsive affichage carrousel/grille */
.mobile-only { display: block; }
.desktop-only { display: none; }
@media (hover: hover) and (pointer: fine) {
  .mobile-only { display: none !important; }
  .desktop-only { display: grid; }
}

/* Thème brun foncé Swiper */
:root { --brun-fonce: #43291a; }
.swiper-button-next, .swiper-button-prev {
  color: var(--brun-fonce) !important;
  background: rgba(67,41,26,0.13);
  border-radius: 50%;
  width: 36px; height: 36px;
  transition: background 0.18s;
  box-shadow: 0 2px 8px rgba(67,41,26,0.09);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--brun-fonce);
  color: #fff !important;
}
.swiper-pagination-bullet {
  background: var(--brun-fonce) !important;
  opacity: 0.4; width: 11px; height: 11px; margin: 0 4px !important;
  border-radius: 50%;
}
.swiper-pagination-bullet-active {
  background: var(--brun-fonce) !important;
  opacity: 1 !important;
}

/* Animation zoom pour la lightbox */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Galerie classique : effet pointer */
.gallery img[onclick] { cursor: pointer; }

  </style>