/**
 * Carte chantiers AJ Power — styles markers/cluster/popup
 * Design : bleu #0F2B4C + jaune #FCB813
 */

/* Marker individuel : cercle bleu avec count en jaune */
.ajp-marker-wrap { background: transparent; border: none; }
.ajp-marker {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0F2B4C, #1E4A7E);
  color: #FCB813;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(15,43,76,.45);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 900; font-size: 13px;
  transition: transform .15s ease;
}
.ajp-marker:hover { transform: scale(1.1); }

/* Cluster : halo jaune AJ Power autour d'un cercle bleu */
.ajp-cluster-wrap { background: transparent; border: none; }
.ajp-cluster {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0F2B4C, #1E4A7E);
  color: #FCB813;
  border-radius: 50%;
  border: 4px solid rgba(252,184,19,.35);
  box-shadow: 0 8px 24px rgba(252,184,19,.3), 0 0 0 4px rgba(252,184,19,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(13px, 1.4vw, 17px);
}

/* Override Leaflet cluster defaults */
.marker-cluster-small, .marker-cluster-medium, .marker-cluster-large {
  background: transparent !important;
}
.marker-cluster-small div, .marker-cluster-medium div, .marker-cluster-large div {
  background: transparent !important;
  border: none !important;
}

/* Popup AJ Power */
.leaflet-popup-content-wrapper {
  border-radius: 14px;
  border: 2px solid #FCB813;
  box-shadow: 0 14px 40px rgba(15,43,76,.25);
  padding: 4px;
}
.leaflet-popup-tip { background: #FCB813; }
.leaflet-popup-content { margin: 14px 18px; font-family: 'Inter', sans-serif; }

.ajp-popup h3 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #0F2B4C;
  margin: 2px 0 4px;
  letter-spacing: -.3px;
}
.ajp-pop-cp {
  display: inline-block;
  background: #FCB813;
  color: #0F2B4C;
  font-weight: 700;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.ajp-pop-count {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: #0F2B4C;
  line-height: 1;
  margin: 8px 0 6px;
}
.ajp-pop-count small {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #5A6B7E;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 4px;
}
.ajp-pop-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 11.5px;
  color: #5A6B7E;
  line-height: 1.6;
  max-height: 120px;
  overflow-y: auto;
}
.ajp-pop-list li::before {
  content: "• ";
  color: #FCB813;
  font-weight: 900;
}
.ajp-pop-list .ajp-more { font-style: italic; opacity: .7; }

/* Container carte */
#chantiers-map {
  background: #f5f5f5;
}
