/* ==========================================================================
   Variables globales (root)
   ========================================================================== */

/* Définir des tailles de police responsives avec clamp(min, vw, max) */
:root {
  --fs-small: clamp(0.8rem, 0.5vw, 2rem);  /* Police petite, adaptable */
  --fs-inter: clamp(1.2rem, 1.6vw, 1.6rem); /* Police intermédiaire */
  --fs-huge: clamp(2rem, 4vw, 5.8rem);       /* Police très grande */
  --fs-sens: clamp(2rem, 4vw, 5rem);       /* Police pour titres sensibles */
}

/* ==========================================================================
   Réinitialisations globales
   ========================================================================== */

/* Supprimer la barre de défilement */
html {
  scrollbar-width: none; /* Firefox */
}

/* Réinitialiser et configurer le body */
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: auto; /* Permettre le défilement */
  box-sizing: border-box; /* Inclure padding/border dans la largeur */
  background-color: #1b1b1b; /* Fond sombre */
}

/* Appliquer box-sizing à tous les éléments */
* {
  box-sizing: border-box;
}

/* ==========================================================================
   Polices personnalisées
   ========================================================================== */

/* Définir les polices à partir des fichiers locaux */
@font-face {
  font-family: "SG15_sm";
  src: url(../fonts/SharpGrotesk-SemiBold15.otf);
}

@font-face {
  font-family: "SG20_light";
  src: url(../fonts/SharpGrotesk-Light20.otf);
}

@font-face {
  font-family: "SG25_medium";
  src: url(../fonts/SharpGrotesk-Medium25.otf);
}

@font-face {
  font-family: "SG25_light";
  src: url(../fonts/SharpGrotesk-Light25.otf);
}

@font-face {
  font-family: "JMAD";
  src: url(../fonts/JustMeAgainDownHere-Regular.ttf);
}

@font-face {
  font-family: "JAH";
  src: url(../fonts/JustAnotherHand-Regular.ttf);
}

/* ==========================================================================
   Éléments de fond
   ========================================================================== */

/* Image de fond fixe */
#background_image {
  min-height: 100vh;    /* Hauteur minimale de la viewport */
  min-width: 100vw;     /* Largeur minimale de la viewport */
  z-index: -3;          /* Arrière-plan profond */
  position: fixed;
  top: 0%;
  left: 0%;
  transform-origin: center;
  overflow: hidden;     /* Empêcher le débordement */
}

/* ==========================================================================
   En-tête (Header)
   ========================================================================== */

/* Barre de navigation fixe */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between; /* Espacer logo et nav */
  align-items: center;
  padding: 2% 1%;                /* Padding responsive */
  background-color: rgba(27, 27, 27, 0.1); /* Fond semi-transparent */
  backdrop-filter: blur(50px);   /* Effet de flou */
  z-index: 5;                    /* Au-dessus du fond */
  transition: none;              /* Désactiver transition par défaut */
}

/* Logo dans l'en-tête */
#home_logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

#header_logo {
  width: 50%;
  min-width: 5%;
  margin: 0 0 0 10%; /* Décalage à gauche */
  height: auto;
}

/* ==========================================================================
   Navigation principale
   ========================================================================== */

/* Style de base pour les liens de navigation */
a {
  color: #fff;
  text-decoration: none;
}

/* Navigation avec boutons */
#nav_bar {
  display: flex;
  gap: 40px;                  /* Espacement entre éléments */
  text-transform: uppercase;   /* Texte en majuscules */
}

#nav_bar ul {
  display: flex;
  list-style: none;           /* Supprimer les puces */
  align-items: stretch;       /* Uniformiser la hauteur */
  padding: 0;
}

#nav_bar li {
  display: flex;              /* Conteneur flex pour alignement */
  align-items: center;        /* Centrer verticalement */
  margin: 0 10px;             /* Espacement latéral */
}

/* ==========================================================================
   Overlay de navigation (mobile)
   ========================================================================== */

.nav-overlay {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: rgba(27, 27, 27, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: left 0.3s ease;
  visibility: hidden;
}

.nav-overlay.active {
  left: 0;
  visibility: visible;
}

.nav-overlay ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-transform: uppercase;
}

