@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  /* Couleurs */
  --global-color-white: #fff;
  --global-color-black: #1a1a1a;
  --global-color-background: #000;
  --global-color-gray: #6b6b6b;
  --global-color-dark-gray: #383838;
  --global-color-light-gray: #555;
  --global-color-dark: #333;

  /* Font */
  --font-xs: clamp(0.75rem, 1vw, 0.85rem);
  --font-sm: clamp(0.935rem, 1.2vw, 1rem);
  --font-md: clamp(1rem, 1.5vw, 1.125rem);
  --font-lg: clamp(1.25rem, 2vw, 1.5rem);
  --font-xl: clamp(1.75rem, 3vw, 2.25rem);
  --font-xxl: clamp(2.5rem, 5vw, 3.6rem);
  --font-hero: clamp(3rem, 7vw, 5rem);

  /* Border radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.7rem;
  --radius-lg: 1rem;

  /* Spacing */
  --padding-xs: 0.5rem;
  --padding-sm: 0.8rem;
  --padding-md: 1.2rem;
  --padding-lg: 2rem;

  /* Shadow */
  --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Inter Tight", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--global-color-background);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.button {
  background: linear-gradient(to bottom, #fec879, #ffe3c0);
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: 4px solid #fec879;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0px 0px 0px 1px #ffe3c0, 0px 0px 0px 2px #ccc;
  color: #3a250a;
  font-family: "Inter Tight", sans-serif;
  transition: all 0.3s ease;
}


.button i {
  margin-right: 0.5rem;
}

.button-responsive{
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: none;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(36, 36, 36, 0.4); /* semi-transparent */
  backdrop-filter: blur(24px); /* blur effet glace */
  -webkit-backdrop-filter: blur(24px); /* Safari support */
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 1rem;
  margin: 1rem auto;
  max-width: 1000px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
}

.nav-left .logo {
  width: 100px;
}

.nav-center a {
  color: white;
  margin-right: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-sm);
  transition: color 0.3s ease;
}

.nav-center a:hover{
  color: #FFE8CB;
}

.nav-right {
  display: flex;
  align-items: center;
}

.burger-discord-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Style général du logo Discord */
.discord-logo {
  height: 48px;
  width: 48px;
  border-radius: 0.8rem;
  padding: 2px;
  margin-top: .2rem;
}

.discord-link {
  position: relative;
  display: inline-block;
      margin-left: 1rem;
}


.discord-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  border: 2px solid white;
}



    .burger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 25px;
      height: 20px;
      cursor: pointer;
    }

    .burger span {
      height: 3px;
      background: #ececec;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

.hero {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.5vh 2rem 0rem;
  position: relative;
  text-align: center;
  margin-top: 1.5rem;
  overflow: hidden;
  gap: 2rem;
  height: 75vh;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/background2.png);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  z-index: 1;
}

.hero-title {
  font-size: var(--font-hero);
  font-weight: 600;
  line-height: 1.2;
  margin: 30px 0;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(0deg, #ffe8cb, #ffbf6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 1.2rem;
}

.hero-check-containers {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 0rem;
  margin-bottom: 3.5rem;
}

.check-hero-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 400;
}

.check-hero {
  width: 40px;
  height: 24px;
  background: linear-gradient(to right, #fec879, #ffe3c0);
  border-radius: 999px;
  position: relative;
}

.check-hero::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background-color: #3b2400;
  border-radius: 50%;
}

.store-info {
  color: #aaa;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.store-badges img {
  height: 30px;
  margin: 0.5rem 0.5rem;
}


.star {
  position: absolute;
  width: 48px;
  animation: floatStar 6s ease-in-out infinite;
  z-index: 0;
  opacity: 0.8;
}

.star-1 {
  top: 13%;
  left: 30%;
  animation-delay: 0s;
}

.star-2 {
  top: 40%;
  right: 25%;
  animation-delay: 2s;
}

.star-3 {
  bottom: 35%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes floatStar {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) rotate(15deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
}


.image-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -13rem;
  position: relative;
    z-index: 2;

}

.side-image img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

}

/* Ton code mis à jour pour le 3D + fondu */
.container-3d {
  perspective: 900px;
  width: 400px;
  position: relative;
  margin-bottom: 4rem;
}

