:root {
  --rouge: #f55246;
  --jaune: #ffae44;
  --vert: #03c5b2;
  --bleu: #0e2c69;
}

/* ============================================================
   CARTE PLEIN ÉCRAN
   ============================================================ */

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#map {
  width: 100%;
  height: 100%;
}


/* ============================================================
   POPUPS LEAFLET
   ============================================================ */

.popup-content {
  min-width: 220px;
  max-width: 320px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.popup-image {
  width: 100%;
  display: block;
  margin-bottom: 8px;
  object-fit: cover;
  border-radius: 4px;
}

.popup-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.popup-description {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.popup-info {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.popup-info a {
  color: inherit;
  text-decoration: underline;
}

.popup-audio-block {
  margin-bottom: 6px;
}

.popup-audio-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
  opacity: 0.7;
}

.popup-audio {
  width: 100%;
}


/* ============================================================
   ICÔNES POI NUMÉROTÉES (DIV ICON)
   ============================================================ */

.custom-div-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 30px;
  height: 40px;
}

.poi-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.poi-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.poi-number {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: #f5f5f5;
  color: var(--bleu, #1e90ff);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}


/* ============================================================
   BOUTON DE GÉOLOCALISATION (OPTIONNEL)
   ============================================================ */

.geo-locate-control a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  background: #ffffff;
  color: #000;
  cursor: pointer;
  font-size: 16px;
}

.geo-locate-control a:hover {
  background: #f0f0f0;
}


/* ============================================================
   PETITES AMÉLIORATIONS LEAFLET
   ============================================================ */

/* Empêche les images de popup de déborder */
.leaflet-popup-content {
  margin: 8px;
}

/* Popup un peu plus lisible sur mobile */
@media (max-width: 480px) {
  .popup-content {
    max-width: 260px;
  }
}
