Scrabout’Cha Accueil

<!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>
  <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap" rel="stylesheet">
  <style>
    body {
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f6f0;
      color: #3a3a3a;
    }
    header, footer {
      background: linear-gradient(90deg, #7a8450, #9cab6e);
      color: white;
      padding: 20px 0;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    nav {
      display: flex;
      justify-content: center;
      gap: 30px;
      padding: 12px;
      background: #efe8dd;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    nav a {
      text-decoration: none;
      color: #3a3a3a;
      font-weight: 600;
      transition: color 0.3s;
    }
    nav a:hover {
      color: #7a8450;
    }
    .hero-slogan {
      text-align: center;
      padding: 80px 20px 40px;
    }
    .hero-slogan h1 {
      font-size: 3em;
      font-weight: 700;
    }
    .cta-sections {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 40px 20px 80px;
    }
    .cta-box {
      width: 420px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      position: relative;
    }
    .cta-box img {
      width: 100%;
      height: auto;
      display: block;
    }
    .cta-label {
      position: absolute;
      bottom: 60px;
      left: 20px;
      background: rgba(255,255,255,0.85);
      font-weight: 700;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 1.5em;
    }
    .cta-button {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: #7a8450;
      color: white;
      border: none;
      padding: 10px 18px;
      font-weight: 600;
      border-radius: 20px;
      cursor: pointer;
      text-decoration: none;
    }
    footer {
      padding: 20px;
      font-size: 0.9em;
    }
  </style>
</head>
<body>
  <header>
    <h1>Scrabout'Cha</h1>
  </header>

  <nav>
    <a href="#">Accueil</a>
    <a href="#">À propos</a>
    <a href="#">Nos offres</a>
    <a href="#">Contact</a>
  </nav>

  <section class="hero-slogan">
    <h1>NE MANGE JAMAIS CE COOKIE SEUL</h1>
  </section>

  <section class="cta-sections">
    <div class="cta-box">
      <img src="box-partage.jpg" alt="Box à partager">
      <div class="cta-label">Box à partager</div>
      <a href="#" class="cta-button">Je commande pour un collègue</a>
    </div>
    <div class="cta-box">
      <img src="box-perso.jpg" alt="Box plaisir">
      <div class="cta-label">Box plaisir</div>
      <a href="#" class="cta-button">Je commande pour moi</a>
    </div>
  </section>

  <footer>
    <p>&copy; 2025 Scrabout'Cha. Tous droits réservés.</p>
  </footer>
</body>
</html>

Laisser un commentaire