
<!DOCTYPE html>
<html lang='sl'>
<head>
    <meta charset='UTF-8'>
    <meta name='viewport' content='width=device-width, initial-scale=1.0'>
    <title>radovic.si | V pripravi</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, sans-serif; }
        body {
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            overflow: hidden;
        }
        .container {
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 4rem 2rem;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            max-width: 450px;
            width: 90%;
        }
        h1 { font-size: 2.2rem; margin-bottom: 1rem; letter-spacing: 4px; font-weight: 300; }
        .line { width: 40px; height: 2px; background: #00d2ff; margin: 0 auto 2rem; }
        p { font-size: 1rem; line-height: 1.8; opacity: 0.7; margin-bottom: 2.5rem; font-weight: 300; }
        .btn {
            display: inline-block;
            padding: 12px 35px;
            border: 1px solid rgba(0, 210, 255, 0.5);
            border-radius: 50px;
            text-decoration: none;
            color: #00d2ff;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
        }
        .btn:hover { 
            background: #00d2ff; 
            color: #0f2027; 
            box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
            transform: translateY(-2px); 
        }
        .footer { margin-top: 3rem; font-size: 0.7rem; opacity: 0.4; letter-spacing: 1px; }
    </style>
</head>
<body>
    <div class='container'>
        <h1>RADOVIC.SI</h1>
        <div class='line'></div>
        <p>Spletno mesto je trenutno v fazi vzdrževanja.<br>Hvala za vaše razumevanje.</p>
        <a href='mailto:info@radovic.si' class='btn'>Kontakt</a>
        <div class='footer'>© 2025 RADOVIČ</div>
    </div>
</body>
</html>
