/* === Reset basique === */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0D0D0D; /* noir mat streetwear */
  color: #F5F5DC;           /* beige clair */
}

/* === Header === */
header {
  text-align: center;
  padding: 1rem 0;
  background: #111;
  color: #F5F5DC;
}

header nav a {
  color: #F4D35E; /* jaune doré rétro */
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

header nav a:hover {
  color: #D7263D; /* rouge japonais */
}

/* === Logo === */
.logo {
  width: 120px;
  margin: 0 auto 1rem;
  display: block;
}

/* === Hero === */
.hero {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #2E2E2E; /* gris anthracite */
  border-radius: 8px;
  margin: 1rem auto;
  max-width: 1200px;
}

.hero h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #D7263D; /* rouge japonais */
}

.hero p {
  margin: 0.5rem 0 1rem;
  font-size: 1rem;
  color: #F5F5DC;
}

/* === Boutons === */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #D7263D; /* rouge japonais */
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background: #F4D35E; /* jaune doré rétro */
  color: #111;
}

/* === Présentation === */
.presentation {
  background: #2E2E2E;
  border-radius: 8px;
  text-align: center;
  margin: 1rem auto;
  max-width: 1200px;
}

.presentation h2 {
  color: #D7263D;
}

/* === Produits === */
.produits {
  background: #2E2E2E;
  border-radius: 8px;
  margin: 1rem auto;
  max-width: 1200px;
}

.produits h2 {
  color: #D7263D;
  text-align: center;
  margin-bottom: 1.5rem;
}

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

.produit {
  text-align: center;
  max-width: 220px;
}

.produit img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 5px;
  display: block;
  margin: 0 auto 1rem;
  border: 2px solid #F4D35E; /* touche dorée rétro */
}

.produit h3 {
  color: #F4D35E;
}

/* === Politique === */
.politique-preview {
  background: #2E2E2E;
  border-radius: 8px;
  text-align: center;
  margin: 1rem auto;
  max-width: 1200px;
}

.politique-preview h3 {
  color: #D7263D;
}

/* === Footer === */
footer {
  background: #111;
  color: #F5F5DC;
  text-align: center;
  padding: 0.8rem;
}
