<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>WBBPPA - Wrightsville Beach Putt Putt</title>
  <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
  <style>
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: #fefcf8;
      color: #333;
      text-align: center;
    }
    header {
      background: #f3e9dc;
      padding: 2rem 1rem;
    }
    header img {
      max-width: 180px;
      margin-bottom: 1rem;
    }
    h1 {
      margin: 0.2rem 0;
      font-size: 2rem;
    }
    p {
      max-width: 600px;
      margin: 1rem auto;
      line-height: 1.6;
    }
    section {
      padding: 2rem 1rem;
    }
    .footer {
      font-size: 0.9rem;
      color: #777;
      padding: 1rem;
    }
  </style>
</head>
<body>
  <header>
    <img src="logo.png" alt="WBBPPA Logo">
    <h1>The Wrightsville Beach Beachgoers' Putt Putt Association</h1>
  </header>

  <section>
    <p>Welcome to the WBBPPA — a laid-back, creative minigolf experience right on the sands of Wrightsville Beach.</p>
    <p>Courses are made by hand between the tides, so follow us for a day or two heads up. We pop up randomly when the tide and vibes are right!</p>
    <p><strong>All ages welcome (most anyway).</strong> Just bring your own putter, a good attitude, and a love of sunshine and creativity.</p>
    <p>Be respectful of the course and those around you — our motto: <em>"Uplift the vibe, don't wreck the tribe."</em></p>
  </section>

  <div class="footer">
    &copy; 2025 WBBPPA. Wrightsville Beach, NC.
  </div>
</body>
</html>