.nav-overlay .rounded_button {
  min-height: 40px;
  min-width: 150px;
  text-align: center;
  pointer-events: all;
}

.nav-overlay .rounded_button.active {
  background-color: #fff;
  color: #1b1b1b;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  font-family: "SG25_light";
}

/* ==========================================================================
   Section Hero
   ========================================================================== */

#hero {
  display: flex;
  justify-content: center;
  margin: 0 10%;              /* Marges latérales */
  min-height: 100%;           /* Hauteur minimale */
}

#hero_center_accroche {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20vh;          /* Décalage depuis le haut */
  z-index: 2;                 /* Au-dessus du fond */
}

/* ==========================================================================
   Styles des titres (h1 à h6)
   ========================================================================== */

h1 {
  font-family: "SG25_medium";
  font-size: var(--fs-huge);
  line-height: 90%;
  color: #ffffff;
  margin: 0;
}

h2 {
  font-family: "SG25_medium";
  font-size: var(--fs-huge);
  color: #fff;
  line-height: 85%;
  margin: 0;
}

h3 {
  margin: 0;
  font-family: "SG15_sm";
  font-size: 2vw;
  font-weight: normal;
}

h4 {
  font-family: "SG25_light";
  color: #ffffff;
}

h6 {
  font-family: "JAH";
  font-size: var(--fs-sens);
  font-weight: normal;
  margin: 0;
}

/* ==========================================================================
   Menu d'usages (Hero)
   ========================================================================== */

#menu_usages {
  margin: 20px 0;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  color: #ffffff;
  font-size: var(--fs-small);
  cursor: default;
}


#menu_usages .rounded_button {
  background-color: #1b1b1b;
  color: #fff;
  padding: 2% 4%;
  margin: 0 10px 10px 0;
  transition: 0.2s ease-in;
}

#menu_usages .rounded_button:hover {
  background-color: #DF3514;
  color: #1b1b1b;
  transition: 0.2s ease-in;
}

/* ==========================================================================
   Bouton d'action (Meet Up)
   ========================================================================== */

.rounded_button_action {
  padding: 20px 40px;
  margin: 0;
  background: #DF3514;        /* Rouge orangé */
  border-radius: 50px;
  font-family: "SG25_light";
  color: #ffffff;
  width: fit-content;
  font-size: var(--fs-small);
  pointer-events: all;
  cursor: pointer;
  transition: 0.2s ease-out;
}

.rounded_button_action:hover {
  transform: scale(1.1);      /* Zoom au survol */
  transition: 0.2s ease-out;
}

#button_meet_up {
  margin-top: 100px;
}

/* ==========================================================================
   Section Utility
   ========================================================================== */

#utility {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20% 0;
}

.container_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#clone {
  font-family: "SG25_medium";
  font-size: var(--fs-huge);
  text-align: center;
  color: #fff;
  line-height: 85%;
  margin: 0;
  text-transform: uppercase;
}

#sens {
  margin: -1%;
  font-family: "JMAD";
  font-size: var(--fs-huge);
  color: #fff;
}

#simple {
  text-align: center;
  font-size: var(--fs-inter);
  padding: 0 8%;
  color: #DF3514;
}

#container_bloc {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.bloc {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  height: auto;
  padding: 20px 40px 40px 40px;
  background-color: #272727;
  border-radius: 50px;
}

.bloc .rounded_button {
  color: #fff;
  font-size: var(--fs-small);
  white-space: normal;
}

.bloc p {
  font-family: "SG20_light";
  color: #fff;
  font-size: var(--fs-small);
}

/* ==========================================================================
   Section Me
   ========================================================================== */

#me {
  min-height: 100vh;
  padding: 20% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #DF3514;
}

#me #clone {
  color: #1b1b1b;
}

#me #sens {
  color: #fff;
  z-index: 2;
}

#container_infos {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
}

#container_infos h3 {
  font-size: var(--fs-inter);
}

.infos {
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: var(--fs-small);
}

