/* FILE: assets/css/combinaisons-amour-index.css */
:root{
  --bgA:#140b18;
  --bgB:#0f0a14;
  --text:#fbf7fb;
  --muted:rgba(255,255,255,.75);
  --soft:rgba(255,255,255,.60);
  --stroke:rgba(255,255,255,.12);
  --stroke2:rgba(255,255,255,.18);
  --blush:#ff8fd6;
  --blush2:#ffd1ea;
  --radius:22px;
  --radius2:16px;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --max:1060px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  background:
    radial-gradient(980px 540px at 14% 10%, rgba(255,143,214,.22), transparent 60%),
    radial-gradient(820px 580px at 88% 18%, rgba(255,209,234,.16), transparent 62%),
    radial-gradient(900px 700px at 46% 92%, rgba(255,255,255,.06), transparent 66%),
    linear-gradient(180deg, var(--bgA), var(--bgB));
}

a{color:inherit}
a:hover{color:var(--blush2)}
img{display:block;max-width:100%;height:auto}

.wrap{
  max-width:var(--max);
  margin:auto;
  padding:18px 14px 86px;
}

.top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.crumbs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  color:var(--soft);
  font-size:13px;
}

.crumbs a{
  color:var(--soft);
  text-decoration:none;
}

.crumbs a:hover{color:var(--text)}

.header-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  text-decoration:none;
  border:1px solid var(--stroke);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--muted);
  backdrop-filter:blur(6px);
}

.pill:hover{
  background:rgba(255,255,255,.07);
  color:var(--text);
  border-color:var(--stroke2);
}

.hero{
  position:relative;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.12));
  box-shadow:var(--shadow);
  overflow:hidden;
  padding:18px;
  isolation:isolate;
}

.hero:before{
  content:"";
  position:absolute;
  top:-156px;
  right:-138px;
  width:500px;
  height:500px;
  background:
    radial-gradient(closest-side at 34% 33%, rgba(255,218,241,.38), rgba(255,143,214,.18) 58%, rgba(255,143,214,0) 82%),
    radial-gradient(closest-side at 66% 33%, rgba(255,218,241,.34), rgba(255,143,214,.16) 58%, rgba(255,143,214,0) 82%),
    radial-gradient(70% 62% at 50% 72%, rgba(217,132,255,.22), rgba(217,132,255,.10) 54%, rgba(217,132,255,0) 78%);
  transform:rotate(-9deg);
  filter:blur(16px);
  opacity:.9;
  pointer-events:none;
  z-index:0;
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:410px 1fr;
  gap:24px;
  align-items:center;
}

.hero-cards{
  position:relative;
  height:370px;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  padding-top:18px;
}

.hero-card{
  position:absolute;
  display:block;
  text-decoration:none;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 22px 55px rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
  transform-origin:center;
  pointer-events:auto;
  transition:transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, filter .45s ease;
  animation:heroCardFloat 5.8s ease-in-out infinite;
}

.hero-card img{
  display:block;
  width:220px;
  aspect-ratio:5 / 7;
  height:auto;
}

.hero-card.cardA{
  transform:rotate(-7deg) translateX(74px) translateY(26px);
  z-index:2;
  animation-delay:0s;
}

.hero-card.cardB{
  transform:rotate(9deg) translateX(-94px) translateY(-4px) scale(.98);
  z-index:1;
  opacity:.98;
  animation-delay:.55s;
}

.hero-cards:hover .hero-card{
  filter:saturate(1.05) brightness(1.04);
}

.hero-cards:hover .cardA{
  transform:rotate(-9deg) translateX(82px) translateY(18px);
  box-shadow:0 26px 62px rgba(0,0,0,.62);
}

.hero-cards:hover .cardB{
  transform:rotate(11deg) translateX(-102px) translateY(-10px) scale(.99);
  box-shadow:0 22px 54px rgba(0,0,0,.54);
}

@keyframes heroCardFloat{
  0%,100%{translate:0 0}
  50%{translate:0 -7px}
}

.hero-text h1{
  margin:0 0 6px;
  font-size:32px;
  letter-spacing:-.02em;
}

.hero-text p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  max-width:76ch;
  font-size:15px;
}

.hero-links{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.proof{
  margin:14px 4px 0;
  font-size:14px;
  line-height:1.8;
  color:var(--muted);
}

.after-hero{
  margin-top:14px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.12));
  box-shadow:0 14px 44px rgba(0,0,0,.45);
  padding:16px;
}

.howto{
  border:1px solid rgba(255,209,234,.20);
  background:linear-gradient(180deg, rgba(255,209,234,.10), rgba(0,0,0,.14));
  border-radius:var(--radius2);
  padding:14px;
}

