body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f1ea;
  color: #111;
  text-align: center;
}

header {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
}

header h1 {
  font-size: 36px;
  letter-spacing: 2px;
}

header p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background-color: #c9a24d;
  color: #111;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

section {
  padding: 50px 20px;
}

h2 {
  color: #111;
  margin-bottom: 20px;
}
h3 {
  color: #c9a24d;
}

strong {
  font-size: 18px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 10px 0;
}
input, textarea {
  width: 90%;
  max-width: 400px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}

footer {
  background-color: #111;
  color: #fff;
  padding: 20px;
  font-size: 14px;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery img {
  width: 250px;
  border-radius: 15px;
}
img {
  border-radius: 15px;
  margin: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.produit {
  border: 1px solid #ddd;
  padding: 15px;
  margin: 15px;
  text-align: center;
  border-radius: 10px;
}

.produit img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
}

.prix {
  font-weight: bold;
  color: green;
  font-size: 18px;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header, section {
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  font-family: 'Poppins', sans-serif;
}

section, header {
  animation: fadeUp 1s ease forwards;
}

.btn {
  background: linear-gradient(135deg, #c9a24d, #f1d27a);
  color: #111;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}