@import url('https://fonts.googleapis.com/css2?family=Fugaz+One&family=Momo+Trust+Display&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');

@font-face {
    font-family: "Satoshi Bold";
    src: url(fonts/Satoshi-Bold.woff);
}

@font-face {
    font-family: "Satoshi Light";
    src: url(fonts/Satoshi-Light.woff);
}

@font-face {
    font-family: 'Didiot Regular';
    src: url(fonts/Didot\ Regular.ttf);
}

:root {
    --bg-dark: hsl(0, 0%, 0%);
    --bg: hsl(273 15% 6%);
    --bg-light: hsl(272 15% 10%);
    --text: hsl(271 100% 100%);
    --text-muted: hsl(0 0% 75%);
    --highlight: hsl(272 22% 43%);
    --border: hsl(272 28% 32%);
    --border-muted: hsl(273 40% 21%);
    --primary: hsl(271 54% 76%);
    --secondary: hsl(87 35% 61%);
    --danger: hsl(9 42% 65%);
    --warning: hsl(51 29% 53%);
    --success: hsl(148 27% 56%);
    --info: hsl(217 46% 66%);
    
}

body.light {
    --bg-dark: hsl(270 73% 92%);
    --bg: hsl(270 100% 98%);
    --bg-light: hsl(270 100% 100%);
    --text: hsl(275 100% 7%);
    --text-muted: hsl(0 0% 32%);
    --highlight: hsl(271 100% 100%);
    --border: hsl(271 22% 55%);
    --border-muted: hsl(271 31% 67%);
    --primary: hsl(273 35% 33%);
    --secondary: hsl(81 84% 17%);
    --danger: hsl(8 32% 41%);
    --warning: hsl(51 46% 30%);
    --success: hsl(150 37% 33%);
    --info: hsl(217 34% 43%);
}

html {
    margin: 0 0;
    width: 100%;
    padding: 0;
    font-size: 85%;
}

body  {
    padding: 0 0;
    scroll-behavior: smooth ;
    background-color: var(--bg-dark);
    max-width: 100%;
}

* {
    margin: 0;
    scroll-behavior: smooth;
}

#landing {
    padding: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-size: cover;
    position: relative;
}

#landing-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    filter: blur(3px) brightness(50%);
    user-select: none;
    -webkit-user-drag: none;
}

.buttons-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem ;
}

.secondary-btn, .primary-btn {
    display: inline-block;
    font-size: 1.2rem;
    padding: min(4vw, 18px) min(6vw, 32px);
    border-radius: 35px;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: scale 0.2s ease-out;
    font-family: sans-serif;
    text-decoration: none;
}

.secondary-btn:hover, .primary-btn:hover {
    scale : 105%;
}

.primary-btn {
    color: rgb(255, 255, 255);
    position: relative;
    background-color: var(--primary);
    color: black;
}

.primary-btn-wrapper {
    position: relative;
}

.primary-btn-wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    opacity: 0.4;
    transition: opacity .5s ease;
    background-color: var(--primary);
}

.primary-btn-wrapper:hover::before {
    opacity: 1;
}

.secondary-btn {
    background-color: var(--bg-light);
    position: relative;
    color: var(--secondary);
}

.secondary-btn-wrapper {
    position: relative;
}

.secondary-btn-wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--secondary);
    filter: blur(40px);
    opacity: 0.2;
    transition: opacity .5s ease;
}

.secondary-btn-wrapper:hover::before {
    opacity: 1;
}

section {
    min-height: 100vh;
    width: 100%;
    background-color: var(--bg-dark);
}

.title {
    color: var(--text);
}

#main-title {
    font-size: clamp(5rem, calc(10vw + 0.1rem), 12rem);
    font-family: 'Didiot Regular';
    color: transparent;
    background: linear-gradient(120deg, #ffa5ec 0%, #c2a8ff 50%, #a3e3ff 100%);
    background-clip: text;
    background-size: 100% 100%;
    position: relative;
    text-align: center;
    height: fit-content;
    letter-spacing: -5px;
    z-index: 1;
}

#main-title::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: -1;
    background: linear-gradient(120deg, #FF4FD8 0%, #8B5CF6 50%, #38BDF8 100%);
    opacity: 0.3;
    filter: blur(100px) brightness(140%);
    padding: 10px;
}

header {
    position: fixed;
    top: 0;
    backdrop-filter: blur(15px);
    width: 100%;
    max-width: 100%;
    height: 40px;
    z-index: 999;
    border-bottom: .5px solid var(--border-muted);
    box-shadow: 0 0  40px black;
    background-color: var(--bg);
    justify-content: start;
}

#navbar {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    position: relative;
    gap: 10px;
}

#navbar a {
    list-style: none;
    transition: .2s ease;
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Zalando Sans';
    display: flex;
    justify-content: center;
    flex: 0 1 0px;
    width: fit-content;
    position: relative;
    padding: 5px;
}

