<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Pick-Up Pals</title>
  <!-- Google Font: Alfa Slab One -->
  <link href="https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap" rel="stylesheet">
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Alfa Slab One', cursive;
    }

    html, body {
      height: 100%;
    }

    .hero {
      background-image: url('https://www.dropbox.com/scl/fi/epq64v4seonxr8ltzqz8p/Pup-Banner-72x30.png?rlkey=ugxcu74s7i8vwkvtbxae0zpo9&raw=1');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 0;
    }

    .content {
      position: relative;
      z-index: 1;
      color: #fff;
      text-align: center;
      padding: 2em;
      max-width: 1200px;
    }

    .content h1 {
      font-size: 4em;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #fff;
      text-shadow:
        2px 2px 0 #000,
        4px 4px 10px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 255, 255, 0.3);
      margin-bottom: 1em;
      transition: all 0.3s ease-in-out;
      cursor: pointer;
    }

    .content h1:hover {
      text-shadow:
        3px 3px 0 #000,
        6px 6px 15px rgba(255, 255, 255, 0.6),
        0 0 25px rgba(255, 255, 255, 0.8);
      transform: scale(1.03);
    }

    .choice-container {
      display: flex;
      gap: 2em;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 2em;
    }

    .choice {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      text-decoration: none;
      color: #fff;
      width: 300px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .choice:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .choice img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .choice h2 {
      font-size: 1.5em;
      padding: 1em;
      background-color: rgba(0, 0, 0, 0.6);
      margin: 0;
    }

    @media (max-width: 700px) {
      .choice-container {
        flex-direction: column;
        align-items: center;
      }
    }
  </style>
</head>
<body>
  <div class="hero">
    <div class="overlay"></div>
    <div class="content">
      <h1>
        Welcome to<br>Pick-Up Pals
      </h1>
      <div class="choice-container">
        <a href="https://www.pickuppals.com" class="choice">
          <img src="https://www.dropbox.com/scl/fi/ceoyukxfwjtcepzvzvqpz/pupmanufr.avif?rlkey=krdi2xe5eputha62kd1khbbt7&raw=1" alt="Commercial Division" />
          <h2>Commercial / Manufacturing</h2>
        </a>
        <a href="https://shop.pickuppals.com" class="choice">
          <img src="https://www.dropbox.com/scl/fi/ld7st6qjfw6uvk1ba2msv/truckacc.avif?rlkey=nhc7hytfd3lhdquoyizfvti9t&raw=1" alt="Retail Division" />
          <h2>Retail / Consumer</h2>
        </a>
      </div>
    </div>
  </div>
</body>
</html>