<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <title>BirdSeedz™ — Premium Seeds *For Birds Only*</title>
  <style>
    body {
      font-family: "Comic Sans MS", sans-serif;
      background: #e8f8ff;
      margin: 0;
      padding: 0;
    }
    header {
      background: #4ac1ff;
      padding: 20px;
      text-align: center;
      color: #fff;
    }
    .hero {
      text-align: center;
      padding: 40px 20px;
    }
    .btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 20px;
      background: orange;
      color: #000;
      text-decoration: none;
      font-weight: bold;
      border-radius: 6px;
    }
    section {
      padding: 30px 20px;
      max-width: 900px;
      margin: auto;
    }
    .testimonial {
      background: #fffbea;
      border-left: 6px solid #ffc400;
      padding: 15px;
      margin-bottom: 20px;
      font-style: italic;
    }
    footer {
      background: #333;
      color: #fff;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
    }
  </style>
</head>

<body>
  <header>
    <h1>🐦 BirdSeedz™</h1>
    <p>Finally — a seed store that speaks *bird*.</p>
  </header>

  <div class="hero">
    <h2>Premium Seeds for Sophisticated Beaks</h2>
    <p>
      Are you a bird tired of humans buying seeds *for* you?<br>
      Take control of your own snacking destiny.
    </p>
    <a class="btn" href="#shop">🛒 Start Pecking</a>
  </div>

  <section id="shop">
    <h2>Our Top Seeds</h2>
    <ul>
      <li><strong>Sunflower Supremes</strong> — Guaranteed 87% more dramatic crunch.</li>
      <li><strong>Gourmet Millet Mix</strong> — For birds with refined taste (no pigeons allowed… you know why).</li>
      <li><strong>Ultra-Premium Mystery Seeds</strong> — We forgot what they are, but birds LOVE them.</li>
    </ul>
  </section>

  <section>
    <h2>Testimonials from Real Birds*</h2>

    <div class="testimonial">
      “CAW! CAW CAW!!” — <strong>A Crow</strong><br>
      <small>(Translation: “Pretty good. Would steal again.”)</small>
    </div>

    <div class="testimonial">
      “Tweet tweet tweet!!” — <strong>A Very Excited Sparrow</strong><br>
      <small>(Translation: “I ate so much I briefly forgot how to fly.”)</small>
    </div>

    <div class="testimonial">
      “Hoo.” — <strong>A Disappointed Owl</strong><br>
      <small>(Translation: “I thought these were mice.”)</small>
    </div>

    <p><em>*Human translations provided by a certified bird whisperer.</em></p>
  </section>

  <section>
    <h2>Why Buy Seeds From Us?</h2>
    <ul>
      <li>We don’t judge how many seeds you can fit in your beak.</li>
      <li>24/7 customer support (we chirp back).</li>
      <li>Free shipping on orders over 10,000 seeds.</li>
      <li>We accept payment in feathers, shiny things, or enthusiastic chirps.</li>
    </ul>
  </section>

  <footer>
    <p>© 2025 BirdSeedz™ — “Selling seeds to birds since we realized humans weren’t our target market.”</p>
  </footer>
</body>
</html>