.infos .rounded_button_action {
  position: absolute;
  bottom: 0;
  margin: 0 10% 5% 10%;
  font-family: "SG25_light";
  color: #fff;
  font-size: var(--fs-small);
  text-align: center;
}

.infos p {
  font-family: "SG20_light";
  color: #1b1b1b;
  font-size: var(--fs-small);
}

#photo {
  border-radius: 50px;
  background-image: url(../img/maxileance.jpg);
}

/* ==========================================================================
   Section Quote
   ========================================================================== */

#quote {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50%;
  padding: 40px 0;
  color: #272727;
  text-align: center;
}

#quote h1 {
  color: #272727;
  line-height: 85%;
}

/* ==========================================================================
   Section Footer
   ========================================================================== */

#footer {
  display: flex;
  width: 100%;
  min-height: 20vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  color: #1b1b1b;
  padding: 10% 0;
}

#footer h3 {
  font-size: var(--fs-inter);
}

#footer h4 {
  color: #1b1b1b;
  text-align: center;
  padding: 0;
  margin: 0;
}

#coordonnees {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1b1b1b;
}

#social {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#social .rounded_button {
  background-color: #fff;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

#social a {
  color: #1b1b1b;
}

#social .rounded_button:hover {
  background-color: #DF3514;
  color: #fff;
}

.signature {
  font-family: "SG25_light";
  width: 100%;
  display: flex;
  justify-content: center;
  color: #fff;
}

.signature .rounded_button {
  padding: 10px 20px;
}

#bas_de_page {
  padding-bottom: 4%;
}

/* ==========================================================================
   Section Vertical
   ========================================================================== */

#vertical {
  min-height: 100%;
  padding: 12% 10%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.preview {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: #fff;
  transition: 1s ease-in-out;
}

.preview:hover {
  transform: scale(0.95);
  filter: sepia(50%) saturate(700%) contrast(100%) brightness(90%) hue-rotate(-30deg); /* Rouge vif optimisé */
  transition: 0.2s ease-in-out;
}

.preview_infos {
  position: absolute;
  display: flex;
  padding: 20px 0;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  filter: drop-shadow(0 0 0.75rem #1b1b1b);
  z-index: 3;
}

.preview_infos h3 {
  font-size: var(--fs-inter);
  text-transform: uppercase;
}

.preview_infos p {
  font-family: "SG25_light";
  bottom: 0;
  font-size: var(--fs-small);
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.preview img {
  filter: grayscale(100%) brightness(100%) contrast(104%);
  z-index: 0;
}

#palette {
  min-height: 100%;
  padding: 12% 10%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}


#palette .rounded_button
{
  text-transform: uppercase;
}

#palette #container_bloc {
display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Espacement entre les blocs */
}

#container_bloc a {
  display: flex; /* Utiliser flex pour aligner la hauteur */
  width: 300px; /* Même largeur que .bloc */
  text-decoration: none; /* Supprimer le soulignement par défaut */
}

#palette .bloc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 300px; /* Largeur fixe pour la grille */
  padding: 20px;
  background-color: #272727;
  border-radius: 50px;
  color: #fff;
  /* Pas de min-height pour s’adapter au plus grand */
}

/* ==========================================================================
   Section Projet
   ========================================================================== */

.projet {
  background-color: #1b1b1b;
  min-height: 100%;
  padding: 14% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

#galerie {
  background-color: #1b1b1b;
  min-height: 100%;
  padding: 14% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}


#galerie p {
  font-family: "SG20_light";
  bottom: 0;
  font-size: var(--fs-small);
  color: #fff;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.projet h2 {
  pointer-events: none;
  text-transform: uppercase;
  text-decoration: none;
}

.projet h3 {
  color: #DF3514;
  pointer-events: none;
  font-size: var(--fs-inter);
  text-transform: uppercase;
}

.projet p {
  font-family: "SG20_light";
  bottom: 0;
  font-size: var(--fs-small);
  color: #fff;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.projet p a {
  pointer-events: all;
  text-decoration: underline;
}

.projet .rounded_button {
  max-width: 100px;
  pointer-events: visible;
  text-decoration: none;
}

.infos_projets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.project-navigation a{
  padding: 0;
  width: fit-content;
}

