<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Bill Wishon | Homepage (Modern)</title>
    <!-- Load Tailwind CSS --><script src="https://cdn.tailwindcss.com"></script>
    <!-- Configure Tailwind to use Inter font --><script>
        tailwind.config = {
            theme: {
                extend: {
                    fontFamily: {
                        sans: ['Inter', 'sans-serif'],
                    },
                },
            },
        };
    </script>
    <!-- Custom style for the subtle tech background pattern --><style>
        body {
            /* A subtle dot grid pattern */
            background-image: radial-gradient(circle at 25px 25px, rgba(255,255,255,0.08) 1px, transparent 0),
                              radial-gradient(circle at 75px 75px, rgba(255,255,255,0.08) 1px, transparent 0);
            background-size: 100px 100px;
        }
    </style>
</head>
<body class="font-sans bg-slate-900 text-gray-900 min-h-screen flex items-center justify-center p-6">

    <!-- Main Content Card --><main class="bg-white w-full max-w-2xl rounded-2xl shadow-2xl p-10 md:p-12 text-center">
        
        <!-- Profile Picture --><!-- IMPORTANT: Replace 'your-image-url-here.jpg' with the actual URL of your hosted image. --><!-- Changed rounded-full to rounded-xl for rounded corners, and adjusted dimensions --><!-- Added object-position for fine-tuning image placement within the frame --><img src="headshot-no-hat.png" 
             alt="Bill Wishon's Profile Picture" 
             class="h-40 w-auto rounded-xl mx-auto mb-6 border-4 border-blue-500 shadow-lg object-cover object-center">
        
        <!-- Name --><h1 class="text-4xl md:text-5xl font-bold text-slate-800">
            Bill Wishon
        </h1>

        <!-- Professional Bio --><p class="text-lg text-slate-600 mt-6 leading-relaxed">
            Technology and product executive specializing in real-time video streaming, media, and ad technology. I lead teams to build and deliver scalable, high-impact products.
        </p>

        <p class="text-lg text-slate-600 mt-4 leading-relaxed">
            You can find my detailed professional profile on LinkedIn.
        </p>

        <!-- LinkedIn Button --><a href="https://www.linkedin.com/in/bwishon" 
           target="_blank" 
           rel="noopener noreferrer" 
           class="inline-flex items-center justify-center gap-3 mt-10 bg-blue-600 hover:bg-blue-700 text-white text-lg font-medium py-3 px-8 rounded-lg shadow-md transition-colors duration-300 transform hover:scale-105">
            
            <!-- LinkedIn SVG Icon --><svg class="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
                <path d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"/>
            </svg>
            <span>View My Profile on LinkedIn</span>
        </a>

    </main>

</body>
</html>
