<?php
// Membership tiers. Phase 2: move to DB + admin editable.

return [
    'tiers' => [
        [
            'slug' => 'bronze', 'name' => 'Bronze',
            'price' => 'R 500 / year',
            'highlight' => false,
            'features' => [
                'Basic directory listing',
                'Access to Buy Local newsletter',
                'Member-to-member networking events',
                'Buy Local member sticker pack',
            ],
        ],
        [
            'slug' => 'silver', 'name' => 'Silver',
            'price' => 'R 1 200 / year',
            'highlight' => false,
            'features' => [
                'Everything in Bronze',
                'Enhanced directory listing with photos',
                'Quarterly newsletter feature eligibility',
                'Access to member events at discounted rates',
            ],
        ],
        [
            'slug' => 'gold', 'name' => 'Gold',
            'price' => 'R 2 500 / year',
            'highlight' => true,
            'features' => [
                'Everything in Silver',
                'Priority directory placement',
                'Homepage banner rotation',
                'One free branded asset (window decal, vehicle magnet)',
                'Dedicated social media shout-out',
            ],
        ],
        [
            'slug' => 'platinum', 'name' => 'Platinum',
            'price' => 'R 5 000 / year',
            'highlight' => false,
            'features' => [
                'Everything in Gold',
                'Top placement in directory search',
                'Permanent homepage feature slot',
                'Monthly social media campaign',
                'Co-branded event opportunities',
            ],
        ],
        [
            'slug' => 'diamond', 'name' => 'Diamond',
            'price' => 'R 10 000 / year',
            'highlight' => false,
            'features' => [
                'Everything in Platinum',
                'Custom brand campaign (designed & deployed)',
                'Quarterly strategy session with Buy Local team',
                'First-refusal on premium sponsorship slots',
                'Dedicated account manager',
            ],
        ],
    ],

    // Additional branding items — shown on additional-branding.php.
    'branding' => [
        [
            'slug' => 'window-decal', 'name' => 'Window Decal',
            'price' => 'R 150',
            'description' => 'Professionally-cut vinyl decal with the Buy Local mark. Applied to your shop window to signal to customers that you support local.',
        ],
        [
            'slug' => 'vehicle-magnet', 'name' => 'Vehicle Magnet Set',
            'price' => 'R 280',
            'description' => 'Durable magnetic signs for vehicle doors. Set of 2. Weather-resistant.',
        ],
        [
            'slug' => 'pull-up-banner', 'name' => 'Pull-up Banner',
            'price' => 'R 950',
            'description' => 'Full-height 2m pull-up banner with case. Co-branded with your business + the Buy Local mark.',
        ],
        [
            'slug' => 'branded-totes', 'name' => 'Branded Tote Bag (pack of 50)',
            'price' => 'R 1 100',
            'description' => 'Canvas tote bags with your logo + Buy Local mark. Great for give-aways at events.',
        ],
        [
            'slug' => 'social-media-pack', 'name' => 'Social Media Asset Pack',
            'price' => 'R 650',
            'description' => 'Set of 10 branded social media images sized for Facebook, Instagram, and LinkedIn posts.',
        ],
        [
            'slug' => 'event-sponsorship', 'name' => 'Event Sponsorship Slot',
            'price' => 'From R 2 500',
            'description' => 'Sponsor a Buy Local event. Includes logo placement, speaker slot, and dedicated thank-you campaign.',
        ],
    ],
];
