@charset "utf-8";
/* CSS Document */

body {
  font-family: Verdana, Arial, sans-serif;
  background: transparent; /* laisse apparaître ton fond */
  color: #000; /* TEXTE NOIR */
}

/* En-tête */
.entete {
  background: rgba(142, 8, 10, 0.85); /* rouge légèrement transparent */
  color: white;
  text-align: center; 
  padding: 30px 15px;
}

.entete h1 {
  font-size: 24px;
  margin-bottom: 8px;
  
}

.entete p {
  font-size: 14px;
  opacity: 0.9;
}

/* Grille de vignettes */
.grille {
  max-width: 1500px;
  margin: 40px auto; /* plus centré */
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 220px));
  gap: 30px;
  justify-content: center;   /* ⭐ CENTRE LES VIGNETTES */  
}

/* Carte */
.carte {
  background: rgba(255, 255, 255, 0.6); /* TRANSPARENCE */
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  overflow: hidden;

  box-shadow: 0 4px 40px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.carte h2 {
  font-size: 16px;
  color: #8e080a;   /* rouge conservé */
  margin-bottom: 6px;
  text-align: center; /* centré */
}


.carte p {
  font-size: 13px;
  margin-bottom: 10px;
  text-align: center; /* Centré */
}

/* Effet hover */
.carte:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Pied de page */
.pied {
  text-align: left; /* LEFT */
  padding: 20px;
  font-size: 12px;
  color: #000;
}

/* Liens */
.liens {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;   /* uniquement les saisons à gauche */
}

.liens a {
  display: block;
  font-size: 13px;
  text-decoration: none;
  color: #000;
  padding: 6px 0 6px 12px;  /* ← RETRAIT ÉLÉGANT */
  
  transition: background 0.2s, padding-left 0.2s;
}

.liens a:hover {
  background: rgba(142, 8, 10, 0.08);
  padding-left: 16px;  /* léger mouvement au survol */
}


.liens a {
  display: block;
  font-size: 13px;
  text-decoration: none;
  color: #000;
  padding: 5px 8px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.liens a:hover {
  background: rgba(0,0,0,0.08);
}
