<?php
/**
 * The template for displaying 404 pages (not found)
 *
 * @package Proto_Previewer
 */

if (!defined('ABSPATH')) exit;

get_header();
?>

<main id="primary" class="site-main">
    <div class="site-container">
        <section class="error-404 not-found" style="background: #fff; border-radius: 1rem; border: 1px solid #e2e8f0; padding: 4rem 2rem; text-align: center;">
            <span style="font-size: 3.5rem; display: block; margin-bottom: 0.5rem;">🔍</span>
            <h1 class="page-title" style="font-size: 2.5rem; margin-bottom: 1rem;"><?php esc_html_e('Oops! That page can’t be found.', 'proto-previewer'); ?></h1>
            <p style="color: #64748b; max-width: 500px; margin: 0 auto 2rem auto;"><?php esc_html_e('It looks like nothing was found at this location. Maybe try visiting your projects or homepage?', 'proto-previewer'); ?></p>
            <div style="display: flex; justify-content: center; gap: 1rem;">
                <a href="<?php echo esc_url(home_url('/')); ?>" class="btn btn-primary"><?php esc_html_e('Return Home', 'proto-previewer'); ?></a>
                <a href="<?php echo esc_url(home_url('/?proto_preview=1')); ?>" class="btn btn-secondary"><?php esc_html_e('Open Player ↗', 'proto-previewer'); ?></a>
            </div>
        </section>
    </div>
</main>

<?php
get_footer();
