<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <title>Slow Drifter Fishing Expeditions</title>

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <meta name="description" content="Luxury fly fishing and adventure travel worldwide. Hosted expeditions, iconic fisheries, and unforgettable water." />


  <style>

    body {

      margin: 0;

      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

      background: #0c1418;

      color: #ffffff;

      line-height: 1.6;

    }


    header {

      background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),

        url("hero.jpg") center/cover no-repeat;

      padding: 120px 20px;

      text-align: center;

    }


    header h1 {

      font-size: 52px;

      margin-bottom: 10px;

    }


    header p {

      font-size: 20px;

      max-width: 700px;

      margin: 0 auto;

      opacity: .9;

    }


    section {

      padding: 80px 20px;

      max-width: 1100px;

      margin: auto;

    }


    h2 {

      font-size: 38px;

      text-align: center;

      margin-bottom: 40px;

    }


    .destinations {

      display: grid;

      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

      gap: 30px;

    }


    .card {

      background: #121d23;

      border-radius: 12px;

      padding: 30px;

    }


    .card h3 {

      margin-top: 0;

    }


    .booking {

      background: #0f1a1f;

      text-align: center;

      border-radius: 14px;

      padding: 60px 20px;

    }


    .buttons {

      display: flex;

      flex-wrap: wrap;

      justify-content: center;

      gap: 20px;

      margin-top: 30px;

    }


    .btn {

      padding: 16px 32px;

      font-size: 18px;

      border-radius: 6px;

      text-decoration: none;

      font-weight: 600;

      min-width: 260px;

      display: inline-block;

    }


    .stripe {

      background: #635bff;

      color: white;

    }


    .paypal {

      background: #ffc439;

      color: #111;

    }


    footer {

      text-align: center;

      padding: 40px 20px;

      font-size: 14px;

      opacity: .7;

    }

  </style>

</head>


<body>


<header>

  <h1>Slow Drifter Fishing Expeditions</h1>

  <p>Curated fly fishing and adventure travel to the world’s most iconic waters.</p>

</header>


<section>

  <h2>Featured Destinations</h2>


  <div class="destinations">

    <div class="card">

      <h3>Bahamas</h3>

      <p>World-class bonefishing on pristine flats with experienced local guides.</p>

    </div>


    <div class="card">

      <h3>Florida Keys</h3>

      <p>Tarpon, permit, and bonefish in legendary shallow water fisheries.</p>

    </div>


    <div class="card">

      <h3>Iceland</h3>

      <p>Wild brown trout and Atlantic salmon in surreal Nordic landscapes.</p>

    </div>


    <div class="card">

      <h3>Mongolia</h3>

      <p>Remote taimen expeditions targeting the largest trout species on earth.</p>

    </div>

  </div>

</section>


<section class="booking" id="booking">

  <h2>Book Your Trip</h2>


  <p style="max-width:700px;margin:0 auto;">

    Secure your spot with a deposit or full payment. All payments are processed safely.

  </p>


  <div class="buttons">

    <!-- STRIPE CHECKOUT -->

    <a class="btn stripe"

       href="https://buy.stripe.com/cNi9AV2SH4qS1QQbS053O00"

       target="_blank">

      Pay with Card (Stripe)

    </a>


    <!-- PAYPAL -->

    <a class="btn paypal"

       href="https://paypal.me/NicholasGeorge588"

       target="_blank">

      Pay with PayPal

    </a>

  </div>

</section>


<footer>

  © 2026 Slow Drifter Fishing Expeditions • Worldwide Hosted Trips

</footer>


</body>

</html>