/*****
 * Fichier : custom-style-zon.css
 * Description : Styles pour la page zones d'interventions.
 *
 * Couleurs :
 * 
 *	#d9d4b7 : Couleur Principale boutons RGB - 217,212,183 (Couleur beige principale du thème) -- color000
 *	#d9d4b7 : Texte Couleur Principale RGB - 217,212,183 (Couleur beige principale du thème) --color016
 *	#efeae6 : Couleur secondaire RGB - 239,234,230 (gris rose) --color007
 *	#ffffff : Fond d'écran RGB - 255,255,255 (Blanc) --color001 
 *	#ffffff : Menu RGB - 255,255,255 (Blanc) --color002 
 *	#5f6368 : Texte Menu RGB - 255,255,255 (Gris clair) --color003
 *	#f5f5f7 : Pied de Page RGB - 245,245,247 (Gris trés clair) --color013
 *	#000000 : Texte indication page RGB - 0,0,0 (Noir) --color008
 *	#000000 : Texte Pied de Page - 0,0,0 (Noir) --color015
 *	#000000 : Ligne de séparation - 0,0,0 (Noir) --color005
 *  #000000 : Entourage Shadow - rgba(0,0,0,0.1) --color011
 *	#e0e0e0 : Desected Item RGB - 224,224,224 (Gris clair)
 *
 * 
 *
 * Auteur : Forme Carrée
 * Dernière modification : 2026-02-15
 *****/


 /********************************************************/
 /*                    Carte interactive                 */
 /********************************************************/

.zone-carte-interactive {
    position: relative;
    font-family: 'Google Sans', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
}

.zone-map-frame {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e3e8ef;
    background: #ffffff; /* même ton clair que la carte */
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zone-map-canvas {
    width: 100%;
    height: 100%;
    transform-origin: center center;
    transition: transform 0.12s ease-out;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zone-map-toolbar {
    position: absolute;
    right: 12px;
    top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.zone-map-toolbar button {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid #d8dfe7;
    background: #ffffff;
    color: #0f253a;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.zone-map-toolbar button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.zone-map-toolbar button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.zone-map-legend {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.4;
}


/* Colonnes pour les liens SEO */

.zones-cols {
  columns: 4;
  -webkit-columns: 4;
  -moz-columns: 4;
  column-gap: 2rem;
  padding-left: 0;
  list-style: none;
}

.zones-cols li {
  break-inside: avoid;
  margin-bottom: 0.4rem;
}



/********************************************************/
/*           Responsivité pour les petits ecrans        */
/********************************************************/


@media (max-width: 570px) {
  .zones-cols {
    columns: 2;
  }
}

@media (max-width: 400px) {
  .zones-cols {
    columns: 1;
  }
}


