/* ============================================================
   TROUVER L'AMOUR · Styles dédiés · v90.6
   ------------------------------------------------------------
   S'appuie sur les tokens du design system (--ds-*). Palette
   spécifique : dominante rose/or chaud, pour distinguer
   visuellement la page « amour » des autres outils Premium
   (Trinité, etc.) tout en restant cohérente.
   ============================================================ */

:root {
  /* Palette amour — surcouche locale, hors design system global.
     Les hex sont confinés à cette page pour éviter de polluer le DS. */
  --tla-rose:        #E8A2B5;   /* rose poudré chaud */
  --tla-rose-bright: var(--ds-gold-bright, #E4C07E);   /* rose lumineux pour highlights */
  --tla-rose-deep: var(--ds-gold-deep, #8E6420);   /* rose profond pour bordures */
  --tla-gold-warm:   #E4C07E;   /* identique --ds-gold-bright pour cohérence */
  --tla-gold-rose:   #D9A87A;   /* or rosé, transition rose↔or */
}

/* ---------- HERO ---------- */
.tla-hero {
  padding: 5rem 0 4rem;
}
.tla-hero h1 {
  font-family: var(--serif, 'Fraunces', serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1.4rem;
  color: var(--ds-text-bright, var(--lx-ink, #F8F2DE));
}
.tla-hero h1 em {
  font-style: italic;
  color: var(--tla-rose-bright);
  font-weight: 400;
}
.tla-hero p.lead {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ds-text-mute, var(--lx-ink, #E8E0CC));
  max-width: 38em;
}
.tla-eyebrow {
  font-family: var(--mono, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--tla-rose-bright);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

/* ---------- FORMULAIRE ---------- */
.tla-form-section { padding: 3rem 0 4rem; }
.tla-form {
  background: linear-gradient(180deg,
    rgba(11, 16, 36, 0.65) 0%,
    rgba(40, 22, 32, 0.55) 100%);
  border: 1px solid rgba(232, 162, 181, 0.22);
  border-radius: 0;
  padding: 2rem 1.8rem;
  max-width: 560px;
  margin: 0 auto;
}
.tla-form .form-row { margin-bottom: 1.2rem; }
.tla-form label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tla-rose-bright);
  margin-bottom: 0.4rem;
}
.tla-form input[type="text"],
.tla-form input[type="date"],
.tla-form input[type="time"] {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0;
  border: 1px solid rgba(232, 162, 181, 0.32);
  background: var(--lx-surfa-7, rgba(11, 16, 36, 0.7));
  color: var(--ds-text-bright);
  font-family: var(--serif);
  font-size: 1rem;
}
.tla-form input:focus {
  outline: 2px solid var(--tla-rose);
  outline-offset: 2px;
}
.tla-form-submit { margin-top: 1.5rem; text-align: center; }

/* Bouton primary teinté rose pour cette page uniquement */
.tla-form-submit .btn-primary {
  background: linear-gradient(135deg,
    var(--tla-rose-deep) 0%,
    var(--tla-gold-rose) 100%);
  border-color: var(--tla-rose);
  color: #0B1024;
  font-weight: 600;
}
.tla-form-submit .btn-primary:hover {
  background: linear-gradient(135deg,
    var(--tla-rose) 0%,
    var(--tla-gold-warm) 100%);
}

/* ---------- RÉSULTATS — 3 CARTES EMPILÉES ---------- */
.tla-results { padding: 2rem 0 4rem; }
.tla-cards {
  display: grid;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.tla-card {
  background: linear-gradient(180deg,
    rgba(11, 16, 36, 0.92) 0%,
    rgba(40, 22, 32, 0.75) 100%);
  border: 1px solid rgba(232, 162, 181, 0.22);
  border-radius: 0;
  padding: 2.2rem 1.8rem;
  position: relative;
}
.tla-card[data-body="love"]    { border-left: 3px solid var(--tla-rose-bright); }
.tla-card[data-body="partner"] { border-left: 3px solid var(--tla-gold-rose); }
.tla-card[data-body="lesson"]  { border-left: 3px solid var(--tla-gold-warm); }

.tla-card-eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tla-rose-bright);
  margin: 0 0 0.6rem;
}
.tla-card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 0.3rem;
  color: var(--ds-text-bright);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tla-card-title .symbol {
  font-size: 1.6rem;
  color: var(--tla-rose-bright);
}
.tla-card-title em {
  font-style: italic;
  color: var(--tla-rose-bright);
  font-weight: 400;
}
.tla-card-meta {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ds-text-mute);
  opacity: 0.78;
  margin: 0 0 1.5rem;
}
.tla-card-body {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ds-text-bright);
  margin: 0;
}
.tla-card-body em {
  font-style: italic;
  color: var(--tla-rose-bright);
}
.tla-card-extra {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(232, 162, 181, 0.18);
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ds-text-mute);
  font-style: italic;
}

/* ---------- ACTIONS (boutons partage / PDF / cross-sell) ---------- */
.tla-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- CROSS-SELL : Potentiel amoureux ---------- */
.tla-crosssell {
  margin-top: 3rem;
  padding: 2rem 1.8rem;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232, 162, 181, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(11, 16, 36, 0.7) 0%, rgba(40, 22, 32, 0.6) 100%);
  border: 1px solid rgba(232, 162, 181, 0.18);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.tla-crosssell-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tla-rose-bright);
  margin: 0 0 0.8rem;
}
.tla-crosssell-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--ds-text-bright);
  margin: 0 0 0.6rem;
}
.tla-crosssell-title em {
  font-style: italic;
  color: var(--tla-rose-bright);
}
.tla-crosssell-text {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ds-text-mute);
  margin: 0 auto 1.4rem;
  max-width: 30em;
}
.tla-crosssell-cta {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--tla-rose);
  color: var(--tla-rose-bright);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.tla-crosssell-cta:hover {
  background: var(--tla-rose);
  color: #0B1024;
}

