<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>We’ll Be Right Back | Maintenance Mode</title>
    <style>
        :root {
            --primary-color: #4f46e5; /* Modern Indigo */
            --text-color: #334155;
            --bg-color: #f8fafc;
            --card-bg: #ffffff;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .maintenance-container {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
            text-align: center;
            max-width: 500px;
            width: 100%;
        }

        .logo {
            max-height: 50px;
            margin-bottom: 24px;
        }

        .icon-container {
            color: var(--primary-color);
            width: 64px;
            height: 64px;
            margin: 0 auto 24px auto;
            animation: pulse 2s infinite ease-in-out;
        }

        h1 {
            font-size: 1.75rem;
            color: #0f172a;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .message {
            font-size: 1rem;
            line-height: 1.6;
            color: #64748b;
            margin-bottom: 28px;
        }

        .info-box {
            background-color: #f1f5f9;
            padding: 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            margin-bottom: 28px;
        }

        .info-box a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .info-box a:hover {
            text-decoration: underline;
        }

        .social-links p {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #94a3b8;
            margin-bottom: 12px;
        }

        .social-links a {
            color: #64748b;
            text-decoration: none;
            font-size: 0.9rem;
            margin: 0 10px;
            transition: color 0.2s ease;
        }

        .social-links a:hover {
            color: var(--primary-color);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.08); opacity: 0.8; }
        }
    </style>
</head>
<body>
    <div class="maintenance-container">
        
            <img src="https://harlequin-na.myshopify.com/cdn/shop/files/Harlequin-Logo_RGB_RED.png?v=1756137911&width=300">
        
        
        <h1>Making Things Even Better</h1>
        <p class="message">
            We are currently migrating our website to a shiny new platform to improve your experience. We will be back online shortly!
        </p>
        
        <div class="info-box">
            <p><strong>Need urgent assistance?</strong> Email us at <a href="mailto:CustomerService@Harlequin.com">CustomerService@Harlequin.com</a></p>
        </div>
		<!--
        <div class="social-links">
            <p>Follow our updates:</p>
            <a href="#" target="_blank">Twitter/X</a>
            <a href="#" target="_blank">LinkedIn</a>
            <a href="#" target="_blank">Status Page</a>
        </div>
		-->
    </div>
</body>
</html>
