/* ===============================
   GLOBAL
=============================== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  text-align: center;
}

/* ===============================
   NAVIGATION (si tu en as)
=============================== */
nav {
  background: #111;
  padding: 1px;
}

nav a {
  color: #fff;
  margin: 0 5px;
  text-decoration: none;
}

/* ===============================
   CARTE LEAFLET
=============================== */
#map {
  height: 500px;
  width: 70%;
  margin: 60px auto;
  position: relative;
  display: block;
}

/* Voile bleu foncé */
#map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(20, 60, 130, 0.25);
}

/* ===============================
   GALERIE
=============================== */
.gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.hidden {
  display: none;
}

.gallery-header {
  margin: 0;
  padding: 0;
  text-align: center;
}

/* ===============================
   SWIPER
=============================== */
.swiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

/* ✅ Images jamais coupées, mobile-friendly */
.swiper-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.4s ease;
  cursor: zoom-in;
}

/* ✅ Zoom */
.swiper-slide img.zoomed {
  transform: scale(2);
  cursor: zoom-out;
  position: relative;
  z-index: 9999;
}

/* Pagination masquée si tu veux */
.swiper-pagination {
  display: none !important;
}

/* Flèches navigation */
.swiper-button-next,
.swiper-button-prev {
  width: 15px !important;
  height: 15px !important;
  color: #fff !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 12px !important;
}

/* ===============================
   TITRE PHOTO
=============================== */
.photo-title {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  font-style: italic;
  color: #ccc;
}

/* ===============================
   BOUTON RETOUR
=============================== */
#back {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  z-index: 9999;
}

/* ===============================
   BOUTON PLEIN ÉCRAN
=============================== */
.fullscreen-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 50;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 8px 12px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.fullscreen-btn:hover {
  background: rgba(255,255,255,0.2);
}

/* ===============================
   ACCUEIL
=============================== */
#homepage-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

#homepage-title h1 {
  color: #fff;
  font-size: 22px;
  margin: 0;
  font-weight: bold;
}

.homepage-footer {
  text-align: center;
  margin-top: 20px;
}
