<?php
// eventuali variabili PHP future
$title = "Piano Logistico – S.A.G.I. S.p.A.";
?>
<!DOCTYPE html>
<html lang="it">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title><?php echo $title; ?> – Work in Progress</title>

    <!-- Google Font -->
    <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap" rel="stylesheet">

    <style>
        body {
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, #003366, #005599);
            color: #fff;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .container {
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            backdrop-filter: blur(6px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            width: 90%;
            max-width: 550px;
        }

        h1 {
            font-size: 32px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        h2 {
            font-size: 22px;
            font-weight: 300;
            margin-bottom: 25px;
        }

        .loader {
            border: 6px solid rgba(255, 255, 255, 0.3);
            border-top: 6px solid #fff;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            margin: 0 auto 25px auto;
            animation: spin 1.2s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        p {
            font-size: 15px;
            opacity: 0.9;
        }

        .footer {
            margin-top: 20px;
            font-size: 13px;
            opacity: 0.6;
        }
    </style>
</head>
<body>

<div class="container">
    <div class="loader"></div>

    <h1><?php echo $title; ?></h1>
    <h2>Work in Progress</h2>

    <p>Stiamo lavorando alla realizzazione della nuova Dashboard di consultazione Piano Logistico</p>

    <div class="footer">
        © <?php echo date("Y"); ?> S.A.G.I. S.p.A. – Tutti i diritti riservati
    </div>
</div>

</body>
</html>