/* =========================================================
   Nouvelles scènes de la page d'accueil (6, 7, 8, 9)
   Fond fourni par l'utilisateur + texte/boutons superposés,
   sur le même principe que les scènes 1 à 5.
   ========================================================= */

:root {
  --gv-pink: #f13e7c;
  --gv-navy: #101b35;
}

/* ---------- Scène 6 — Magazine souvenir ---------- */

.scene-6 {
  position: relative;
}
.scene-6-picture {
  display: block;
}
.scene-6-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Bloc texte superposé (zone gauche laissée libre dans l'image) */
.scene-6-copy {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: min(27%, 430px);
}
.scene-6-title {
  margin: 0 0 clamp(8px, 1.5vw, 22px);
  font-size: clamp(0.95rem, 2vw, 1.9rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--gv-navy);
}
.scene-6-title span {
  color: var(--gv-pink);
}
.scene-6-bullets {
  list-style: none;
  margin: 0 0 clamp(12px, 1.6vw, 26px);
  padding: 0;
  display: grid;
  gap: clamp(5px, 0.8vw, 12px);
}
.scene-6-bullets li {
  position: relative;
  padding-left: 1.6em;
  color: #33405c;
  font-size: clamp(0.66rem, 1vw, 0.98rem);
  line-height: 1.3;
}
.scene-6-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 2px;
  background: var(--gv-pink);
  transform: rotate(45deg);
}
.scene-6-cta {
  font-size: clamp(0.72rem, 1.05vw, 0.95rem);
}

/* --- Téléphones au centre (dans l'espace libre entre texte et magazine) --- */
.scene-6-phones {
  position: absolute;
  top: 50%;
  left: 33%;
  transform: translateY(-50%);
  width: 25%;
  display: flex;
  gap: 0.9vw;
  align-items: center;
  justify-content: center;
}
.scene-6-phone {
  flex: 1 1 0;
  min-width: 0;
  background: linear-gradient(180deg, #ffffff, #fff2f6);
  border: 1px solid #f4dbe4;
  border-radius: 1.2vw;
  padding: 0.9vw 0.6vw 1vw;
  box-shadow: 0 1.4vw 2.8vw -1.1vw rgba(120, 25, 60, 0.35);
}
.scene-6-phone-title {
  margin: 0 0 0.7vw;
  font-size: 0.72vw;
  font-weight: 700;
  text-align: center;
  color: var(--gv-navy);
}
.scene-6-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.28vw;
  margin-bottom: 0.8vw;
}
.scene-6-tile {
  aspect-ratio: 1;
  border-radius: 0.35vw;
}
.scene-6-tile.t1 { background: linear-gradient(135deg, #ffd1a1, #ff9e7a); }
.scene-6-tile.t2 { background: linear-gradient(135deg, #a7c7ff, #7a9bff); }
.scene-6-tile.t3 { background: linear-gradient(135deg, #ffc0d8, #ff8fb3); }
.scene-6-tile.t4 { background: linear-gradient(135deg, #b8e6c0, #7fcf95); }
.scene-6-tile.t5 { background: linear-gradient(135deg, #d8c0ff, #a98fff); }
.scene-6-tile.t6 { background: linear-gradient(135deg, #ffe6a1, #ffcf6b); }

.scene-6-check {
  list-style: none;
  margin: 0 0 0.8vw;
  padding: 0;
  display: grid;
  gap: 0.32vw;
}
.scene-6-check li {
  display: flex;
  align-items: center;
  gap: 0.4vw;
  padding: 0.4vw 0.45vw;
  border-radius: 0.6vw;
  background: #fff;
  border: 1px solid #f1e3e8;
  font-size: 0.6vw;
  color: var(--gv-navy);
}
.scene-6-check .ic {
  flex: none;
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background: #2fbf71;
  color: #fff;
  font-size: 0.55vw;
  display: grid;
  place-items: center;
}
.scene-6-check li.fav .ic {
  background: var(--gv-pink);
}
.scene-6-check .lbl {
  flex: 1;
}
.scene-6-check .chv {
  color: #c9cdd8;
  font-size: 0.85vw;
}
.scene-6-mini-btn {
  display: block;
  text-align: center;
  background: linear-gradient(180deg, #ff5a93, #f13e7c);
  color: #fff;
  font-weight: 700;
  font-size: 0.62vw;
  padding: 0.6vw;
  border-radius: 999px;
}

/* Sur écran étroit : les téléphones sont masqués, l'image passe
   au-dessus et le texte en dessous (fond lavande assorti). */
@media (max-width: 992px) {
  .scene-6-phones {
    display: none;
  }
}
/* Mobile : fond portrait dédié (magazine en bas), texte superposé en haut. */
@media (max-width: 760px) {
  .scene-6-copy {
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
    width: 86%;
    text-align: center;
  }
  .scene-6-title {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }
  .scene-6-bullets {
    display: inline-grid;
    text-align: left;
    gap: clamp(8px, 2vw, 14px);
  }
  .scene-6-bullets li {
    font-size: clamp(0.9rem, 3.6vw, 1.05rem);
  }
  .scene-6-cta {
    font-size: 1rem;
  }
}

/* ---------- Flèches de défilement (ajouts) ---------- */

/* Défilement fluide au clic sur les flèches (respecte « mouvement réduit »). */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Réaffiche la flèche scène 4 → 5 sur ordinateur
   (elle était volontairement masquée au-dessus de 1181px dans style.css ;
   scenes.css étant chargée après, cette règle l'emporte). */
@media (min-width: 1181px) {
  .scene-next--from-four {
    display: grid;
  }
}

/* Nouvelle flèche scène 5 → 6. */
.scene-next--from-five {
  z-index: 20;
}
