body {
  background-color: #ffffff;
  font-family: 'Garamond', serif;
  color: #0a0a0a;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  font-size: 2.5em;
  padding-bottom: 10px;
}

.galerie {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.galerie a img {
  width: 300px;
  height: auto;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.galerie a img:hover {
  transform: scale(1.05);
}

#map {
  height: 400px;
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  border: 2px solid #ccc;
  border-radius: 8px;
}


.retour {
  text-align: center;
  margin-top: 30px;
}

.retour a {
  color: #3e2f1c;
  text-decoration: none;
  font-weight: bold;
}

.intro {
  font-size: 1.2em;
  margin: 20px;
  color: #444;
  text-align: center;
}

.lieu-image {
  width: 300px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.lieu-image:hover {
  transform: scale(1.03);
}

.oeuvre {
  width: 100px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.oeuvre:hover {
  transform: scale(1.0);
}