#navbar a:hover {
    color: var(--text);
}

.client-review-pp {
    width: 40%;
}

.client-review-text {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-family: 'Zalando Sans';
}

.client-review-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.client-review-text-wrapper {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--bg);
    padding: 25px;
    border: .5px solid var(--border-muted);
    border-radius: 15px;
}

.client-review-name {
    font-size: 3rem;
    color: var(--text);
    font-family: 'Momo Trust Display';
}

.subtitle {
    font-family: "Satoshi Light";
    position: relative;
    text-align: center;
}

h2.subtitle {
    font-size: clamp(2rem, calc(3vw + 0.1rem), 7rem);
    font-weight: 900;
    color: var(--text);
}

h3.subtitle {
    font-size: 1.4rem;
    font-weight: 100;
    color: var(--text-muted);
}

.main-title-wrapper {
    justify-content: space-around;
    display: flex;
    flex-direction: column;
    margin-bottom: 8%;
}

#player {
    border-radius: 10px;
    position: relative;
    width: 90%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 40px;
    margin-bottom: 40px;
}

#presentation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.show {
    translate: 0 0;
    opacity: 1;
}

.scroll-animation:not(.show).h {
    opacity: 0;
    translate: -100px 0;
}

.scroll-animation:not(.show).v {
    opacity: 0;
    translate: 0 30px;
}

.scroll-animation {
    transition: 500ms ease-in-out;
}

.stats-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-block: 100px;
}

.stats-wrapper img {
    width: 160px;
    height: 160px;
    border-radius: 100%;
}

.stats {
    display: flex;
    flex-direction: row;
    color: var(--text);
    width: 100%;
    margin-top: 40px;
    justify-content: center;
    gap: 15px;
}

.stats  * {
    color: var(--text);
    text-transform: uppercase;
    font-family: 'Satoshi Bold';    
}

.stat-card {
    text-align: center;
    flex-wrap: nowrap;
}

.stat-title {
    font-size: 2rem;
    text-wrap-mode: nowrap;
    color: transparent;
    background-clip: text !important;
}

#xp {
    background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%);
}

#vues {
    background: linear-gradient(90deg, #f8ff00 0%, #3ad59f 100%);
}

#montage-video {
    background: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
}

.section-title {
    color: var(--text);
    font-size: 3rem;
    margin-left: 50px;
    font-family: 'Satoshi Bold';
    margin-top: 100px;
    margin-bottom: 40px;
}

.products-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10%;
    margin: 40px;
    position: relative;
}

.product {
    background-color: var(--bg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    gap: 20px;
    border-radius: 25px;
    border: var(--border-muted) 1px solid;
    justify-content: space-around;
    position: relative;
}

.product-img {
    width: 60%;
    border-radius: 8%;
}

.product-name {
    color: var(--text);
    font-family: 'Satoshi Bold';
    font-size: 1.5rem;
}

.product-desc {
    color: var(--text-muted);
    font-family: 'Satoshi Light';
    font-size: 1.2rem;
}

.product-price {
    color: var(--text);
    font-family: 'Satoshi Bold';
    font-size: 1.5rem;
    margin-top: 10px;
}

.best-seller {
    position: absolute;
    top: 5%;
    left: 5%;
    background-color: var(--success);
    padding: 5px 10px;
    font-size: 1.2rem;
    font-family: 'Satoshi Light';
    border: 1px var(--border) solid;
    border-radius: 5px;
    font-weight: 500;
}

.group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    animation: spin 60s infinite linear;
    padding-right: 1em;
}


@media (max-width: 800px) {
    .group {
        animation: spin 85s infinite linear;
    }

    html {
        font-size: 55%;
    }
}

@keyframes  spin {
    from {translate: 0;}
    to {translate: -100%;}
}

/* Social media button from david-mohseni - uiverse */
/* From Uiverse.io by david-mohseni */ 
.wrapper {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    left: 10px;
  display: inline-flex;
  list-style: none;
  padding-top: 0;
  font-family: "Poppins", sans-serif;
  justify-content: center;
  padding-left: 0;
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: black;
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .mail:hover,
.wrapper .mail:hover .tooltip,
.wrapper .mail:hover .tooltip::before {
  background: #1877f2;
  color: #fff;
}

.wrapper .tiktok:hover,
.wrapper .tiktok:hover .tooltip,
.wrapper .tiktok:hover .tooltip::before {
  background: #ff0050;
  color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}


.info {
    min-width: 200px;
    width: 70%;
    max-width: 600px;
    background-color: var(--info);
    height: 50px;
    position: fixed;
    left: 50%;
    translate: -50% 0;
    z-index: 999;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Satoshi Light';
    font-size: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--border);
    box-shadow: 5px 10px 5px 0  rgba(0, 0, 0, 0.433);
    transform: translateY(-60px);
}

.info.show-info {
    animation: popup-spawn 500ms ease-out forwards;
}

