<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Page Not Found</title>
    <link rel="stylesheet" href="https://www.kulturgehtweiter.de/css/fonts_awaisdotgeek.css">
    <style>
        body {
            font-family: 'Nunito', sans-serif;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            text-align: center;
            background: url('https://www.kulturgehtweiter.de/storage/pinguin/404-not-found-what-looking-for.jpg') no-repeat center center fixed;
            background-size: cover;
            position: relative;
        }
        
        /* Dark overlay for better text readability */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }
        
        .error-container {
            max-width: 600px;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            font-family: 'Oswald', 'sans-serif';
        }
        
        p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            font-family: 'jost', 'sans-serif';
        }
        
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: #EC6608;
            color: white;
            text-decoration: none;
            border-radius: 0.375rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: #B2391B;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        /* .error-code {
            font-size: 5rem;
            font-weight: 800;
            color: #3A237A;
            margin-bottom: 0.5rem;
            text-shadow: 1px 1px 2px rgba(256, 256, 256);
        } */
    </style>
</head>
<body>
    <div class="error-container">
        <!-- <div class="error-code">404</div> -->
        <h1>Oops! Seite nicht gefunden</h1>
        <p>Gesuchte Seite nicht gefunden. Sie wurde möglicherweise verschoben oder existiert nicht.</p>
        <a href="https://www.kulturgehtweiter.de" class="btn">Neue Suche</a>
    </div>
</body>
</html>