<?php
session_start();

// تحديد اللغة بناءً على الرابط أو الجلسة أو الافتراضية (الإنجليزية كما في كودك)
$allowed_langs = ['ar', 'tr', 'en'];
if (isset($_GET['lang']) && in_array($_GET['lang'], $allowed_langs)) {
    $_SESSION['lang'] = $_GET['lang'];
}
$lang = $_SESSION['lang'] ?? 'en';

// ملف الترجمات الكامل
$words = [
    'ar' => [
        'inst_name' => 'معهد لغة العرب',
        'site_title' => 'الرئيسية',
        'nav_home' => 'الرئيسية',
        'nav_courses' => 'الدورات',
        'nav_gallery' => 'معرض الصور',
        'nav_login' => 'دخول',
        'nav_register' => 'سجل الآن',
        'nav_admin' => 'بوابة الإدارة',
        'nav_student' => 'بوابة الطالب',
        'about' => 'من نحن', 
        'gallery' => 'معرض الصور', 
        'contact' => 'اتصل بنا',
        'courses' => 'الدورات المميزة', 
        'success' => 'قصص النجاح', 
        'newsletter' => 'النشرة البريدية',
        'contact_title' => 'تواصل معنا',
        'location' => 'عمان، الأردن',
        'start_journey' => 'ابدأ رحلتك الآن',
        'view_all' => 'عرض الكل',
        'subscribe_now' => 'اشترك الآن',
        'top_student' => 'طالب متفوق',
        'currency' => 'د.أ', 
        'lessons_meta' => ' درس • أسلوب تفاعلي ميسر', 
        'news_title' => 'كن أول من تصله أخبار المعهد!',
        'news_desc' => 'اشترك للحصول على خصومات حصرية وعروض الدورات الجديدة.',
        'email_placeholder' => 'بريدك الإلكتروني',
        'subscribe_btn' => 'إرسال',
        'footer_about' => 'معهد لغة العرب: الريادة في تعليم اللغات بأساليب مبتكرة وحديثة تضمن لك التميز.',
        'footer_links' => 'روابط سريعة',
        'footer_contact' => 'تواصل معنا',
        'top_bar_text' => 'معهد لغة العرب معك خطوة بخطوة في رحلتك لتذوق بهجة العربية.',
    ],
    'tr' => [
        'inst_name' => 'Lughat AlArab Institute',
        'site_title' => 'Anasayfa',
        'nav_home' => 'Anasayfa',
        'nav_courses' => 'Kurslar',
        'nav_gallery' => 'Galeri',
        'nav_login' => 'Giriş',
        'nav_register' => 'Kayıt Ol',
        'nav_admin' => 'Yönetici Portalı',
        'nav_student' => 'Öğrenci Portalı',
        'about' => 'Hakkımızda', 
        'gallery' => 'Galeri', 
        'contact' => 'İletişim',
        'courses' => 'Öne Çıkan Kurslar', 
        'success' => 'Başarı Hikayeleri', 
        'newsletter' => 'Bülten',
        'contact_title' => 'Bize Ulaşın',
        'location' => 'Amman, Ürdün',
        'start_journey' => 'Yolculuğuna Başla',
        'view_all' => 'Tümünü Gör',
        'subscribe_now' => 'Şimdi Kaydol',
        'top_student' => 'Üstün Başarılı Öğrenci',
        'currency' => 'JOD',
        'lessons_meta' => ' Ders • Kolaylaştırılmış Etkileşimli Stil',
        'news_title' => 'Enstitü haberlerini ilk siz alın!',
        'news_desc' => 'Özel indirimler ve yeni kurs tekliflerinden haberdar olmak için abone olun.',
        'email_placeholder' => 'E-posta adresiniz',
        'subscribe_btn' => 'Gönder',
        'footer_about' => 'Lughat AlArab Institute: Dil eğitiminde yenilikçi ve modern yöntemlerle öncü.',
        'footer_links' => 'Hızlı Bağlantılar',
        'footer_contact' => 'Bize Ulaşın',
        'top_bar_text' => 'Arapça dilinin sevincini tatma yolculuğunuzda Lughat AlArab Institute adım adım yanınızda.',
    ],
    'en' => [
        'inst_name' => 'Lughat AlArab Institute',
        'site_title' => 'Home',
        'nav_home' => 'Home',
        'nav_courses' => 'Courses',
        'nav_gallery' => 'Gallery',
        'nav_login' => 'Login',
        'nav_register' => 'Register Now',
        'nav_admin' => 'Admin Portal',
        'nav_student' => 'Student Portal',
        'about' => 'About Us', 
        'gallery' => 'Gallery', 
        'contact' => 'Contact Us',
        'courses' => 'Featured Courses', 
        'success' => 'Success Stories', 
        'newsletter' => 'Newsletter',
        'contact_title' => 'Contact Us',
        'location' => 'Amman, Jordan',
        'start_journey' => 'Start Your Journey',
        'view_all' => 'View All',
        'subscribe_now' => 'Enroll Now',
        'top_student' => 'Top Student',
        'currency' => 'JOD',
        'lessons_meta' => ' Lessons • Interactive Style',
        'news_title' => 'Be the first to get Institute news!',
        'news_desc' => 'Subscribe to get exclusive discounts and updates on new courses.',
        'email_placeholder' => 'Your email',
        'subscribe_btn' => 'Send',
        'footer_about' => 'Lughat AlArab Institute: Leading in language education with innovative and modern methods.',
        'footer_links' => 'Quick Links',
        'footer_contact' => 'Contact Us',
        'top_bar_text' => 'Lughat AlArab Institute is with you step by step in your journey to taste the joy of Arabic.',
    ]
];
?>