<!DOCTYPE html>
<html lang="fr">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Scrabout'Cha - Accueil</title>
  <style>
    body { font-family: 'Arial', sans-serif; background: #f8f8f8; color: #333; margin: 0; padding: 0; }
    header { background-color: #7A8450; color: white; padding: 40px 20px; text-align: center; }
    header h1 { font-size: 2.5em; margin-bottom: 10px; }
    section { padding: 40px 20px; max-width: 800px; margin: auto; }
    .cta-button { background: #7A8450; color: white; padding: 15px 25px; border: none; font-size: 1em; cursor: pointer; border-radius: 5px; text-decoration: none; display: inline-block; margin-top: 20px; }
    .highlight { background: #f0eee9; border-left: 4px solid #7A8450; padding: 15px; margin: 20px 0; }
    .image-container img { width: 100%; max-width: 500px; display: block; margin: 20px auto; border-radius: 10px; }
  </style>
</head>
<body>
  <header>
    <h1>Bienvenue chez Scrabout’Cha 🍪</h1>
    <p>Des cookies géants pensés pour être partagés</p>
  </header>

  <section>
    <p>Chaque bouchée est une attention. Chaque box, un moment à offrir. À savourer au bureau, à partager entre collègues, ou juste pour le plaisir !</p>

    <div class="image-container">
      <img src="box-image.jpg" alt="Box Scrabout'Cha">
    </div>

    <a href="/nos-produits" class="cta-button">Découvrir nos produits</a>
  </section>

  <section>
    <h2>Pourquoi Scrabout’Cha ?</h2>
    <ul>
      <li>✅ Parce que le partage rend chaque cookie inoubliable</li>
      <li>✅ Parce que c’est bon, beau, et prêt à offrir</li>
      <li>✅ Parce que tu n’as pas besoin de cuisiner pour faire plaisir !</li>
    </ul>
  </section>

  <section class="highlight">
    <h2>Envie d’adoucir la journée de quelqu’un ?</h2>
    <p>Commande une Box Scrabout’Cha avec un mot personnalisé et une surprise à croquer !</p>
    <a href="/commander" class="cta-button">Commander une Box</a>
  </section>
</body>
</html>