.project-navigation .rounded_button {
  background-color: #ffffff; /* Blanc */
  color: #1b1b1b; /* Texte noir pour contraste */
  border: 1px solid #ffffff;
  padding: 1% 10%;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-transform: uppercase;
}

.project-navigation .rounded_button:hover {
  transform: scale(1.05);
  background-color: #e0e0e0; /* Légère variation au survol */
}

/* ==========================================================================
   Mentions légales
   ========================================================================== */

#mentions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 10% 10%;
  color: #fff;
}

#mentions h3 {
  font-size: var(--fs-inter);
}

#mentions p {
  font-family: "SG20_light";
}

/* ==========================================================================
   Overlay de transition
   ========================================================================== */

.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0; /* Part de 0 et passe à 100vh */
  background-color: #DF3514;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: height 0.5s ease, opacity 0.3s ease;
}

.transition-overlay.active {
  height: 100vh;
  opacity: 1;
}

.transition-overlay.leaving {
  height: 0;
  opacity: 0;
}

.transition-logo {
  max-width: 200px; /* Ajuste selon la taille de ton logo */
  max-height: 200px; /* Limite la taille */
  object-fit: contain; /* Garde les proportions */
  color: #DF3514;
  /* Alternative : background-color: #FF341E si c’est un SVG ou texte */
}

/* ==========================================================================
   Options supplémentaires
   ========================================================================== */

.more-options {
  margin-left: 5px; /* Espacement avec le lien */
  cursor: pointer;
  font-size: 1.2em; /* Taille ajustable */
  color: #1b1b1b; /* Couleur assortie, ajuste selon ton design */
  transition: color 0.3s ease;
}

.more-options:hover {
  color: #FF341E; /* Effet au survol */
}

/* ==========================================================================
   Conteneur vidéo
   ========================================================================== */

.video-container {
  position: relative;
  width: 100%;
  max-width: 40vw; /* Base pour écrans moyens (~1376px sur 3440px) */
  max-height: 35vh; /* Base pour écrans moyens (~504px sur 1440px) */
  margin: 20px auto; /* Centrer horizontalement */
  overflow: hidden; /* Éviter tout débordement */
}

.video-container.horizontal {
  padding-bottom: 28.125%; /* 16:9 réduit */
}

.video-container.vertical {
  padding-bottom: 88.89%; /* 9:16 réduit */
  max-width: 22.5vw; /* Base (~774px sur 3440px) */
  max-height: 32.5vh; /* Base (~468px sur 1440px) */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px; /* Style arrondi cool */
}

.projet_box
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 3%;
  padding-bottom: 2%;
}

.projet_gallery
{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.doc_image
{
  width: 20%;
  margin: 1%;
  transition: 100ms;
}

.doc_image:hover {
    transform: scale(1.05); /* Effet au survol */
    transition: 100ms;
}

/* Visionneuse */
.viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.viewer img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    margin: 20px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 40px;
    padding: 10px;
    cursor: pointer;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.download-btn {
    position: absolute;
    bottom: 20px;
    background: #262626; /* Couleur inspirée de Sileance */
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: Arial, sans-serif; /* Adaptez à votre police */
}

.download-btn:hover {
    background: #444;
}

#haut_bas {
    position: fixed;
    bottom: 5%;
}

.doc_image_placeholder {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Ratio carré (1:1), ajustez si nécessaire */
    background: #eee; /* Fond gris pour les placeholders */
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
}

.doc_image_placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* Caché jusqu'à chargement */
}

.doc_image_placeholder img.loaded {
    display: block; /* Affiché une fois chargé */
}

.doc_image_placeholder:hover {
    transform: scale(1.05);
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 20px 0;
    display: flex; /* Utiliser flexbox pour un meilleur contrôle */
    flex-wrap: wrap; /* Permettre le passage à la ligne */
    justify-content: center; /* Centrer les éléments */
    gap: 10px; /* Espacement entre les liens */
    align-items: center; /* Aligner verticalement */
}

.pagination a.pagination-link {
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    background: #262626;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    display: inline-block;
    min-width: 40px; /* Largeur minimale pour uniformité */
    text-align: center;
    line-height: 1.5; /* Améliorer la lisibilité */
    transition: 0.3s;
}