.howto h2{
  margin:0 0 8px;
  font-size:16px;
  letter-spacing:-.01em;
  color:var(--blush2);
}

.howto p{
  margin:0;
  color:var(--muted);
  line-height:1.9;
  font-size:14px;
}

.howto p + p{margin-top:8px}

.quick{
  margin-top:12px;
  border-radius:var(--radius2);
  border:1px solid rgba(255,143,214,.40);
  background:
    radial-gradient(500px 240px at 16% 20%, rgba(255,143,214,.28), transparent 62%),
    radial-gradient(520px 260px at 86% 40%, rgba(255,209,234,.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.16));
  box-shadow:0 18px 55px rgba(0,0,0,.52);
  padding:14px;
}

.quick h3{
  margin:0 0 6px;
  font-size:15px;
  letter-spacing:-.01em;
  color:var(--text);
}

.quick p{
  margin:0;
  color:rgba(255,255,255,.92);
  line-height:1.85;
  font-size:14px;
}

.between{
  margin-top:18px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.14));
  box-shadow:0 16px 52px rgba(0,0,0,.48);
  padding:16px;
}

.hint{
  margin:12px 4px 0;
  color:var(--muted);
  line-height:1.8;
  font-size:14px;
  font-style:italic;
}

.duos-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  margin-top:18px;
  align-items:start;
}

.section{
  margin-top:0;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.14));
  box-shadow:var(--shadow);
  overflow:hidden;
  height:100%;
}

.section-head{
  padding:16px 16px 14px;
  border-bottom:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
}

.section-head-grid{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

.pair{
  display:flex;
  gap:10px;
  align-items:center;
}

.pair a{
  display:inline-flex;
  text-decoration:none;
  transition:transform .4s cubic-bezier(.22,1,.36,1), filter .35s ease;
  animation:duoCardFloat 6.5s ease-in-out infinite;
}

.pair a:nth-child(2){
  animation-delay:.6s;
}

.pair img{
  width:86px;
  aspect-ratio:5 / 7;
  height:auto;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.02);
  box-shadow:0 14px 34px rgba(0,0,0,.46);
}

.pair:hover a:first-child{
  transform:translateY(-4px) rotate(-2deg);
}

.pair:hover a:nth-child(2){
  transform:translateY(-6px) rotate(2deg);
}

@keyframes duoCardFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-4px)}
}

.section-meta{
  width:100%;
  text-align:center;
}

.section-meta h2{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:-.01em;
}

.section-meta .quick{
  margin:0 auto 10px;
  width:min(560px, 100%);
  padding:12px 12px;
  text-align:left;
}

.section-meta .quick h3{
  font-size:14px;
  margin-bottom:6px;
}

.section-meta .quick p{
  font-size:13px;
  line-height:1.7;
}

.link-ribbon{
  width:100%;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  color:var(--soft);
  font-size:13px;
  padding-top:10px;
  border-top:1px solid var(--stroke);
}

.link-ribbon a{
  color:var(--soft);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.link-ribbon a:hover{color:var(--text); border-bottom-color:rgba(255,255,255,.34)}

.section-body{
  padding:16px;
}

.general{
  margin:0;
  font-size:14px;
  line-height:1.75;
  color:rgba(255,255,255,.92);
}

.keywords{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.keyword{
  display:inline-flex;
  align-items:center;
  font-size:12px;
  color:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  padding:7px 10px;
  background:rgba(255,255,255,.06);
}

.promo-love{
  margin-top:18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,143,214,.30);
  background:
    radial-gradient(1100px 420px at 50% -4%, rgba(255,236,248,.22), transparent 58%),
    radial-gradient(620px 320px at 18% 28%, rgba(255,143,214,.16), transparent 68%),
    radial-gradient(620px 320px at 82% 28%, rgba(255,209,234,.14), transparent 68%),
    linear-gradient(180deg, rgba(255,143,214,.20), rgba(22,9,28,.22));
  box-shadow:
    0 22px 70px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.06);
  padding:24px 22px 22px;
  overflow:hidden;
  position:relative;
  isolation:isolate;
}

.promo-love:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(760px 240px at 50% 20%, rgba(255,248,252,.14), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 24%);
  pointer-events:none;
  z-index:0;
}

.promo-love > *{
  position:relative;
  z-index:1;
}

.promo-love-kicker{
  margin:0 0 10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--blush2);
  text-align:center;
}

