<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Beautiful Swan - Coming Soon</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 25%, #c44569 50%, #556fb5 75%, #4a5f8f 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 600px;
            width: 100%;
            padding: 50px 40px;
        }

        .logo {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo img {
            max-width: 200px;
            height: auto;
        }

        h1 {
            font-size: 2.5em;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 10px;
        }

        .tagline {
            font-size: 1.2em;
            color: #7f8c8d;
            text-align: center;
            font-style: italic;
            margin-bottom: 30px;
        }

        .intro {
            text-align: center;
            color: #555;
            line-height: 1.6;
            margin-bottom: 40px;
            font-size: 1.05em;
        }

        .intro strong {
            color: #c44569;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95em;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="url"],
        select,
        textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1em;
            font-family: Arial, sans-serif;
            transition: border-color 0.3s;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #c44569;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        .optional {
            color: #95a5a6;
            font-weight: normal;
            font-size: 0.85em;
        }

        button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #c44569 0%, #ee5a6f 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 30px;
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(196, 69, 105, 0.4);
        }

        button:active {
            transform: translateY(0);
        }

        .coming-soon {
            text-align: center;
            margin-top: 30px;
            color: #7f8c8d;
            font-size: 0.9em;
        }

        @media (max-width: 600px) {
            .container {
                padding: 30px 25px;
            }

            h1 {
                font-size: 2em;
            }

            .tagline {
                font-size: 1em;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="logo">
            <img src="https://beautifulswan.com/wp-content/uploads/2025/10/swan-logo.png" alt="Beautiful Swan Logo">
        </div>
        
        <h1>Beautiful Swan</h1>
        <p class="tagline">Where love takes flight</p>
        
        <p class="intro">
            We're creating <strong>Alberta's premier destination for couples in love</strong> – a curated collection of exceptional vendors who celebrate relationships, from date nights to weddings to couples therapy and beyond.
        </p>
        
        <p class="intro">
            <strong>Vendors:</strong> Join us in building something beautiful. Register your interest below and be among the first to be featured when we launch.
        </p>

        <form id="vendorForm">
            <div class="form-group">
                <label for="businessName">Business Name</label>
                <input type="text" id="businessName" name="businessName" required>
            </div>

            <div class="form-group">
                <label for="contactName">Contact Person Name</label>
                <input type="text" id="contactName" name="contactName" required>
            </div>

            <div class="form-group">
                <label for="email">Email</label>
                <input type="email" id="email" name="email" required>
            </div>

            <div class="form-group">
                <label for="phone">Phone</label>
                <input type="tel" id="phone" name="phone" required>
            </div>

            <div class="form-group">
                <label for="address">Business Address</label>
                <input type="text" id="address" name="address" placeholder="City, Province" required>
            </div>

            <div class="form-group">
                <label for="serviceArea">Service Area</label>
                <select id="serviceArea" name="serviceArea" required>
                    <option value="">Select service radius...</option>
                    <option value="25km">Within 25 km</option>
                    <option value="50km">Within 50 km</option>
                    <option value="100km">Within 100 km</option>
                    <option value="200km">Within 200 km</option>
                    <option value="province">Province-wide</option>
                    <option value="national">National</option>
                </select>
            </div>

            <div class="form-group">
                <label for="serviceType">Type of Service</label>
                <select id="serviceType" name="serviceType" required>
                    <option value="">Select service type...</option>
                    <option value="photography">Photography</option>
                    <option value="videography">Videography</option>
                    <option value="venue">Venue</option>
                    <option value="catering">Catering</option>
                    <option value="florist">Florist</option>
                    <option value="music">Music/DJ/Entertainment</option>
                    <option value="officiant">Officiant</option>
                    <option value="beauty">Beauty/Hair/Makeup</option>
                    <option value="transportation">Transportation</option>
                    <option value="decor">Decor/Rentals</option>
                    <option value="planning">Wedding Planning/Coordination</option>
                    <option value="therapy">Couples Therapy/Coaching</option>
                    <option value="experiences">Romantic Experiences</option>
                    <option value="jewelry">Jewelry</option>
                    <option value="other">Other</option>
                </select>
            </div>

            <div class="form-group">
                <label for="website">Website <span class="optional">(optional)</span></label>
                <input type="url" id="website" name="website" placeholder="https://">
            </div>

            <div class="form-group">
                <label for="description">Brief Description of Your Services</label>
                <textarea id="description" name="description" placeholder="Tell us what makes your business special..." required></textarea>
            </div>

            <div class="form-group">
                <label for="heardFrom">How did you hear about us? <span class="optional">(optional)</span></label>
                <input type="text" id="heardFrom" name="heardFrom">
            </div>

            <button type="submit">Join the Beautiful Swan Community</button>
        </form>

        <p class="coming-soon">
            Expected Launch: <strong>Spring 2026</strong><br>
            Starting in Edmonton & surrounding areas
        </p>
    </div>

    <script>
        document.getElementById('vendorForm').addEventListener('submit', function(e) {
            e.preventDefault();
            
            // In production, this would send to your backend
            alert('Thank you for your interest! We\'ll be in touch soon as we prepare to launch Beautiful Swan.');
            
            // Reset form
            this.reset();
        });
    </script>
</body>
</html>