<?php
$page_title = "Espace client — Antales Capital";
?>
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title><?= htmlspecialchars($page_title, ENT_QUOTES, 'UTF-8') ?></title>
    <link rel="stylesheet" href="/client/assets/css/style.css"> <!-- Si tu utilises un fichier externe pour tes styles -->

    <style>
        /* =============================
           CONFIG STYLE GLOBAL
        ============================== */

        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: url("/admin/assets/img/espaceclient.jpg") center/cover no-repeat fixed;
            background-size: cover;
            color: white;
        }

        /* --- Voile sombre --- */
        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(2px);
            z-index: 5;
        }

        /* --- Barre du haut avec logo --- */
        .topbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 85px;
            background: #0c0c0c;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 20;
        }

        .topbar img {
            height: 65px;
        }

        /* =============================
           CARTE CENTRALE (STYLE ADMIN)
        ============================== */

        .center-box {
            position: absolute;
            top: 55%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.92);
            padding: 35px;
            width: 420px;
            border-radius: 14px;
            text-align: center;
            color: #111;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
            z-index: 30;
        }

        /* --- Titre doré --- */
        .center-box h1 {
            margin: 0 0 12px 0;
            font-size: 26px;
            color: #d4a63b;
        }

        /* --- Sous-texte --- */
        .center-box p {
            color: #333;
            margin-bottom: 25px;
            font-size: 14px;
        }

        /* =============================
           BOUTONS
        ============================== */

        .btn {
            padding: 10px 22px;
            font-size: 14px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: .2s;
        }

        /* bouton doré */
        .btn-gold {
            background: #d4a63b;
            color: #000;
        }

        .btn-gold:hover {
            background: #b88b2a;
        }

        /* bouton contour doré */
        .btn-outline {
            border: 2px solid #d4a63b;
            color: #d4a63b;
        }

        .btn-outline:hover {
            background: #d4a63b;
            color: #000;
        }

        /* groupe boutons */
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        /* =============================
           STYLES POUR MOBILE
        ============================== */
        @media (max-width: 600px) {
            .topbar { 
                height: 70px;
            }

            .topbar img {
                height: 48px;
            }

            .center-box {
                width: 88%;
                padding: 28px 25px;
                border-radius: 16px;
                backdrop-filter: blur(7px);
                background: rgba(15, 15, 15, 0.88);
                animation-duration: 0.9s;
            }

            .center-box h1 {
                font-size: 20px;
            }

            .center-box p {
                font-size: 13px;
            }

            .btn {
                width: 100%;
                text-align: center;
                padding: 12px;
                border-radius: 10px;
                font-size: 15px;
            }
        }

    </style>
</head>

<body>

<!-- Voile sombre -->
<div class="overlay"></div>

<!-- Barre du haut -->
<header class="topbar">
    <img src="/admin/assets/img/logo.png" alt="Antales Capital">
</header>

<!-- Carte centrale -->
<div class="center-box">
    <h1>ESPACE CLIENT</h1>
    <p>Bienvenue dans votre espace sécurisé.</p>

    <div class="btn-group">
        <a href="/client/login.php" class="btn btn-gold">Accès client</a>
        <a href="/admin/login.php" class="btn btn-outline">Accès administrateur</a>
    </div>
</div>

</body>
</html>