.pagination a.pagination-link:hover {
    background: #444;
}


.pagination a.active {
    background: #444;
    font-weight: bold;
}

.pagination .pagination-ellipsis {
    color: #fff;
    padding: 10px 15px;
    margin: 0 5px;
    display: inline-block;
    line-height: 1.5;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

/* Media query pour petits écrans (mobile, < 768px) */
@media (max-width: 768px) {
  .video-container {
    max-width: 60vw; /* ~460px sur 768px */
    max-height: 60vh; /* ~460px sur 768px, +50% par rapport à 40vh */
  }
  .video-container.vertical {
    max-width: 45vw; /* ~345px sur 768px */
    max-height: 65vh; /* ~500px sur 768px, +62% par rapport à 40vh */
  }
}

/* Media query pour écrans < 500px et hauteur < 1000px */
@media (max-width: 500px) and (max-height: 1000px) {
  #hero {
    padding: 20% 0;
  }
}

/* Media query pour écrans < 1030px */
@media (max-width: 1030px) {
  #hero {
    padding: 4% 0;
  }
  .video-container {
    max-width: 55vw; /* ~563px sur 1024px */
    min-height: 40vh;
    max-height: 65vh; /* ~500px sur 768px, +44% par rapport à 45vh */
  }
  .video-container.vertical {
    max-width: 30vw;
    min-height: 40vh; /* ~307px sur 1024px */
    max-height: 70vh; /* ~538px sur 768px, +56% par rapport à 45vh */
  }

  #nav_bar ul {
    display: flex;
    flex-direction: row; /* Garder horizontal pour le lien actif */
    justify-content: center;
    align-items: center;
  }

  #nav_bar li {
    display: none; /* Cacher tous les liens */
  }

  #nav_bar li:has(.active) {
    display: flex; /* Afficher uniquement le lien actif */
  }

  #nav_bar .rounded_button {
    cursor: pointer; /* Indiquer que le lien actif est cliquable */
  }

  #container_bloc {
    flex-direction: column;
  }

  #container_infos {
    flex-direction: column;
  }

  #footer {
    padding: 10% 0;
  }

  #social {
    flex-direction: column;
  }

  #mentions {
    padding: 20% 10%;
  }

  .projet {
    padding: 24% 10%;
  }

  .project-navigation .rounded_button {
  padding: 1% 22%;
  }
  
  .doc_image
  {
    width: 48%;
    margin: 1%;
  }

    .projet_gallery
  {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

/* Media query pour écrans ultrawide (3440x1440, ratio ~21:9) */
@media (min-aspect-ratio: 21/9) {
  .video-container {
    max-width: 32.5vw; /* ~1118px sur 3440px */
    max-height: 27.5vh; /* ~396px sur 1440px */
  }
  .video-container.vertical {
    max-width: 17.5vw; /* ~602px sur 3440px */
    max-height: 30vh; /* ~432px sur 1440px */
  }
}

/* ==========================================================================
   Boutons arrondis (Rounded Buttons)
   ========================================================================== */

/* Style de base pour les boutons arrondis */
.rounded_button {
  display: flex;              /* Utiliser flex pour alignement */
  align-items: center;        /* Centrer verticalement */
  justify-content: center;    /* Centrer horizontalement */
  padding: 8px 16px;          /* Padding fixe */
  background: #272727;        /* Fond gris foncé */
  border: 1px solid #ffffff;  /* Bordure blanche */
  border-radius: 50px;        /* Coins arrondis */
  font-family: "SG25_light";
  color: #fff;
  text-decoration: none;
  font-size: var(--fs-small);
  white-space: nowrap;        /* Pas de retour à la ligne */
  text-align: center;
  transition: 0.5s ease-in;   /* Transition douce */
}

/* États du bouton arrondi */
.rounded_button.active {
  background-color: #fff;
  color: #1b1b1b;
}

.rounded_button:hover:not(.active) {
  background-color: #fff;
  color: #1b1b1b;
  transition: 0.2s ease-in;
}