body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  background-color: #faf8f3;
  color: #2e2e2e;
}
.navbar {
  background-color: #fff;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.navbar a {
  color: #4a4a4a;
  margin: 0 1em;
  text-decoration: none;
}
footer {
  text-align: center;
  padding: 2em 0;
  background-color: #eee;
  margin-top: 2em;
}
.hero {
  text-align: center;
  padding: 5em 2em;
  background-size: cover;
  background-position: center;
  color: white;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  padding: 2em;
}
.card {
  background-color: white;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s;
}
.card:hover {
  transform: scale(1.03);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card h3 {
  margin: 1em;
}
.card p {
  margin: 0 1em 1em 1em;
  color: #555;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1em;
  padding: 2em;
}
.gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
@media (max-width: 600px) {
  h3.responsive-price {
    font-size: 1.4em !important;
    line-height: 1.3em !important;
    white-space: nowrap !important; /* empêche la coupure */
  }
}
