Blog

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Heart Left Open</title>
  <style>
    /* Brand Colors */
    :root {
      --purple: #8C6BB1;
      --rose: #E7BCC9;
      --charcoal: #2D2D2D;
    }
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      color: var(--charcoal);
      background-color: #fff;
      line-height: 1.6;
    }
    header {
      background: var(--purple);
      color: white;
      padding: 50px 20px;
      text-align: center;
    }
    header h1 {
      margin: 0;
      font-size: 2.5rem;
    }
    header p {
      font-size: 1.2rem;
    }
    .btn {
      background: var(--rose);
      color: var(--charcoal);
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 25px;
      font-weight: bold;
      display: inline-block;
      margin-top: 15px;
    }
    section {
      padding: 50px 20px;
      max-width: 1100px;
      margin: auto;
    }
    h2 {
      color: var(--purple);
      text-align: center;
      margin-bottom: 30px;
    }
    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .product-card {
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
    }
    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
    }
    .coming-soon {
      background: var(--rose);
      color: white;
      padding: 5px;
      display: inline-block;
      margin-bottom: 10px;
      border-radius: 5px;
      font-size: 0.9rem;
    }
    footer {
      background: var(--charcoal);
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
    }
    footer a {
      color: var(--rose);
      text-decoration: none;
      margin: 0 5px;
    }
    @media (max-width: 600px) {
      header h1 {
        font-size: 1.8rem;
      }
    }
  </style>
</head>
<body>

  <!-- Hero Section -->
  <header>
    <h1>Heart Left Open</h1>
    <p>Walking with you through grief, healing, and hope.</p>
    <a href="https://your-systemeio-link.com" class="btn">Start Your Journey</a>
  </header>

  <!-- About Section -->
  <section>
    <h2>About Heart Left Open</h2>
    <p>Heart Left Open is dedicated to helping those in grief find practical, meaningful steps toward healing. Through books, tools, and heartfelt resources, we provide support for your unique journey without relying on quick fixes or empty rituals.</p>
  </section>

  <!-- Products Section -->
  <section>
    <h2>Our Products</h2>
    <div class="products">
      <div class="product-card">
        <span class="coming-soon">Coming Soon</span>
        <img src="https://via.placeholder.com/300x200" alt="Book">
        <h3>Grief Healing Journal</h3>
        <p>A 52-week guided workbook to help you process and heal.</p>
      </div>
      <div class="product-card">
        <img src="https://via.placeholder.com/300x200" alt="Affirmation Cards">
        <h3>Affirmation Card Set</h3>
        <p>Daily encouragement cards to keep hope in sight.</p>
        <a href="https://your-systemeio-link.com" class="btn">Buy Now</a>
      </div>
      <div class="product-card">
        <span class="coming-soon">Coming Soon</span>
        <img src="https://via.placeholder.com/300x200" alt="Apparel">
        <h3>Heart Left Open Apparel</h3>
        <p>Wear your story. Gentle reminders of strength and love.</p>
      </div>
    </div>
  </section>

  <!-- Free Resources -->
  <section>
    <h2>Free Resources</h2>
    <p style="text-align:center;">Download free guides and tools to support your grief journey.</p>
    <div style="text-align:center;">
      <a href="https://your-systemeio-link.com" class="btn">Get Free Resources</a>
    </div>
  </section>

  <!-- Contact -->
  <section>
    <h2>Contact</h2>
    <p style="text-align:center;">Have questions or need support? Reach out at <a href="mailto:your@email.com">your@email.com</a></p>
  </section>

  <!-- Footer -->
  <footer>
    <p>© 2025 Heart Left Open | All Rights Reserved</p>
    <p>
      <a href="#">Instagram</a> | <a href="#">Facebook</a> | <a href="#">Pinterest</a>
    </p>
  </footer>

</body>
</html>