/* ============================================================
   Fully's Lake — Page « Les postes »
   (réutilise .page-hero / .sec / .split de le-lac.css)
   ============================================================ */

/* ---------- INTRO : confort des postes ---------- */
.postes-intro { padding: 80px 0 50px; }
.confort-box {
  max-width: 1214px; margin: 0 auto;
  border: 2px solid var(--sky-500); background: rgba(14,165,233,.07);
  border-radius: 24px; padding: 44px 56px;
}
.intro-title {
  text-align: center; font-family: var(--font-alt);
  font-size: 22px; font-weight: 700; color: var(--ink-800);
  max-width: 1066px; margin: 0 auto 34px;
}
.confort-list { display: flex; flex-direction: column; gap: 22px; max-width: 860px; margin: 0 auto; }
.confort-list li { list-style: none; display: flex; gap: 20px; align-items: center; }
.confort-list .ci {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: var(--lake); display: flex; align-items: center; justify-content: center;
}
.confort-list .ci svg { width: 18px; height: 18px; fill: #fff; }
.confort-list p { font-family: var(--font-alt); font-size: 18px; line-height: 29px; color: var(--ink-800); }

/* ---------- MAP SECTION ---------- */
.map-sec { background: linear-gradient(180deg, #bae6fd 0%, #e0f2fe 100%); padding: 72px 0 96px; }
.map-sec h2 { font-family: var(--font-alt); font-size: 48px; font-weight: 700; color: var(--ink); text-align: center; }
.map-sec .map-sub { text-align: center; font-size: 18px; color: var(--gray-600); max-width: 760px; margin: 18px auto 44px; line-height: 28px; }
.map-card {
  max-width: 1216px; margin: 0 auto;
  background: #fff; border-radius: 24px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.25);
  padding: 24px;
}
.map-stage {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 1150 / 647; cursor: crosshair;
}
.map-stage img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Marqueurs carte : anneau cliquable centré sur le picto pêcheur incrusté dans l'image */
.map-hot {
  position: absolute; width: 54px; height: 54px; transform: translate(-50%,-50%);
  border-radius: 9999px;
  border: 2.5px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.10);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(250,204,21,.6);
  animation: hotPulse 2.6s ease-out infinite;
  transition: background .2s, transform .2s;
}
.map-hot:hover, .map-hot.active {
  background: rgba(255,255,255,.25);
  transform: translate(-50%,-50%) scale(1.12);
}
@keyframes hotPulse { 0%{box-shadow:0 0 0 0 rgba(250,204,21,.5)} 70%{box-shadow:0 0 0 14px rgba(250,204,21,0)} 100%{box-shadow:0 0 0 0 rgba(250,204,21,0)} }
.map-fish {
  position: absolute; width: 46px; height: 46px; transform: translate(-50%,-50%);
  pointer-events: none; opacity: 0; transition: opacity .25s; z-index: 5;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.35));
}
.map-stage:hover .map-fish { opacity: 1; }
.map-hint {
  margin-top: 18px; text-align: center; font-size: 14px; color: var(--gray-600);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.map-hint svg { width: 16px; height: 16px; fill: var(--lake); }

/* ---------- INFOS PAR POSTE ---------- */
.infos-sec { padding: 30px 0 100px; }
.poste-tabs {
  max-width: 1216px; margin: 0 auto 28px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.poste-tab {
  width: 54px; height: 54px; border-radius: 14px;
  border: 2px solid var(--gray-100); background: #fff;
  font-size: 20px; font-weight: 700; color: var(--gray-600);
  transition: all .2s;
}
.poste-tab:hover { border-color: var(--lake); color: var(--lake); }
.poste-tab.active { background: var(--lake); border-color: var(--lake); color: #fff; box-shadow: 0 8px 18px -6px rgba(25,87,115,.6); }

.poste-card {
  max-width: 1216px; margin: 0 auto;
  background: #fff; border-radius: 24px; overflow: hidden;
  border: 2px solid var(--gray-100);
  box-shadow: 0 30px 66px -30px rgba(0,0,0,.25);
}
.poste-banner { position: relative; height: 275px; }
.poste-banner img { width: 100%; height: 100%; object-fit: cover; }
.poste-banner::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(0,0,0,.6), rgba(0,0,0,0) 60%); }
.poste-banner .pb-label { position: absolute; left: 40px; bottom: 26px; z-index: 1; color: #fff; }
.poste-banner .pb-label .pn { font-size: 34px; font-weight: 800; line-height: 1; }
.poste-banner .pb-label .ps { font-size: 16px; font-weight: 500; margin-top: 8px; opacity: .92; }
.poste-body { padding: 32px 40px 40px; }
.poste-desc { font-size: 16px; line-height: 24px; color: var(--ink); margin-bottom: 24px; }
.poste-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.stat-box { border-radius: 16px; padding: 20px 26px; }
.stat-box.lake { background: rgba(2,132,199,.1); box-shadow: inset 0 0 0 2px var(--lake); }
.stat-box.green { background: rgba(34,197,94,.1); box-shadow: inset 0 0 0 2px var(--green); }
.stat-box .sb-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.stat-box .sb-ic { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex: none; }
.stat-box.lake .sb-ic { background: var(--lake); }
.stat-box.green .sb-ic { background: var(--green); }
.stat-box .sb-ic svg { width: 24px; height: 24px; fill: #fff; }
.stat-box .sb-head h4 { font-size: 20px; font-weight: 700; color: var(--ink); }
.stat-box .sb-val { font-size: 30px; font-weight: 700; color: var(--ink); }
.stat-box.green .sb-val { font-size: 18px; font-weight: 400; color: var(--ink-800); }
.conseil {
  border-radius: 16px; background: #faf3e2; box-shadow: inset 0 0 0 2px var(--gold);
  padding: 22px 32px;
}
.conseil .cs-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.conseil .cs-head svg { width: 18px; height: 24px; fill: rgb(202,138,4); flex: none; }
.conseil .cs-head h4 { font-size: 24px; font-weight: 700; color: var(--ink); }
.conseil p { font-size: 16px; line-height: 24px; color: var(--ink-800); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1040px) {
  .confort-box { padding: 32px 24px; }
  .map-sec h2 { font-size: 34px; }
  .poste-stats { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .postes-intro { padding: 56px 0 36px; }
  .confort-box { padding: 26px 20px; border-radius: 18px; }
  .intro-title { font-size: 18px; margin-bottom: 26px; }
  .confort-list li { gap: 14px; }
  .confort-list p { font-size: 16px; line-height: 25px; }
  .map-sec { padding: 52px 0 64px; }
  .map-sec h2 { font-size: 26px; }
  .map-sec .map-sub { font-size: 15px; margin-bottom: 28px; }
  .map-card { padding: 12px; border-radius: 18px; }
  .map-hot { width: 40px; height: 40px; border-width: 2px; }
  .infos-sec { padding: 16px 0 64px; }
  .poste-tabs { gap: 9px; }
  .poste-tab { width: 46px; height: 46px; border-radius: 12px; font-size: 17px; }
  .poste-banner { height: 200px; }
  .poste-banner .pb-label { left: 22px; bottom: 18px; }
  .poste-banner .pb-label .pn { font-size: 26px; }
  .poste-body { padding: 24px 20px 28px; }
  .poste-stats { gap: 16px; margin-bottom: 18px; }
  .stat-box { padding: 18px 20px; }
  .stat-box .sb-val { font-size: 24px; }
  .conseil { padding: 20px 22px; }
  .conseil .cs-head h4 { font-size: 19px; }
}

