/* =========================================================
   FlowMeUp — Page Exemples
   Style sobre, haut de gamme, inspiré.
========================================================= */

/* --- HERO --- */
.examples-hero {
  text-align: center;
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #faf8f7 0%, #fff 100%);
}
.examples-hero h1 {
  font-family: "Playfair Display", serif;
  color: var(--prune);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 10px 0 14px;
}
.examples-hero .lead {
  color: #5a5460;
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
  opacity: 0.9;
}
.handline {
  font-family: "Allura", cursive;
  font-size: 28px;
  color: #a66f8a;
  opacity: 0.92;
  margin: 0;
}

/* --- SECTIONS --- */
.examples-group {
  padding: 70px 0;
}
.soft-bg {
  background: linear-gradient(180deg, #fbfafc 0%, #ffffff 100%);
}
.group-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--prune);
  margin-bottom: 34px;
  border-left: 4px solid #d78e7a;
  padding-left: 12px;
}

/* --- CARTES --- */
.examples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.example-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.example-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.example-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.example-content {
  padding: 28px 30px;
}
.example-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  color: var(--prune);
  margin: 0 0 10px;
}
.example-content h3 span {
  font-weight: 800;
}
.example-content .desc {
  color: #4a4452;
  margin-bottom: 18px;
  line-height: 1.6;
}
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  color: #4a4452;
}
.features li {
  margin: 6px 0;
  position: relative;
  padding-left: 22px;
}
.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #8bbfa8;
  font-weight: 700;
}
.example-card.small img {
  height: 220px;
}

/* --- CTA --- */
/* CTA global sur la page Exemples */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

/* Bouton principal — plus doux, plus pro */
.btn-primary {
  background: linear-gradient(90deg, #d78e7a, #a66f8a);
  color: #fff;
  box-shadow: 0 8px 18px rgba(166, 111, 138, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(90deg, #c86f58, #8b5a7b);
  box-shadow: 0 12px 22px rgba(166, 111, 138, 0.32);
  transform: translateY(-2px);
}

/* Bouton outline — sobre et équilibré */
.btn-outline {
  border: 1.5px solid rgba(166, 111, 138, 0.3);
  color: #7f4a78;
  background: rgba(255, 255, 255, 0.8);
}
.btn-outline:hover {
  background: linear-gradient(
    90deg,
    rgba(166, 111, 138, 0.08),
    rgba(215, 142, 122, 0.12)
  );
  border-color: rgba(166, 111, 138, 0.45);
  transform: translateY(-1px);
}

.model-card img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
  object-fit: cover;
}
.model-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 6px;
}
.btn-card {
  display: inline-block;
  margin-top: 12px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  transition: 0.25s;
}
.btn-card:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

/* --- Mise en page harmonisée des modèles --- */
.example-block {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.example-grid.reverse {
  direction: rtl;
}
.example-grid.reverse .example-text {
  direction: ltr;
}

.example-img {
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  width: 100%;
  height: auto;
}

.example-text {
  text-align: left;
}

.example-title {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.example-title span {
  color: var(--prune);
  font-weight: 800;
}

.example-desc {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 16px;
}

.example-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  color: var(--text);
}
.example-list li {
  margin-bottom: 6px;
  font-size: 15px;
}
/* Délimitation visuelle subtile entre les modèles */
.example-block {
  padding: 70px 0;
}

.example-block .container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  padding: 50px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.example-block .container:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

/* Alternance d’arrière-plan pour mieux rythmer la page */
.example-block:nth-of-type(odd) {
  background: #fffdfb; /* très léger ton crème */
}

.example-block:nth-of-type(even) {
  background: linear-gradient(180deg, #faf6f9 0%, #ffffff 100%);
}

/* Ajustement mobile */
@media (max-width: 900px) {
  .example-block .container {
    padding: 30px 24px;
  }
}

/* --- Boutons par modèle --- */
.btn-harmonie {
  background: linear-gradient(90deg, #a26a85, #d19ab0);
}
.btn-elan {
  background: linear-gradient(90deg, #4c6b91, #7a9bc0);
}
.btn-epicea {
  background: linear-gradient(90deg, #b86b4b, #e7b298);
}

.btn-harmonie,
.btn-elan,
.btn-epicea {
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.btn-harmonie:hover,
.btn-elan:hover,
.btn-epicea:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .example-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .example-text {
    text-align: center;
  }
  .example-grid.reverse {
    direction: ltr;
  }
}
/* Alternance de fond pour mieux délimiter les modèles */
.example-block:nth-of-type(odd) {
  background: #fff;
}

.example-block:nth-of-type(even) {
  background: #faf6f9; /* lavande douce tirant vers le beige */
}

/* Option si tu veux un effet encore plus subtil (dégradé léger) */
.example-block:nth-of-type(even) {
  background: linear-gradient(180deg, #faf6f9 0%, #ffffff 100%);
}
