<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Public Art Ireland | Coming Soon</title>
    <style>
        /* CSS Variables for brand colors */
        :root {
            --slate-blue: #54728c;
            --gold: #c5a059;
            --bg-light: #f9f9f9;
        }

        body, html {
            height: 100%;
            margin: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-light);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--slate-blue);
        }

        .container {
            text-align: center;
            padding: 20px;
            max-width: 600px;
            width: 90%;
        }

        .logo {
            max-width: 100%;
            height: auto;
            margin-bottom: 40px;
            /* Subtle entry animation */
            animation: fadeIn 1.5s ease-out;
        }

        h1 {
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 1.5rem;
            margin-top: 0;
            border-top: 1px solid var(--gold);
            padding-top: 20px;
            display: inline-block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mobile optimization */
        @media (max-width: 480px) {
            h1 {
                font-size: 1.2rem;
            }
        }
    </style>
</head>
<body>

    <div class="container">
        <img src="/PAI-Primary-Blue@2x.png" alt="Public Art Ireland Logo" class="logo">
        
        <h1>Website under maintenance</h1>
    </div>

</body>
</html>
