/* ============================================================================
   Les sections portées par la photographie.
   HTML : app/Views/partials/vitrine_terrain.php
   ========================================================================== */

/* ---- Le problème : un parc en fin de journée ----------------------------- */

.prb--photo {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--lf-indigo-nuit, #14103c);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.prb__fond { position: absolute; inset: 0; border-radius: 0; }

/* Voile lourd : le texte est très grand et doit rester lisible sur une photo
   chargée — des véhicules, du sable, des silhouettes. */
.prb__fond::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(20, 16, 60, .96) 0%, rgba(20, 16, 60, .86) 45%, rgba(20, 16, 60, .55) 100%);
}

.prb__in { position: relative; z-index: 1; }

.prb__titre {
  margin: 0 0 1.6rem;
  max-width: 20ch;
  font-family: var(--lf-titre, inherit);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.prb__titre span { color: var(--lf-magenta-vif, #c41f6d); }

/* Les sources éparpillées. Elles flottent, légèrement décalées — l'image de
   l'information qui existe partout et nulle part. */
.prb__sources {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  max-width: 32rem;
}

.prb__sources li {
  padding: .4rem .9rem;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, .3);
  font-size: .84rem;
  color: rgba(255, 255, 255, .7);
}

.prb__sources li:nth-child(odd)  { transform: translateY(-4px); }
.prb__sources li:nth-child(3n)   { transform: translateY(5px); }

.prb__chute {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: #fff;
  max-width: 30ch;
}

/* ---- Abidjan ------------------------------------------------------------- */

.abj {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--lf-indigo-nuit, #14103c);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.abj__fond { position: absolute; inset: 0; border-radius: 0; }

/* Voile plus léger : la photo de nuit est déjà sombre à gauche, et c'est
   elle qu'on veut montrer. */
.abj__fond::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(20, 16, 60, .92) 0%, rgba(20, 16, 60, .70) 45%, rgba(20, 16, 60, .25) 100%);
}

.abj__in { position: relative; z-index: 1; }

.abj__titre {
  margin: 0 0 2rem;
  font-family: var(--lf-titre, inherit);
  font-size: clamp(1.9rem, 4.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.028em;
}
.abj__titre span { color: var(--lf-magenta-vif, #c41f6d); }

.abj__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1.2rem;
  max-width: 58rem;
}

.abj__points li {
  padding-left: .8rem;
  border-left: 2px solid var(--lf-magenta-vif, #c41f6d);
}

.abj__points strong { display: block; font-size: 1rem; font-weight: 700; }
.abj__points span   { display: block; margin-top: .15rem; font-size: .82rem; color: rgba(255, 255, 255, .7); }

/* ---- Location premium ---------------------------------------------------- */

.lpr { padding: clamp(3.5rem, 8vw, 6rem) 0; }

.lpr__in {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 900px) {
  .lpr__in { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
}

.lpr__texte .btn { margin-top: 1.4rem; }

.lpr__specs {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  font-size: .92rem;
  color: var(--lf-ardoise, #55516e);
}

.lpr__specs li { display: flex; align-items: baseline; gap: .6rem; }
.lpr__specs li::before {
  content: '';
  flex: 0 0 auto;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lf-magenta, #a5195b);
}

.lpr__photo { box-shadow: 0 26px 56px -30px rgb(23 21 41 / .7); }

@media (max-width: 899px) {
  .prb__fond::after,
  .abj__fond::after {
    background: linear-gradient(180deg,
      rgba(20, 16, 60, .90) 0%, rgba(20, 16, 60, .84) 55%, rgba(20, 16, 60, .95) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .prb__sources li { transform: none; }
}
