<?php
/**
 * Single project page (iliya_project CPT).
 *
 * @package Iliya
 */

get_header();

while (have_posts()) :
    the_post();
    $tag  = get_post_meta(get_the_ID(), '_iliya_tag', true);
    $meta = get_post_meta(get_the_ID(), '_iliya_meta', true);
    ?>
    <article <?php post_class(); ?>>
        <!-- Hero -->
        <section class="relative overflow-hidden bg-dark text-white">
            <?php if (has_post_thumbnail()) : ?>
                <div class="absolute inset-0" aria-hidden="true">
                    <?php the_post_thumbnail('large', ['class' => 'duo h-full w-full object-cover opacity-35']); ?>
                    <div class="absolute inset-0 bg-gradient-to-t from-dark via-dark/80 to-dark/50"></div>
                </div>
            <?php endif; ?>
            <div class="bg-grid pointer-events-none absolute inset-0 opacity-30" aria-hidden="true"></div>
            <div class="container relative mx-auto max-w-[1200px] py-20 md:py-24">
                <span class="eyebrow mb-5 block text-gold-light"><?php esc_html_e('نمونه کارها', 'iliya'); ?></span>
                <?php if ($tag || $meta) : ?>
                    <div class="mb-4 flex items-center gap-3 text-[0.72rem] tracking-widest text-gold-light">
                        <?php if ($tag) : ?><span><?php echo esc_html($tag); ?></span><?php endif; ?>
                        <?php if ($tag && $meta) : ?><span class="h-1 w-1 bg-gold-light"></span><?php endif; ?>
                        <?php if ($meta) : ?><span class="text-steel-300"><?php echo esc_html($meta); ?></span><?php endif; ?>
                    </div>
                <?php endif; ?>
                <h1 class="display-xl text-white"><?php the_title(); ?></h1>
            </div>
        </section>

        <!-- Body -->
        <section class="section bg-paper">
            <div class="container mx-auto max-w-[820px]">
                <?php get_template_part('template-parts/breadcrumb'); ?>

                <div class="prose-iliya leading-9 text-body">
                    <?php
                    if (trim(get_the_content()) !== '') {
                        the_content();
                    } else {
                        echo '<p>' . esc_html__('شرح این پروژه به‌زودی تکمیل می‌شود.', 'iliya') . '</p>';
                    }
                    ?>
                </div>

                <div class="mt-10 flex flex-wrap gap-4">
                    <a href="<?php echo esc_url(home_url('/#contact')); ?>" class="btn-primary lnk-arrow">
                        <?php esc_html_e('مشاوره و همکاری', 'iliya'); ?>
                        <?php echo iliya_icon('arrow-start', 18); ?>
                    </a>
                    <a href="<?php echo esc_url(home_url('/#projects')); ?>" class="btn-line"><?php esc_html_e('سایر پروژه‌ها', 'iliya'); ?></a>
                </div>
            </div>
        </section>
    </article>
<?php
endwhile;

get_footer();
