/**
 * Block carte homepage - Mobile First
 * Structure: Mobile par défaut → Tablet (750px+) → Desktop (1200px+) → Large (1600px+)
 */

/* ==========================================================================
   BASE STYLES (Mobile par défaut)
   ========================================================================== */

.village-block {
  position: relative;
  padding-bottom: 10%;
  background: var(--color-primary--xclear);
}

.village-block__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.village-block__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 200px;
}

.village-block__overlay {
  position: relative;
  z-index: 1;
  max-width: 1530px;
  margin: 0 auto;
}

.village-block__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
  transform: translateY(3vh);
}

.village-block__left {
  background-color: #DFEEE7;
  padding: 1.5rem 2rem;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  width: fit-content;
}

.village-list,
.interactive-map__pois {
  display: none;
}

/* Mobile - liens désactivés par défaut */
.village-item a {
  pointer-events: none;
  cursor: default;
}

/* ==========================================================================
   CTA BUTTON
   ========================================================================== */

.village-block__cta {
  text-align: center;
}

.village-block__cta a {
  background-color: var(--color-tertiary--dark);
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.village-block__cta a:hover {
  background-color: #993F11;
}

/* ==========================================================================
   TABLET - 750px+
   ========================================================================== */

@media (min-width: 750px) {
  /* Tablet - liens toujours désactivés */
  .village-item a {
    pointer-events: none;
    cursor: default;
  }

  /* Layout tablet */
  .village-block {
    padding-bottom: unset;
    background: linear-gradient(to bottom,
      var(--color-primary--xclear) 0%,
      var(--color-primary--xclear) 28%,
      var(--color-primary) 28%,
      var(--color-primary) 100%
    );
  }

  .village-block__background {
    bottom: unset;
  }

  .village-block__inner {
    flex-direction: row;
  }
}

/* ==========================================================================
   DESKTOP - 1200px+
   ========================================================================== */

@media (min-width: 1200px) {
  .village-block {
    padding-bottom: 2rem;
  }

  .village-block__inner {
    align-items: unset;
    transform: translateY(4vh);
    gap: 1rem;
    padding-bottom: 2rem;
  }

  .village-block__left {
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    height: unset;
    position: relative;
    z-index: 1000;
  }

  .village-block__background img {
    border-top-left-radius: 400px;
  }

  /* Desktop - ACTIVER les liens */
  .village-item a {
    pointer-events: none;
    cursor: pointer;
  }

  .village-anchor-link,
  .poi-anchor-link {
    pointer-events: auto;
    cursor: pointer;
  }

  /* Liste villages */
  .village-list,
  .interactive-map__pois {
    display: block;
  }

  .village-list__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }

  .village-item {
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #becbc5;
    padding: 6px;
    line-height: 200%;
    font-size: 0.875rem;
    position: relative;
    z-index: 1001; /* Au-dessus de tout */
  }

  .village-list__items .village-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Carte interactive */
  .village-block__map-placeholder {
    position: relative;
    width: 100%;
  }

  .village-block__map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
  }

  .interactive-map__pois {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Les POI ne bloquent pas les clics */
  }

  /* Points d'intérêt */
  .village-block .poi {
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('../../images/carte-homepage/icon-pin.svg') no-repeat center;
    background-size: contain;
    border-radius: 50%;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: default;
    pointer-events: none; /* Ne bloque pas les clics */
  }

  .village-block .poi.active {
    opacity: 1;
    transform: scale(1.2);
  }

  .village-block .poi span {
    position: absolute;
    top: -30px;
    left: 50%;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 2px 6px;
    font-size: 0.875rem;
    border-radius: 3px;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  /* Positions POI */
  .village-block .poi[data-id="angles"] { bottom: 20%; left: 13%; }
  .village-block .poi[data-id="barre"] { top: 15%; left: 51%; }
  .village-block .poi[data-id="berlats"] { top: 30%; left: 10%; }
  .village-block .poi[data-id="cambon-et-salvergues"] { bottom: 230px; left: 435px; }
  .village-block .poi[data-id="castanet-le-haut"] { top: 190px; left: 500px; }
  .village-block .poi[data-id="esperausses"] { top: 150px; left: 28px; }
  .village-block .poi[data-id="fraisse-sur-agout"] { top: 320px; left: 320px; }
  .village-block .poi[data-id="gijounet"] { top: 140px; left: 115px; }
  .village-block .poi[data-id="la-salvetat-sur-agout"] { top: 300px; left: 200px; }
  .village-block .poi[data-id="lacapelle-escroux"] { top: 60px; left: 155px; }
  .village-block .poi[data-id="lacaune-les-bains"] { top: 165px; left: 200px; }
  .village-block .poi[data-id="lamontelarie"] { top: 280px; left: 115px; }
  .village-block .poi[data-id="le-soulie"] { top: 400px; left: 200px; }
  .village-block .poi[data-id="moulin-mage"] { top: 115px; left: 300px; }
  .village-block .poi[data-id="murat-sur-vebre"] { top: 170px; left: 400px; }
  .village-block .poi[data-id="nages"] { top: 225px; left: 290px; }
  .village-block .poi[data-id="rosis"] { top: 260px; left: 540px; }
  .village-block .poi[data-id="senaux"] { top: 47px; left: 123px; }
  .village-block .poi[data-id="st-salvi-de-carcaves"] { top: 0px; left: 95px; }
  .village-block .poi[data-id="viane"] { top: 65px; left: 85px; }
}

/* ==========================================================================
   LARGE DESKTOP - 1600px+
   ========================================================================== */

@media (min-width: 1600px) {
  .village-block__inner {
    gap: 6rem;
    padding: 0;
  }

  .village-block__left {
    padding: 2rem 3rem;
  }

  .village-item {
    font-size: 1rem;
  }
}
