


body {
  background-color: rgb(61,66,81);
  color: #fff;
}


header {
  background-image: url("fond.jpg");
  padding: 50px;
}




nav ul {
list-style: none; 
}

nav li  { 
      width:20%;
      text-transform: uppercase;
      text-align:center;
      list-style-type: none;
	  float:left ; 
}
nav a:hover {
	background-color: #D11B16;
}
nav a {
      text-decoration:none;
	  color:white;
}

/* Barre de recherche */
.search-li {
  margin-left: auto; /* pousse la recherche à droite */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.search-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 25px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  width: 250px;
}

.search-container input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  outline: none;
}

.search-btn {
  background: #e10600;
  border: none;
  color: white;
  padding: 6px 10px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.search-btn:hover {
  background: #b20500;
}

/* Styles des cartes */
.hall-of-fame {
  max-width: 1400px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  position: relative;
  transition: 0.3s ease;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 200px; /* Taille fixe pour les images */
  object-fit: cover; /* Pour ne pas déformer les images */
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e10600;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.info {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column; /* Pour empiler les éléments */
  justify-content: flex-start; /* On s'assure que tout commence en haut */
}

.info h2 {
  margin-bottom: 10px; /* Ajout d'un petit espacement */
  font-size: 1.3rem;
  font-weight: bold;
}

.stats {
  color: #ffb3b3;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.palmares {
  font-size: 0.85rem;
  color: #ccc;
}
.hof-title {
  text-align: center;
  margin-top: 40px;
  font-size: 3rem;
  background: linear-gradient(90deg, #e10600, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hof-search {
  display: flex;
  justify-content: center;
  margin: 20px 0 40px;
}