/* ---------- CARTE SIGNATURE PARTAGEABLE 1080×1350 ---------- */
.tla-share-card {
  width: 1080px;
  height: 1350px;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(244, 196, 210, 0.20), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(228, 192, 126, 0.12), transparent 55%),
    linear-gradient(180deg, #1A0F1C 0%, #2E1A2A 50%, #1A0F1C 100%);
  position: absolute;
  left: -9999px;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 70px;
  font-family: var(--serif, 'Fraunces', serif);
  color: var(--lx-ink, #F8F2DE);
  box-sizing: border-box;
}
.tla-share-eyebrow {
  font-family: var(--mono, monospace);
  font-size: 26px;
  letter-spacing: 8px;
  color: var(--lx-roseink, #F4C4D2);
  text-transform: uppercase;
  margin: 0 0 70px;
}
.tla-share-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 64px;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 70px;
  max-width: 900px;
}
.tla-share-title em {
  font-style: italic;
  color: var(--lx-roseink, #F4C4D2);
  font-weight: 400;
}
.tla-share-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  width: 100%;
  max-width: 820px;
}
.tla-share-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--lx-roseink-28, rgba(244, 196, 210, 0.28));
  padding-bottom: 32px;
}
.tla-share-row:last-child { border-bottom: none; }
.tla-share-label {
  font-family: var(--mono);
  font-size: 22px;
  letter-spacing: 5px;
  color: var(--lx-roseink, #F4C4D2);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.tla-share-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}
.tla-share-value .symbol {
  margin-right: 18px;
  color: var(--r-gold);
}
.tla-share-footer {
  margin-top: 75px;
  font-family: var(--mono);
  font-size: 22px;
  letter-spacing: 6px;
  color: var(--r-gold);
  text-transform: uppercase;
  text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 640px) {
  .tla-hero { padding: 3.5rem 0 2.5rem; }
  .tla-card { padding: 1.8rem 1.3rem; }
  .tla-card-title { font-size: 1.6rem; }
  .tla-card-body { font-size: 1rem; }
  .tla-actions { flex-direction: column; align-items: stretch; }
  .tla-actions .btn { width: 100%; }
}
