<?php
/**
 * The template for displaying the footer
 *
 * @package Proto_Previewer
 */

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

    <footer id="colophon" class="site-footer">
        <div class="site-container">
            
            <?php if (is_active_sidebar('footer-1')) : ?>
                <div class="footer-widgets-grid" style="margin-bottom: 2rem;">
                    <?php dynamic_sidebar('footer-1'); ?>
                </div>
            <?php endif; ?>

            <div class="site-footer-inner">
                <div class="site-info">
                    <div style="display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem;">
                        <img src="https://bowdenworks.com/wp-content/uploads/2023/07/bowdenworks_square.jpg" alt="Bowden Works" style="width: 1.25rem; height: 1.25rem; border-radius: 4px; object-fit: cover;">
                        <span style="font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 1rem;">ProtoPreviewer</span>
                    </div>
                    <p style="margin: 0; font-size: 0.75rem; color: #64748b;">
                        &copy; <?php echo date('Y'); ?> <a href="https://bowdenworks.com" target="_blank" rel="noopener">Bowden Works</a>. InVision-style Prototype Presentation & Review Ecosystem for WordPress.
                    </p>
                </div>

                <div class="footer-links" style="display: flex; gap: 1.25rem; font-size: 0.8rem;">
                    <a href="<?php echo esc_url(home_url('/?proto_preview=1')); ?>" target="_blank">Live InVision Player</a>
                    <?php if (is_user_logged_in()) : ?>
                        <a href="<?php echo esc_url(admin_url('edit.php?post_type=proto_project')); ?>">Manage Projects</a>
                    <?php else : ?>
                        <a href="<?php echo esc_url(wp_login_url()); ?>">Sign In</a>
                    <?php endif; ?>
                </div>
            </div>

        </div>
    </footer>
</div><!-- #page -->

<?php wp_footer(); ?>

</body>
</html>
