<?php include 'header.php'; ?>

<div class="bg-gray-50 py-12">
    <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
        <div class="text-center">
            <h2 class="text-3xl font-extrabold text-ucf-charcoal tracking-tight sm:text-4xl">
                Our Team
            </h2>
            <p class="mt-4 max-w-2xl mx-auto text-xl text-gray-600">
                The dedicated individuals behind the United Cultural Forum.
            </p>
        </div>

        <div class="mt-12 grid gap-8 lg:grid-cols-3 md:grid-cols-2 sm:grid-cols-1">
            
            <!-- Team Member Card (This will be a loop from the database later) -->
            <div class="bg-white rounded-lg shadow-lg overflow-hidden text-center">
                <img src="https://placehold.co/400x400/EBF4F6/3D4A55?text=Team+Member" alt="Photo of a team member" class="w-full h-64 object-cover">
                <div class="p-6">
                    <h3 class="text-xl font-semibold text-ucf-charcoal">Dr. Thimmiri Raveendra</h3>
                    <p class="text-md font-medium text-ucf-green-dark">Founder & CEO</p>
                    <p class="mt-2 text-sm text-gray-600">Ongole, Andhra Pradesh</p>
                    <p class="mt-4 text-gray-700">
                        With a rich history of nurturing artistic talent, Dr. Raveendra is the cornerstone of artistic development in our community.
                    </p>
                </div>
            </div>
            
            <!-- Placeholder Card 2 -->
             <div class="bg-white rounded-lg shadow-lg overflow-hidden text-center">
                <img src="https://placehold.co/400x400/EBF4F6/3D4A55?text=Team+Member" alt="Photo of a team member" class="w-full h-64 object-cover">
                <div class="p-6">
                    <h3 class="text-xl font-semibold text-ucf-charcoal">Jane Doe</h3>
                    <p class="text-md font-medium text-ucf-green-dark">Curator</p>
                    <p class="mt-2 text-sm text-gray-600">Hyderabad, Telangana</p>
                    <p class="mt-4 text-gray-700">
                        Expert in modern art and responsible for managing our online gallery and exhibitions.
                    </p>
                </div>
            </div>
            
            <!-- Placeholder Card 3 -->
             <div class="bg-white rounded-lg shadow-lg overflow-hidden text-center">
                <img src="https://placehold.co/400x400/EBF4F6/3D4A55?text=Team+Member" alt="Photo of a team member" class="w-full h-64 object-cover">
                <div class="p-6">
                    <h3 class="text-xl font-semibold text-ucf-charcoal">John Smith</h3>
                    <p class="text-md font-medium text-ucf-green-dark">Community Manager</p>
                    <p class="mt-2 text-sm text-gray-600">Vijayawada, Andhra Pradesh</p>
                    <p class="mt-4 text-gray-700">
                        Manages artist relations, competitions, and community outreach programs.
                    </p>
                </div>
            </div>

        </div>
    </div>
</div>

<?php include 'footer.php'; ?>
