<?php
// compress.php - Outil Compresser (placeholder)
$page_title = 'Diviser PDF - PDFMaster';
include_once 'includes/header.php';
?>

<main class="py-12 lg:py-20">
    <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
        
        <nav class="mb-6 text-sm text-slate-600">
            <a href="index.php" class="hover:text-blue-600">Accueil</a>
            <span class="mx-2">/</span>
            <span class="text-slate-900 font-medium">Diviser PDF</span>
        </nav>
        
        <div class="text-center mb-10">
            <div class="inline-flex items-center justify-center w-16 h-16 bg-gradient-to-br from-orange-500 to-orange-700 rounded-2xl mb-4 shadow-lg shadow-orange-500/30">
                <svg class="w-8 h-8 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"></path>
                </svg>
            </div>
            <h1 class="text-4xl lg:text-5xl font-bold text-slate-900 mb-4">
                Diviser <span class="text-orange-600">PDF</span>
            </h1>
            <p class="text-lg text-slate-600 max-w-2xl mx-auto">
                Divisez vos fichiers PDF tout en conservant une excellente qualité.
            </p>
        </div>

        <!-- Bientôt disponible -->
        <div class="bg-gradient-to-br from-orange-50 to-emerald-50 rounded-2xl border-2 border-orange-200 p-12 text-center">
            <div class="w-20 h-20 bg-orange-100 rounded-full flex items-center justify-center mx-auto mb-6">
                <svg class="w-10 h-10 text-orange-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
                </svg>
            </div>
            <h2 class="text-2xl font-bold text-slate-900 mb-3">Outil bientôt disponible !</h2>
            <p class="text-slate-600 mb-6 max-w-md mx-auto">
            Notre outil de division PDF est en cours de développement. Revenez très bientôt pour en profiter.
            </p>
            <a href="index.php" class="inline-block bg-orange-600 text-white px-8 py-3 rounded-lg font-semibold hover:bg-orange-700 transition-colors shadow-sm">
                ← Retour à l'accueil
            </a>
        </div>

        <!-- Fonctionnalités futures -->
        <div class="mt-12 grid md:grid-cols-3 gap-6">
            <div class="bg-white p-6 rounded-xl border border-slate-200 text-center">
                <div class="w-12 h-12 bg-orange-100 rounded-full flex items-center justify-center mx-auto mb-3">
                    <svg class="w-6 h-6 text-orange-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"></path></svg>
                </div>
                <h3 class="font-semibold text-slate-900 mb-2">Jusqu'à -90%</h3>
                <p class="text-sm text-slate-600">Réduction drastique de la taille</p>
            </div>
            <div class="bg-white p-6 rounded-xl border border-slate-200 text-center">
                <div class="w-12 h-12 bg-orange-100 rounded-full flex items-center justify-center mx-auto mb-3">
                    <svg class="w-6 h-6 text-orange-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"></path></svg>
                </div>
                <h3 class="font-semibold text-slate-900 mb-2">Qualité préservée</h3>
                <p class="text-sm text-slate-600">Images et textes nets</p>
            </div>
            <div class="bg-white p-6 rounded-xl border border-slate-200 text-center">
                <div class="w-12 h-12 bg-orange-100 rounded-full flex items-center justify-center mx-auto mb-3">
                    <svg class="w-6 h-6 text-orange-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"></path></svg>
                </div>
                <h3 class="font-semibold text-slate-900 mb-2">Traitement local</h3>
                <p class="text-sm text-slate-600">Vos fichiers restent privés</p>
            </div>
        </div>

    </div>
</main>

<?php include_once 'includes/footer.php'; ?>