.container-3d .hero-section-image-no-responsive {
  width: 100%;
  display: block;
  transform-origin: center bottom;
  transform: rotateX(18deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
  margin-top: 5rem;
}


.hero-section-image-responsive{
  display: none;
}






.section-trusted {
  padding: 0 24px;
  text-align: center;
  margin-top: -1rem;
  margin-bottom: 2rem;
}


.logo-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 0rem;
  overflow: hidden;
}

.logo-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  animation: scroll 20s linear infinite;
  will-change: transform;
}

.logo-track img {
  width: 100px;
  height: auto;
  margin: 0 24px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Bordures fondues gauche/droite */
.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.logo-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.video-motion {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.video-shadow-wrapper {
  padding: 4px; /* "épaisseur" du faux box-shadow */
  border-radius: 20px;
  width: 100%;
  max-width: 1000px;
}

.video-inner {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: none;
}

.video-inner video {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 1rem;
}


.section1 {
  padding: 60px 20px;
  color: white;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section1 .title {
  font-size: var(--font-xxl);
  max-width: 900px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 auto;
  letter-spacing: -0.05em;
  background: linear-gradient(0deg, #ffe8cb, #ffbf6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 4rem;
}

.section1 p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.section1 .cards {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-top: 4rem;
}

.section1 .card {
  position: relative;
  flex: 1 1 0; /* prend toute la place dispo, égalité entre cartes */
  height: 400px; /* ajuste selon besoin */
  color: white;
  padding: 15px;
  display: flex;
  align-items: flex-end; /* place le texte en bas */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  border: solid 1px rgba(255, 255, 255, 0.2); /* bordure semi-transparente */
}

/* Background images pour chaque carte */
.section1 .card1 {
  background-image: url("../img/section1-frame1.svg");
}

.section1 .card2 {
  background-image: url("../img/section1-frame2.svg");
}

.section1 .card3 {
  background-image: url("../img/section1-frame3.svg");
}

/* Optionnel: ajouter un overlay sombre pour que le texte soit lisible */
.section1 .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  z-index: 0;
}

.section1 .card p {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: .5rem;
  padding: 10px 15px;
  text-align: center;
  color: var(--global-color-white);
  background-color: rgb(25, 25, 25, 0.6); /* semi-transparent */
  backdrop-filter: blur(12px); /* flou appliqué à l'arrière-plan */
  -webkit-backdrop-filter: blur(12px); /* support Safari */
}

.section1 .card .color{
  color: #FFE8CB;
}



.section2 {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.section2 .toggle-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.section2 .card {
  padding: 2rem;
  color: white;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 400px;
  position: relative;
  border-radius: 1.5rem;
  border: solid 1px rgba(255, 255, 255, 0.2); /* bordure semi-transparente */
}

.section2 .toggle-bar span{
  color: #FFE8CB;
  font-weight: 500;
  font-size: var(--font-lg);
}

.section2 .toggle-bar .logo {
  height: auto;
  margin-left: .5rem;
}

.section2 .card h3 {
  font-size: 2.6rem;
  font-weight: 500;
  max-width: 300px;
  margin-top: 10px;
  letter-spacing: -0.02em;
  background-color: rgba(11, 11, 11, 0.5); /* semi-transparent */
  backdrop-filter: blur(12px); /* flou appliqué à l'arrière-plan */
  -webkit-backdrop-filter: blur(12px); /* support Safari */
  border-radius: 1rem;
}

.section2 .with-nation h3 {
  background: linear-gradient(0deg, #ffe8cb, #ffbf6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section2 .card ul {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
  font-size: 1rem;
}

.section2 .card ul li {
  margin-bottom: 0.5rem;
}

.toggle-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.toggle {
  width: 40px;
  height: 24px;
  border-radius: 999px;
  position: relative;
  margin-left: 1rem;
}

.toggle::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 4px;
  width: 20px;
  height: 20px;
  background-color: #3b0000;
  border-radius: 50%;
}

.toggle.on {
  background: linear-gradient(to right, #fec879, #ffe3c0);
}
.toggle.on::before {
  left: 18px;
  background: #2b1800;
}

.with-nation {
  background-image: url("../img/section2-frame.png");
}


.highlight-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.section2 .highlight-list li {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: white;
  justify-content: center;
}

.section2 .highlight-list .icon-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 0.9rem;
  margin-top: 0px;
  font-size: 0.9rem;
  background: linear-gradient(180deg, #FFBF6F 0%, #FFE8CB 100%);
  color: rgb(58, 37, 10);; /* The icon will be white by default */
  box-shadow:
    0 0 12px rgba(255, 220, 140, 1),
    0 0 24px rgba(255, 225, 150, 0.9),
    0 0 120px rgba(255, 255, 255, 0.5),
    0 0 160px rgba(255, 255, 255, 0.4);
}

.section2 .highlight-list .icon-gradient i {
  color: rgb(58, 37, 10);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}






.section3 {
  padding: 6rem 4rem;
  background-color: #0e0e0e;
  color: white;
  border-radius: 1rem;
  max-width: 1200px;
  margin: 8rem auto 0;
}

.section3-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
  align-items: center;
}

.section3-left {
  flex: 1 1 45%;
}

.section3-left h2 {
  font-size: 3.2rem;
  font-weight: 500;
  margin: 0 0 1rem;
  background: linear-gradient(0deg, #ffe8cb, #ffbf6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section3-left p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* 👤 Avatars */
.avatars {
  display: flex;
  margin-bottom: 1rem;
}
.avatars img {
  width: 40px;
  height: 40px;
  margin-left: -10px;
}
.avatars img:first-child {
  margin-left: 0;
}

.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

/* ➡️ Lien roadmap */
.roadmap-link {
  margin-top: 2rem;
  font-size: 1rem;
}
.roadmap-link a {
  color: #ffc987;
  font-weight: 500;
  text-decoration: underline;
}

/* 📷 Image Discord droite */
.section3-right {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.discord-promo-img {
  width: 100%;
  max-width: 500px;
  border-radius: 1.25rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}



.faq {
  color: white;
  padding: 6rem 2rem;
  max-width: 800px;
  margin: auto;
  border-radius: 1rem;
  margin-top: 2rem;
}

.faq-container h2 {
  font-size: var(--font-xxl);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4rem;
  letter-spacing: -0.05em;
  background: linear-gradient(0deg, #ffe8cb, #ffbf6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.faq-item {
  border: 1px solid #2a2a2a;
  padding: 0.5rem 1.2rem;
  background-color: var(--global-color-black);
  margin: 1rem 0;
  border-radius: 1rem;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 1.2rem 0;
  font-size: 1.1rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #ffc987;
}

.faq-question .icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  font-size: 0.95rem;
  color: #d1d5db;
  padding-right: 1rem;
}

.faq-answer.open {
  opacity: 1;
  margin-bottom: 1rem;
}

.cta-news {
  padding: 6rem 2rem 4rem;
  text-align: center;
  color: white;
  border-radius: 1rem;
  margin: 4rem auto 0;
  position: relative;
}

.cta-news::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/background-cta.svg);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: -1;
}


.cta-content .title-item {
  font-size: 1.8rem;
 letter-spacing: -0.05em;
  background: linear-gradient(0deg, #ffe8cb, #ffbf6f);
    -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
    font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-content h2 {
  font-size: var(--font-xxl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--global-color-white);
  text-align: center;
  margin: 0 auto 1rem;
   letter-spacing: -0.05em;
}

.cta-content p {
  font-size: 1.1rem;
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto 2rem;
  margin-bottom: 4rem;
}

.cta-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cta-input {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-radius: .7rem;
  border: none;
  outline: none;
  background-color: #0e0e0e;
  color: #fff;
  min-width: 250px;
  transition: box-shadow 0.3s ease;
  border: 3px solid #ffffff22; /* stroke léger blanc semi-transparent */
}

.cta-input:focus {
  box-shadow: 0 0 0 3px #ffbf6f80;
}


.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: -4rem;
}

.mockup {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
    margin-top: 4rem;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
  position: relative;
}

/* Dégradé noir vers le bas */
.mockup-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0) 30%);
  z-index: 2;
  pointer-events: none;
}





.footer {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -7rem;
  background-color: #000;
  color: #aaa;
  padding: 2rem 1.5rem;
  z-index: 2;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 40px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 400;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffe3c0;
}

.linkedin-icon {
  background-color: #000000;
  color: #000;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

.footer-divider {
  border: none;
  border-top: 1px solid #333;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
  padding-bottom: 2rem;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
}

.footer-bottom .msd-media{
  text-decoration: underline;
  color: #ffe3c0;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
