<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Neptune Optique - Site en Maintenance</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap" rel="stylesheet">
    <style>
        :root {
            --primary: #facc15;
            --primary-hover: #eab308;
            --bg-dark: #0f172a;
            --bg-card: rgba(15, 23, 42, 0.85);
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
        }

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

        body {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #e2e8f0;
            background-image: url('https://images.unsplash.com/photo-1574258495973-f010dfbb5371?w=1920&q=80&auto=format');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            font-family: 'Outfit', sans-serif;
            padding: 20px;
        }

        /* Overlay to ensure readability */
        .overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.6) 100%);
            backdrop-filter: blur(8px);
            z-index: 0;
        }

        .card {
            position: relative;
            z-index: 1;
            background: rgba(30, 41, 59, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            max-width: 800px;
            width: 100%;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
            animation: fadeIn 1s ease-out forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .card-content {
            display: flex;
            justify-content: space-between;
            padding: 60px;
            gap: 40px;
        }

        .left-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 24px;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        .title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .title span {
            color: var(--primary);
        }

        .description {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 400px;
        }

        .right-content {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
            min-width: 200px;
        }

        .status-item {
            font-size: 14px;
            color: var(--text-main);
            font-weight: 500;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.05);
            padding: 12px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .status-item:hover {
            transform: translateX(5px);
            background: rgba(255,255,255,0.1);
        }

        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--primary);
            box-shadow: 0 0 10px var(--primary);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(250, 204, 21, 0); }
            100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
        }

        .cta-bar {
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 100%);
            padding: 24px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .cta-text {
            font-size: 16px;
            font-weight: 600;
            color: var(--bg-dark);
        }

        .cta-text p {
            font-weight: 700;
            font-size: 18px;
            margin-top: 4px;
        }

        .cta-button {
            background-color: var(--bg-dark);
            color: var(--text-main);
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            background-color: #1e293b;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .card-content {
                flex-direction: column;
                padding: 40px 30px;
                gap: 30px;
            }

            .left-content {
                text-align: center;
                align-items: center;
            }

            .description {
                text-align: center;
            }

            .right-content {
                width: 100%;
            }

            .status-item {
                justify-content: center;
            }

            .cta-bar {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .card-content {
                padding: 30px 20px;
            }
            .logo {
                font-size: 20px;
            }
            .cta-button {
                width: 100%;
                justify-content: center;
            }
        }
    </style>
</head>
<body>
    <div class="overlay"></div>
    <main class="card">
        <div class="card-content">
            <div class="left-content">
                <div class="logo">
                    <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
                        <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/>
                    </svg>
                    Neptune
                </div>
                <h1 class="title">Site en<br><span>Maintenance</span></h1>
                <p class="description">
                    Notre site fait peau neuve pour mieux vous servir. 
                    Nous revenons très bientôt avec une nouvelle expérience visuelle.
                </p>
            </div>
            <div class="right-content">
                <div class="status-item">
                    <span class="status-dot"></span>
                    Lunettes de Vue
                </div>
                <div class="status-item">
                    <span class="status-dot"></span>
                    Lunettes de Soleil
                </div>
                <div class="status-item">
                    <span class="status-dot"></span>
                    Lentilles de Contact
                </div>
                <div class="status-item">
                    <span class="status-dot"></span>
                    Examen de Vue
                </div>
            </div>
        </div>
        <div class="cta-bar">
            <div class="cta-text">
                Une question sur vos lunettes ?
                <p>Contactez-nous directement</p>
            </div>
            <a href="tel:+221338001234" class="cta-button">
                <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
                    <path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>
                </svg>
                Appelez-nous
            </a>
        </div>
    </main>
</body>
</html>
Product was successfully added to your cart!