.header {
  margin-top: 18rem; /* Donne un peu d'air en haut de page */
  margin-bottom: 18rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 4px; /* Optionnel : pour des coins arrondis */
}

/* Espacement de la grille */
.project-grid {
  margin-top: 2rem;
}

.project-box {
  margin-bottom: 20px; /* Espace entre les lignes sur mobile */
}

/* La boîte carrée */
.project-content {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Ratio 1:1 (Carré) */
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f4f4f4; /* Couleur de fond si l'image charge mal */
}

/* L'effet de survol (Overlay) */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Fond noir transparent */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-content:hover .project-overlay {
  opacity: 1;
}

.project-title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
