/* *,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color: #fff;
  --primary-color: #ccc;
  --secondary-color:#888888  ;
  --link-color: rgb(0, 122, 156);
  --hover-color: rgb(33, 53, 52);
  --border-color: #ccc;
  --background-color: rgba(29, 32, 47, 1);
  --accent-color: transparent;
  --highlight-color: rgba(248, 248, 121, 0.6);
  --text-color:;
  --error-color:;
  --warning-color:;
  --success-color:;*/
  /*--background-color-light:;
}
html,
body {
  background-color: var(--background-color) !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--link-color) !important;
}

nav {
  background-color: var(--background-color) !important;
}
.primary_color {
  color: var(--primary-color) !important;
}
.secondary_color {
  color: var(--secondary-color) !important;
}
.link_color {
  color: var(--link-color) !important;
}

a {
  color: var(--link-color) !important;
}
a:hover {
  color: var(--secondary-color) !important;
}
a {
  color: var(--link-color) !important;
} */
/* Background principal en bleu Miami nuit */
/* Background principal en bleu */
body {
  background-color: #9C161E; /* Bleu optimisé */
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
  );
  /* background-blend-mode: overlay; */
  color: #D3D3D3; /* Blanc-gris pour le texte */

}

/* Exemple de conteneur avec une ombre portée pour ajouter de la profondeur */
.container {
  background: rgba(255, 255, 255, 0.1); /* Couleur de fond semi-transparente */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Ombre portée */
  color: #D3D3D3; /* Blanc-gris pour le texte */
}

/* Exemple de texte avec un léger reflet */
h1, h2, h3, h4, h5, h6 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);  
  color:#fff;

}

/* Exemple de bouton avec effet brillant */
button {
  background-color: #9C161E;

  color: #D3D3D3; /* Blanc-gris pour le texte */

  transition: background-color 0.3s, box-shadow 0.3s;
  border-radius: 5px;
}

button:hover {
  background-color: #9C161E;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Effet brillant sur hover */
}
