philia_events/ 
│ 
├── config/                     # Secure configuration files (Keep out of public access) 
│   ├── database.php            # PDO database connection settings 
│   └── config.php              # Global variables (Site URL, environment settings) 
│ 
├── includes/                   # Reusable backend logic and classes 
│   ├── auth_functions.php      # Login, registration, and session management 
│   ├── booking_functions.php   # Logic for creating and updating quotes 
│   └── helper_functions.php    # Utility functions (sanitization, formatting) 
│ 
├── public/                     # The web root (Point the server domain here) 
│   ├── index.php               # Homepage / Landing page 
│   ├── services.php            # Services and catalog page 
│   ├── gallery.php             # Cinematic portfolio page 
│   ├── login.php               # User login/registration page 
│   │ 
│   ├── assets/                 # Static media and styling 
│   │   ├── css/ 
│   │   │   └── tailwind.css    # Compiled Tailwind styles 
│   │   ├── js/ 
│   │   │   ├── app.js          # Core frontend interactions 
│   │   │   └── animations.js   # GSAP cinematic scroll and reveal logic 
│   │   └── images/             # Uploaded gallery images and site graphics 
│   │       ├── gallery/ 
│   │       └── ui/             # Logos, placeholders, icons 
│   │ 
│   ├── admin/                  # Admin Dashboard (Protected routes) 
│   │   ├── index.php           # Admin dashboard home 
│   │   ├── quotes.php          # Review inquiries and send quotes 
│   │   ├── calendar.php        # Confirmed events view 
│   │   └── portfolio.php       # Image upload and gallery management 
│   │ 
│   └── client/                 # Client Portal (Protected routes) 
│       ├── index.php           # Client dashboard home 
│       ├── quotes.php          # View and accept/decline custom quotes 
│       └── events.php          # View confirmed upcoming events 
│ 
├── views/                      # HTML template partials (Included in public pages) 
│   ├── partials/ 
│   │   ├── header.php          # <head>, navbar, and session start 
│   │   └── footer.php          # Footer links and closing scripts 
│   ├── admin_header.php        # Specific navbar for admin dashboard 
│   └── client_header.php       # Specific navbar for client dashboard 
│ 
├── actions/                    # Form processors (Redirect back to pages after execution) 
│   ├── process_login.php        
│   ├── process_register.php     
│   ├── process_quote_req.php   # Handles client submitting a cart/inquiry 
│   ├── process_quote_send.php  # Handles admin pricing and sending a quote 
│   └── process_upload.php      # Handles admin gallery image uploads 
│ 
├── .htaccess                   # Apache config for routing and security 
└── README.md                   # Project documentation