.info:not(.show-info) {
    animation: popup-despawn 500ms ease-out;
}

@keyframes popup-spawn {
    from {transform: translateY(-60px);}
    to {transform: translateY(0);}
}

@keyframes popup-despawn {
    from {transform: translateY(0);}
    to {transform: translateY(-60px);}
}

footer {
    background-color: var(--bg);
    color: var(--text-muted);
    font-family: sans-serif;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
}

footer a {
    color: var(--text);
}

/* =============================================
   CAROUSEL AVIS CLIENTS — carousel-avis.css
   Tous les sélecteurs sont préfixés .rc-
   Aucun sélecteur global (body, *, h2, p…)
   Vos variables CSS existantes sont utilisées :
   --bg, --bg-dark, --bg-light, --text, --text-muted, --border, --border-muted
   Variables internes au carousel uniquement :
============================================= */

/* ── Variables internes ── */
.rc-carousel-section {
  --rc-accent:      #c8a96e;
  --rc-accent-soft: #f5ede0;
  --rc-radius:      18px;
  --rc-card-w:      360px;
  --rc-gap:         20px;
}

/* ── Wrapper section ── */
.rc-carousel-section {
  width: 100%;
  padding: 0;
}

.rc-carousel-section * {
    font-family: sans-serif;
}

/* ── Outer (fade edges + positionnement) ── */
.rc-carousel-outer {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
/* 
.rc-carousel-outer::before,
.rc-carousel-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.rc-carousel-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.rc-carousel-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
} */

/* ── Track ── */
.rc-carousel-track-wrap {
  overflow: hidden;
  padding: 20px 4px 28px;
}

.rc-carousel-track {
  display: flex;
  gap: var(--rc-gap);
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* ── Card ── */
.rc-card {
  flex: 0 0 var(--rc-card-w);
  background: var(--bg-light);
  border: 1px solid var(--border-muted);
  border-radius: var(--rc-radius);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05), 0 1px 3px rgba(0,0,0,.04);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
  max-width: 90%;
}

.rc-card::before {
  content: '\201C';
  font-size: 100px;
  line-height: 1;
  color: var(--rc-accent-soft);
  position: absolute;
  top: -10px;
  right: 18px;
  pointer-events: none;
  user-select: none;
}

.rc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05);
}

/* ── Card head ── */
.rc-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: var(--border-muted);
}

.rc-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rc-accent-soft), #e8d5b5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--rc-accent);
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.rc-card__meta {
  flex: 1;
  min-width: 0;
}

.rc-card__name {
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}

.rc-card__date {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Stars ── */
.rc-stars {
  display: flex;
  gap: 3px;
}

.rc-star {
  width: 16px;
  height: 16px;
}

.rc-star path {
  transition: fill .2s;
}

.rc-star.full path {
  fill: #f5a623;
}

.rc-star.half path.front {
  fill: #f5a623;
}

.rc-star.half path.back {
  fill: var(--border-muted);
}

.rc-star.empty path {
  fill: var(--border-muted);
}

/* ── Review text ── */
.rc-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Video ── */
.rc-card__video {
  border-radius: calc(var(--rc-radius) - 6px);
  overflow: hidden;
  border: 1px solid var(--border-muted);
  background: var(--bg-dark);
  position: relative;
  max-height: 30%;
  width: fit-content;
}

.rc-card__video video {
  display: block;
  height: 100%;
  object-fit: cover;
}

.rc-video-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2a26 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  height: 100%;
}

.rc-video-placeholder span {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
}

.rc-play-btn {
  width: fit-content;
  height: 44px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:  .2s;
  color: var(--text);
  cursor: pointer;
  padding: 0 10px;
}

.rc-play-btn:hover {
  background: var(--bg-light);
  border-color: var(--rc-accent);
}

/* ── Source badge ── */
.rc-card__source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-muted);
  padding-top: 14px;
  margin-top: auto;
}

.rc-source-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rc-accent);
  flex-shrink: 0;
}

/* ── Controls ── */
.rc-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.rc-ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.rc-ctrl-btn:hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #fff;
  transform: scale(1.05);
}

.rc-ctrl-btn:active {
  transform: scale(.96);
}

.rc-ctrl-btn:disabled {
  opacity: .3;
  cursor: default;
  transform: none;
}

/* ── Dots ── */
.rc-dots {
  display: flex;
  gap: 7px;
}

.rc-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .25s, background .25s;
}

.rc-dot.active {
  width: 22px;
  background: var(--rc-accent);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .rc-carousel-section { --rc-card-w: 800px }
}


@media (max-width: 600px) {
  .rc-carousel-section { --rc-card-w: 300px; }
  .rc-carousel-outer::before,
  .rc-carousel-outer::after { width: 30px; }
}

@media (max-width: 380px) {
  .rc-carousel-section { --rc-card-w: 220px; }
}

.black {
  background-color: var(--bg-dark);
  border: none;
}