<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>WattDevis - De retour bientôt</title>
    <style>
        /* Réinitialisation et polices de base */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #f8fafc; /* Fond très légèrement bleuté/gris */
            color: #111827;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
            padding: 20px;
        }

        /* Conteneur principal */
        .maintenance-container {
            max-width: 550px;
            background: #ffffff;
            padding: 50px 40px;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
        }

        /* Style du Logo WattDevis */
        .logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 40px;
            color: #111827;
        }
        .logo-icon {
            background-color: #12a597; /* Turquoise WattDevis */
            color: white;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 22px;
        }

        /* Typographie */
        h1 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        p {
            color: #4b5563;
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 35px;
        }

        /* Bouton Action (Style Orange WattDevis) */
        .btn {
            background: linear-gradient(90deg, #f59e0b, #ea580c);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-block;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 14px rgba(234, 88, 12, 0.2);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
        }

        /* Responsive basique */
        @media (max-width: 480px) {
            .maintenance-container {
                padding: 40px 20px;
            }
            h1 {
                font-size: 26px;
            }
        }
    </style>
</head>
<body>

    <div class="maintenance-container">
        <!-- Logo -->
        <div class="logo">
            <div class="logo-icon">W</div>
            WattDevis
        </div>

        <!-- Message principal -->
        <h1>Nous revenons très vite !</h1>
        <p>Notre site fait actuellement peau neuve pour toujours mieux vous accompagner dans vos projets solaires et bornes de recharge. Merci de votre patience.</p>
        
        <!-- Bouton de contact (optionnel) -->
        <!-- Remplace l'adresse email par la tienne si tu souhaites qu'ils puissent te contacter -->
        <a href="mailto:contact@wattdevis.com" class="btn">Nous contacter</a>
    </div>

</body>
</html>