/* TYPOGRAPHIE GÉNÉRALE */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: #111;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.7;
  font-size: 16px;
}

/* TITRE PRINCIPAL - aligné à gauche */
.page-presentation h1 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left; /* Retour à la position initiale */
}

/* SLIDER PRINCIPAL */
.slider {
  width: 100%;
  max-width: 900px;
  height: 500px;
  overflow: hidden;
  margin: 2rem auto;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slides {
  display: flex;
  width: 600%; /* 6 images */
  height: 100%;
  animation: slide 30s infinite;
}

.slides img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
}

/* Animation slider principal (6 images) */
@keyframes slide {
  0%, 13%    { transform: translateX(0%); }
  16%, 29%   { transform: translateX(-100%); }
  32%, 45%   { transform: translateX(-200%); }
  48%, 61%   { transform: translateX(-300%); }
  64%, 77%   { transform: translateX(-400%); }
  80%, 93%   { transform: translateX(-500%); }
  100%       { transform: translateX(0%); }
}

/* Responsive slider principal */
@media (max-width: 800px) {
  .slider {
    height: 350px;
  }
  .slides img {
    max-height: 350px;
  }
}

@media (max-width: 500px) {
  .slider {
    height: 220px;
  }
  .slides img {
    max-height: 220px;
  }
}

/* NAVIGATION */
.page-presentation nav ul {
  list-style: none;
  padding-left: 0;
  margin: 4rem 0; /* Espace entre le slider et la nav */
  display: flex;
  justify-content: center;
  gap: 4rem; /* Espace entre les liens */
}

.page-presentation nav a {
  text-decoration: none;
  color: inherit;
  font-weight: 400;
  transition: color 0.3s ease;
}

.page-presentation nav a:hover {
  color: #888;
}

/* LISTE DES EXPOSITIONS */
.liste-expos {
  list-style: none;       /* Supprime les puces */
  padding-left: 0;        /* Supprime l'indentation par défaut */
  margin: 0;              /* Supprime le margin par défaut */
}

.liste-expos li {
  margin-bottom: 0.8rem;  /* Espace entre les éléments de la liste */
}

.liste-expos a {
  text-decoration: none;  /* Supprime le soulignement */
  color: #000;            /* Couleur du texte */
  font-weight: 500;       /* Texte légèrement plus épais */
  transition: color 0.3s ease;
}

.liste-expos a:hover {
  color: #555;            /* Change la couleur au survol */
}

/* Liste Works */
.works-list {
  list-style: none; /* Enlève les puces */
  padding-left: 0;
  margin: 2rem 0;
}

.works-list li {
  margin-bottom: 1rem;
}

.works-list a {
  color: #000;               /* Texte noir */
  text-decoration: none;     /* Pas de soulignement */
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.works-list li a {
  font-style: italic;
}
.works-list a:hover {
  color: #555;               /* Changement de couleur au survol */
}


/* Galerie d'images */
.works-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.works-gallery figure {
  text-align: center;
}

.works-gallery img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.works-gallery img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.works-gallery figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

/* --- Styles pour les pages projet --- */
.page-projet {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}
.projet-image img {
  max-width: 50% !important;
}


.projet-description {
  font-size: 1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.back-link {
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  border: 1px solid #000;
  padding: 8px 15px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.back-link:hover {
  background: #000;
  color: #fff;
}