.promo-love h3{
  margin:0 0 18px;
  max-width:24ch;
  font-size:clamp(28px, 2.6vw, 38px);
  line-height:1.10;
  letter-spacing:-.03em;
  color:var(--text);
  text-wrap:balance;
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.promo-love-grid{
  display:grid;
  grid-template-columns:560px minmax(460px, 1fr);
  gap:18px;
  align-items:center;
}

.promo-love-text{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.promo-love-text p{
  margin:0;
  max-width:38ch;
  color:rgba(255,255,255,.88);
  line-height:1.92;
  font-size:16px;
}

.promo-fan{
  position:relative;
  width:100%;
  height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  isolation:isolate;
  max-width:520px;
  margin:0 auto;
}

.promo-fan:before{
  content:"";
  position:absolute;
  left:50%;
  top:54px;
  transform:translateX(-50%);
  width:420px;
  height:236px;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.24) 0%, rgba(255,247,251,.42) 18%, rgba(255,219,239,.30) 38%, rgba(255,143,214,.16) 60%, rgba(255,143,214,0) 82%);
  filter:blur(34px);
  opacity:1;
  z-index:0;
  pointer-events:none;
}

.promo-fan:after{
  content:"";
  position:absolute;
  left:50%;
  top:78px;
  transform:translateX(-50%);
  width:580px;
  height:182px;
  background:
    radial-gradient(circle at 24% 50%, rgba(255,230,244,.16), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(255,246,250,.18), transparent 34%),
    radial-gradient(circle at 76% 50%, rgba(255,230,244,.16), transparent 34%);
  filter:blur(30px);
  opacity:.95;
  z-index:0;
  pointer-events:none;
}

.promo-fan-card{
  position:absolute;
  width:172px;
  aspect-ratio:5 / 7;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:
    0 20px 44px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.03) inset;
}

.promo-fan-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.promo-fan-card.card-left{
  left:18px;
  top:44px;
  transform:rotate(-13deg);
  z-index:1;
}

.promo-fan-card.card-center{
  left:50%;
  top:18px;
  transform:translateX(-50%) rotate(0deg);
  z-index:3;
}

.promo-fan-card.card-right{
  right:18px;
  top:44px;
  transform:rotate(13deg);
  z-index:2;
}

.promo-love-links{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:center;
}

.promo-love .btn{
  min-height:54px;
  padding:12px 18px;
  border-radius:18px;
  font-size:14px;
  font-weight:760;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
  color:var(--text);
  box-shadow:0 8px 24px rgba(0,0,0,.18);
}

.promo-love .btn:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.24);
}

.promo-love .btn-primary{
  border:1px solid rgba(255,143,214,.48);
  background:linear-gradient(180deg, rgba(255,143,214,.34), rgba(255,143,214,.14));
  box-shadow:
    0 12px 28px rgba(255,143,214,.20),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.promo-love .btn-primary:hover{
  background:linear-gradient(180deg, rgba(255,143,214,.42), rgba(255,143,214,.18));
}

.bottom{
  margin-top:18px;
  text-align:center;
  border-radius:var(--radius);
  border:1px solid rgba(255,143,214,.22);
  background:linear-gradient(180deg, rgba(255,143,214,.14), rgba(0,0,0,.18));
  box-shadow:var(--shadow);
  padding:16px;
}

.bottom h3{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:-.01em;
}

.bottom p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.85;
}

.bottom-actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  font-weight:780;
  font-size:13px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.05);
  color:var(--text);
}

.btn:hover{background:rgba(255,255,255,.08)}

.btn-primary{
  border:1px solid rgba(255,143,214,.40);
  background:linear-gradient(180deg, rgba(255,143,214,.26), rgba(255,143,214,.10));
}

.btn-primary:hover{
  background:linear-gradient(180deg, rgba(255,143,214,.34), rgba(255,143,214,.14));
}

.bottom-links{
  margin-top:12px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  color:var(--soft);
  font-size:13px;
}

