body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
}

.header img {
  height: 60px;
}

.search-bar {
  flex: 1;
  text-align: center;
}

.search-bar input {
  width: 60%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 50px;
}

.search-btn {
  background: #e91683;
  border: none;
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.search-btn:hover {
  background: #ff4fa0;
}

/* CATEGORIES */
.categories {
  text-align: center;
  padding: 15px;
}

.categories button {
  background: #e91683;
  border: none;
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.categories button:hover {
  background: #ff4fa0;
}

/* INTRO */
.intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}

.intro-left h1 span {
  color: #e91683;
}

.intro-left .green {
  color: #0cc20c;
  font-weight: bold;
}

.cta {
  background: #e91683;
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  margin: 15px 0;
  transition: 0.3s;
}

.cta:hover {
  background: #ff4fa0;
}

/* BANNIÈRE */
.banner-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.banner-container img {
  width: 90%;
  max-width: 1200px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner-container img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

/* ACTIONS */
.actions {
  text-align: center;
  margin: 40px 0;
}
.actions button {
  background: #e91683;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.actions button.green {
  background: #12c912;
}
.actions button:hover {
  opacity: 0.85;
}

/* PARTENAIRES */
.partners {
  text-align: center;
  margin: 50px 0;
}
.partners img {
  height: 50px;
  margin: 0 20px;
}

/* ANNONCES */
.ads {
  text-align: center;
  margin: 50px 0;
}
.ad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 40px;
}
.ad img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.ad img:hover {
  transform: scale(1.03);
}

/* FOOTER */
footer {
  background: #f8f8f8;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}
footer a {
  color: #000;
  text-decoration: none;
  margin: 0 5px;
}
footer a:hover {
  color: #e91683;
}
Écrire à Marc Thomas

