:root {
  --primary: #00cba9;
  --dark: #222;
  --light: #f9f9f9;
  --text: #333;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background-color: var(--dark);
  padding: 1rem 0;
  color: white;
}

header h1 {
  margin: 0;
  display: inline-block;
}

header nav {
  float: right;
}

header nav a {
  color: var(--primary);
  margin-left: 1rem;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url('https://m.media-amazon.com/images/I/81UG0zNwZ5S._AC_SX679_.jpg') no-repeat center center/cover;
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
}

.btn {
  background-color: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1rem;
}

.produits h2, .contact h2 {
  
 url('https://m.media-amazon.com/images/I/81UG0zNwZ5S._AC_SX679_.jpg') ;
  text-align: center;
  margin-top: 2rem;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.carte {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  padding: 1rem;
  width: 300px;
  text-align: center;
  transition: transform 0.2s;
}

.carte:hover {
  transform: scale(1.03);
}

.carte img {
 
  width: 100%;
  border-radius: 10px;
}

.contact {
  text-align: center;
  margin-top: 4rem;
}

footer {
  background-color: var(--dark);
  color: white;
  padding: 1rem 0;
  text-align: center;
  margin-top: 3rem;
}
