/*
=============== 
Fonts
===============
*/
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*
=============== 
Variables
===============
*/
@font-face {
  font-family: fonts;
  src: url(/assets/fonts/Bahnschrift/BAHNSCHRIFT.TTF);
}
:root {
  /* --clr-grey-1: rgb(15, 42, 66); */
  --clr-blue-2: #0647C5;




  --clr-orange: #F88E20;

  --clr-grey: #414141;


  --ff-primary: "Exo", sans-serif;
  --ff-secondary: "Orbitron", sans-serif;
  /* --ff-secondary: "Poppins", sans-serif; */
  --ff-tertiary: "fonts", sans-serif;
  
  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 0.5rem;

  --max-width: 1170px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  overflow-x: hidden;
}



/* components */
.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #0647C5 0%, #0954E6 100%);
  padding: 15px 30px;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s ease-in;
  white-space: nowrap;
}

/* Hover */
.card-btn:hover {
  background: var(--clr-orange);
}

/* Responsive — tablette */
@media (max-width: 768px) {
  .card-btn {
    padding: 12px 24px;
 
  }
}

/* Responsive — mobile */
@media (max-width: 480px) {
  .card-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


@media (max-width: 768px) {
  .traits {
    justify-content: center;
  }
}
/* --- Base styles --- */
.traits,
.traitss {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.traits .first,
.traitss .first {
  background-color: var(--clr-blue-2);
  height: 5px;
}

.traits .second,
.traitss .second {
  background-color: var(--clr-orange);
  height: 5px;
}

.traits .third,
.traitss .third {
  background-color: var(--clr-blue-2);
  height: 5px;
}

/* Specific widths for desktop */
.traits .first {
  width: 126px;
}
.traits .second,
.traits .third {
  width: 46px;
}

.traitss {
  justify-content: center;
}
.traitss .first,
.traitss .second,
.traitss .third {
  width: 126px;
}

/* --- Responsive styles --- */
@media (max-width: 768px) {
  .traits,
  .traitss {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .traits .first,
  .traitss .first,
  .traitss .second,
  .traitss .third {
    width: 90px;
  }

  .traits .second,
  .traits .third {
    width: 30px;
  }
}

@media (max-width: 480px) {
  .traits,
  .traitss {
    gap: 6px;
  }

  .traits .first,
  .traitss .first,
  .traitss .second,
  .traitss .third {
    width: 70px;
  }

  .traits .second,
  .traits .third {
    width: 20px;
  }
}


.buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 16px;

  align-items: center;
}





.buttons .btn {
  padding: 16px 24px;
  font-size: 18px;
  border-radius: 6px;


  cursor: pointer;
  transition: all 0.3s ease;
  
  text-align: center;

  
}
 .primary {
  background: linear-gradient(90deg, #F88E20 0%, #E37707 100%);

  color: white;
  border: none;
}

.secondary:hover {
  background-color: white;
  color: black;
}

.primary:hover {
  background: linear-gradient(90deg, #e37707 0%, #f88e20 100%);
  box-shadow: 0 4px 12px rgba(248, 142, 32, 0.4);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}


 .secondary {

  border: 2px solid white;
  color: white;
  background: transparent;

}

.secondary:hover {
  color: black;
}
@media (max-width: 768px) {
 

  .buttons .btn{
    font-size: 15px;
  }
  .secondary {

    border: 1px solid white;
   
  
  }
}

@media (max-width: 640px) {
 

  .buttons{
  flex-direction: column;
  }

}


body {
  scroll-behavior: smooth;
  font-family: var(--ff-secondary);

}

.container {
  width: 100%;

  margin: auto;
  padding: 0 16px;
}



p,
li,
ul,
span,
label,
input,
button,
textarea,
legend,
i,
em,
div,
section,
main,
header,
footer,
aside,
table,
td,
th, a{
  /* font-size: 1.4rem; */
  text-align: justify;
}

ul{
  list-style: none;
}

a{
  text-decoration: none;
  color: black;
  font-family: var(--ff-tertiary);
}


/*# sourceMappingURL=main.css.map */
/* Splash loader : couvre tout l'écran */
#splash-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* Fond blanc */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

/* Conteneur des points */
.loader {
  display: flex;
  gap: 12px;
}

/* Style des points */
.dot {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: var(--clr-blue-2); /* Bleu (modifiable) */
  animation: bounce 1.5s ease-in-out infinite;
}

/* Animation de "rebond" pour chaque point */
@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-15px);
  }
}

/* Animation différente pour chaque point (décalage) */
.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}

/* Disparition du loader après l'animation */
.fade-out {
  opacity: 0;
  pointer-events: none;
}


.couche {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.4;
  left: 0;
  right: 0;
}