body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #000;
  color: rgba(255, 255, 255, 0.4);
  font-family: Arial, Helvetica, sans-serif, sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  position: sticky;
  top: 0;
  background-color: #000;
  z-index: 100;
}

.header-center {
  .header-center svg {
    display: block;
    width: 24px; /* taille du cœur */
    height: 24px;
  }
}

header .brand p {
  margin: 0;
  font-weight: bold;
}

.logo {
  margin: 0;
  font-weight: bold;
  color: #747474;
}

header .sub {
  margin-top: 5px; /* ou la valeur que tu veux */
  font-size: 14px;
  color: #747474;
}

.name {
  font-size: 22px;
  margin: 0;
}

.sub {
  font-size: 14px;
  font-weight: bold;
  margin-top: 0px;
}

.menu {
  display: flex;
  gap: 10px;
  font-size: 1em;
  color: #747474;
}

.grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* 8 colonnes fixes */
  gap: 10px; /* petit espace entre les images */
  padding: 10px;
}

/* Responsive : tablette */
@media (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes sur écran moyen */
  }
}

/* Responsive : mobile */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr; /* 1 colonne sur petit écran */
  }
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 30px;
}

.project-images {
  grid-column: span 2;
}

.project-text {
  grid-column: span 1;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-images,
  .project-text {
    grid-column: span 1;
  }
  .project-text {
    position: static;
  }
}

.item {
  display: flex;
  flex-direction: column;
}

.thumb {
  width: 100%;
  aspect-ratio: 1.4;
  background-size: cover;
  background-position: center;
  background-color: #282525;
  border-radius: 4px;
}

.meta {
  font-weight: bold;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 10px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  text-align: top;
}

.meta span {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400; /* similaire à Instagram, léger mais lisible */
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  line-height: 1.2;
}

.project-text {
  grid-column: span 1;
  position: sticky;
  top: 100px;
  align-self: start;
}

.project-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

h3 {
  font-size: 1em;
}

header .logo,
header a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease; /* pour le hover fluide */
}

header .logo:hover,
header a:hover {
  /* Fallback : texte gris si le gradient n’est pas supporté */
  color: rgba(255, 255, 255, 0.4);

  /* Dégradé Instagram */
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: all 0.3s ease;
}
