<?php
require_once 'config.php';

$page_title  = 'Luxury Gallery - YASH GRANDE';
$page_desc   = 'Explore the luxury and elegance of YASH GRANDE through our stunning gallery.';
$loader_text = 'Loading Luxury Gallery';

try {
    $pdo    = getConnection();
    $images = $pdo->query("SELECT * FROM gallery WHERE is_active = 1 ORDER BY sort_order ASC")->fetchAll();
} catch (PDOException $e) {
    $images = [];
}

include 'includes/header.php';
?>

    <!-- Page Header -->
    <section class="page-header" style="background: linear-gradient(var(--overlay), var(--overlay)), url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;">
        <div class="hero-overlay"></div>
        <div class="hero-content">
            <h1>Luxury Gallery</h1>
            <p>Discover the elegance and sophistication that defines the YASH GRANDE experience</p>
        </div>
    </section>

    <!-- Gallery -->
    <section class="section">
        <div class="section-header">
            <h2>Luxury Showcase</h2>
            <p>Click on any image to view in full size</p>
        </div>
        <div class="gallery-grid">
            <?php if (!empty($images)): ?>
                <?php foreach ($images as $img): ?>
                    <div class="gallery-item">
                        <img src="<?php echo htmlspecialchars($img['image_path']); ?>" alt="<?php echo htmlspecialchars($img['title'] ?? 'Gallery Image'); ?>">
                    </div>
                <?php endforeach; ?>
            <?php else: ?>
                <div class="empty-state" style="grid-column: 1/-1; text-align: center; padding: 5rem 2rem;">
                    <i class="fas fa-images" style="font-size: 4rem; color: var(--primary-gold); margin-bottom: 1.5rem;"></i>
                    <h3 style="color: var(--soft-white); margin-bottom: 1rem;">No Gallery Images Available</h3>
                    <p style="color: var(--premium-gray); font-size: 1.1rem;">Our gallery is being updated. Please check back soon to explore our luxury spaces.</p>
                </div>
            <?php endif; ?>
        </div>
    </section>

    <!-- Stats -->
    <section class="stats">
        <div class="stats-grid">
            <div class="stat-item"><span class="stat-number">120+</span><span class="stat-label">Luxury Rooms</span></div>
            <div class="stat-item"><span class="stat-number">5★</span><span class="stat-label">Dining Experience</span></div>
            <div class="stat-item"><span class="stat-number">50+</span><span class="stat-label">Premium Amenities</span></div>
            <div class="stat-item"><span class="stat-number">24/7</span><span class="stat-label">Luxury Service</span></div>
        </div>
    </section>

    <!-- CTA -->
    <section class="cta">
        <h2>Experience Luxury in Person</h2>
        <p>Book your stay today and discover why YASH GRANDE is the epitome of luxury hospitality</p>
        <a href="contact.php" class="btn-primary">Reserve Your Experience</a>
    </section>

<?php include 'includes/footer.php'; ?>