.bottom-links a{
  color:var(--soft);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.bottom-links a:hover{color:var(--text); border-bottom-color:rgba(255,255,255,.34)}

@media(max-width:980px){
  .hero-grid{grid-template-columns:1fr}

  .promo-love-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .promo-love h3{
    max-width:22ch;
    text-align:center;
  }

  .promo-love-text{
    justify-content:center;
  }

  .promo-love-text p{
    max-width:40ch;
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }

  .promo-fan{
    height:320px;
    max-width:470px;
  }

  .promo-fan:before{
    top:54px;
    width:380px;
    height:220px;
  }

  .promo-fan:after{
    top:78px;
    width:500px;
    height:168px;
  }
}

@media(max-width:520px){
  .hero{padding:16px}
  .hero-grid{gap:12px}
  .hero-cards{height:280px;margin-bottom:8px;padding-top:12px}
  .hero-card img{width:150px}
  .hero-card.cardA{transform:rotate(-7deg) translateX(54px) translateY(26px)}
  .hero-card.cardB{transform:rotate(8deg) translateX(-66px) translateY(-2px) scale(.98)}
  .hero-text h1{font-size:30px;margin-top:6px}
  .section-head{padding:14px}
  .section-head-grid{display:flex;flex-direction:column;align-items:center;text-align:center}
  .pair{justify-content:center}
  .section-meta .quick{width:100%}
  .pair img{width:72px}

  .promo-love{
    padding:20px 16px;
  }

  .promo-love h3{
    max-width:20ch;
    font-size:34px;
  }

  .promo-love-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .promo-fan{
    height:286px;
    max-width:360px;
  }

  .promo-fan:before{
    width:300px;
    height:190px;
    top:50px;
    filter:blur(26px);
  }

  .promo-fan:after{
    width:390px;
    height:140px;
    top:74px;
    filter:blur(24px);
  }

  .promo-fan-card{
    width:128px;
  }

  .promo-fan-card.card-left{
    left:6px;
    top:40px;
    transform:rotate(-12deg);
  }

  .promo-fan-card.card-center{
    top:18px;
  }

  .promo-fan-card.card-right{
    right:6px;
    top:40px;
    transform:rotate(12deg);
  }

  .promo-love-text p{
    max-width:34ch;
    font-size:14px;
    text-align:center;
  }

  .promo-love .btn{
    min-height:50px;
    padding:11px 16px;
    font-size:13px;
  }
}

@media(max-width:420px){
  .wrap{padding:16px 10px 72px}
  .hero-cards{height:250px;padding-top:10px}
  .hero-card img{width:132px}
  .hero-card.cardA{transform:rotate(-7deg) translateX(46px) translateY(22px)}
  .hero-card.cardB{transform:rotate(8deg) translateX(-54px) translateY(2px) scale(.98)}
  .duos-grid{gap:12px}
  .pair img{width:64px}
  .section-body{padding:14px}
  .general{font-size:14px;line-height:1.75}
  .keyword{font-size:11px;padding:6px 8px}
  .section-meta h2{font-size:15px}

  .promo-love h3{
    font-size:30px;
    max-width:18ch;
  }

  .promo-fan{
    height:254px;
    max-width:306px;
  }

  .promo-fan:before{
    width:236px;
    height:156px;
    top:44px;
    filter:blur(22px);
  }

  .promo-fan:after{
    width:310px;
    height:118px;
    top:68px;
    filter:blur(20px);
  }

  .promo-fan-card{
    width:110px;
  }

  .promo-fan-card.card-left{
    left:0;
    top:38px;
    transform:rotate(-11deg);
  }

  .promo-fan-card.card-center{
    top:18px;
  }

  .promo-fan-card.card-right{
    right:0;
    top:38px;
    transform:rotate(11deg);
  }


}


.plLoveConsultMiniCards{
  position:relative;
  width:380px;
  height:224px;
  margin:4px auto 24px;
  pointer-events:none;
}

.plLoveConsultMiniCards::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:14px;
  width:252px;
  height:132px;
  transform:translateX(-50%);
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,143,214,.26) 0%, rgba(255,143,214,.12) 44%, rgba(255,143,214,0) 76%);
  filter:blur(11px);
}

.plLoveConsultMiniCard{
  position:absolute;
  display:block;
  width:124px !important;
  max-width:none !important;
  height:auto !important;
  margin:0 !important;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 16px 34px rgba(0,0,0,.34);
  transform-origin:bottom center;
}

.plLoveConsultMiniCardHeart{
  left:26px;
  bottom:0;
  transform:rotate(-16deg);
  z-index:1;
}

.plLoveConsultMiniCardBook{
  left:50%;
  bottom:24px;
  width:132px !important;
  transform:translateX(-50%) rotate(0deg);
  z-index:3;
}

.plLoveConsultMiniCardKey{
  right:26px;
  bottom:0;
  transform:rotate(16deg);
  z-index:2;
}

@media (max-width: 640px){
  .plLoveConsultMiniCards{
    width:312px;
    height:196px;
    margin:6px auto 18px;
  }

  .plLoveConsultMiniCard{
    width:106px !important;
    border-radius:16px;
  }

  .plLoveConsultMiniCardBook{
    width:114px !important;
    bottom:16px;
  }

  .plLoveConsultMiniCardHeart{
    left:16px;
    transform:rotate(-14deg);
  }

  .plLoveConsultMiniCardKey{
    right:16px;
    transform:rotate(14deg);
  }
}
