<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
*{}
 /* =========================
   VARIABLES & STYLES DE BASE
   ========================= */
:root {
  --bleu-fonce: #003366;
  --bleu-clair: #1e88e5;
  --gris-fond: #f5f7fa;
  --gris-texte: #444;
  --blanc: #ffffff;
  --vert-prix: #2e7d32;
  --arrondi: 12px;
  --ombre: rgba(0, 0, 0, 0.15);
  --transition: 0.3s ease;
}

body {
  font-family: "Segoe UI", "Roboto", sans-serif;
  margin: 0;
  background: #bfbbbb;
  color: var(--gris-texte);
  line-height: 1.6;
}

/* =========================
   HEADER & IMAGES RECTANGULAIRES
   ========================= */
header {
  background: #2176cb;
  color: var(--blanc);
  text-align: center;
  padding: 40px 20px;
  position: relative;
  box-shadow: 0 3px 10px var(--ombre);
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.side-photo {
  width: 500px;
  height: 120px;
  object-fit: cover;
  border: 3px solid var(--blanc);
  border-radius: var(--arrondi);
  box-shadow: 0 2px 6px rgba(255,255,255,0.4);
}

header h2 {
  font-size: 1.8em;
  margin-top: 10px;
  font-weight: bold;
  font-family: poppins ;
}

/* =========================
   ZONE DE TEXTE EN CASCADE
   ========================= */
main {
  max-width: 1100px;
  margin: 40px 80px;
  padding: 0 20px;
}

.membre {
  margin: 20px 0;
  padding: 15px;
  border-left: 5px solid var(--bleu-clair);
  background: var(--blanc);
  box-shadow: 0 2px 8px var(--ombre);
  border-radius: var(--arrondi);
  transition: transform var(--transition);
}

.membre:hover {
  transform: translateX(8px);
}

.membre strong {
  font-size: 1.05em;
  color: var(--bleu-fonce);
}

.membre a {
  text-decoration: none;
  color: #003366;
}

.cascade-1 { margin-left: 0; }
.cascade-2 { margin-left: 40px; }
.cascade-3 { margin-left: 170px; }
.cascade-4 { margin-left: 170px; }
.cascade-5 { margin-left: 170px; }

/* =========================
   CATALOGUE DES PRODUITS
   ========================= */
.catalogue {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
}

.produit {
  background: #bfbbbb;
  border-radius: var(--arrondi);
 /* box-shadow: 0 4px 10px var(--ombre);*/
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  padding-bottom: 15px;
}

.produit:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.produit img {
  width: 20%;
  height: 100px;
  object-fit: cover;
  border: 3px solid var(--blanc);
}

.produit h2 {
  color: var(--bleu-fonce);
  font-size: 1.3em;
  margin: 15px 0 5px;
}

.prix {
  color: var(--vert-prix);
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.description {
  font-size: 0.95em;
  color: var(--gris-texte);
  padding: 0 10px;
}
.Retour{
  color: #0c0a0a;
  font-size: larger;
  text-align: left;
  font-weight: bold;
}
/* =========================
   FOOTER
   ========================= */
footer {
   text-align: center;
      padding: 20px;
      background: #003366;
      color: white;
      margin-top: 40px;
}