/* Custom CSS للموقع */

/* تحسين الفونت والتأثيرات */
body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.font-amiri {
    font-family: 'Amiri', serif;
}

/* إصلاح فونت العناوين - جعلها أكثر وضوحاً */
#vision h2, 
#contact h2 {
    font-weight: 500 !important; /* تقليل سُمك الخط من bold إلى medium */
    color: #1e3a5f !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1); /* إضافة ظل خفيف للوضوح */
}

#vision h3,
#contact h3 {
    font-weight: 400 !important; /* فونت عادي بدلاً من semibold */
    color: #1e3a5f !important;
}

/* تحسين تباين زر "تصفح الكتب" في الـ Hero */
.hero-browse-books {
    background: linear-gradient(135deg, #d4af37, #f4d03f) !important;
    color: #000000 !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
    border: 2px solid #d4af37 !important;
}

.hero-browse-books:hover {
    background: linear-gradient(135deg, #f4d03f, #d4af37) !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6) !important;
}

/* تحسينات عامة للألوان والتأثيرات */
.text-primary {
    color: #1e3a5f !important;
}

.bg-primary {
    background-color: #1e3a5f !important;
}

.text-secondary {
    color: #d4af37 !important;
}

.bg-secondary {
    background-color: #d4af37 !important;
}

/* تأثيرات الظهور التدريجي */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-delay {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-delay-2 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-delay-3 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out forwards;
}

.animate-fade-in-delay {
    animation: fade-in-delay 1s ease-out 0.5s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fade-in-delay-2 1s ease-out 1s forwards;
    opacity: 0;
}

.animate-fade-in-delay-3 {
    animation: fade-in-delay-3 1s ease-out 1.5s forwards;
    opacity: 0;
}

/* تحسين شكل النافذة المنبثقة للموبايل */
.mobile-menu {
    transition: all 0.3s ease-in-out;
}

.mobile-menu.show {
    display: block;
}

/* تحسين شكل الكتب */
.book-cover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-cover:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* تحسين شكل الشهادات */
.certificate-card {
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* تحسين النماذج */
input, textarea, select {
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.25rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    /* تحسين عناوين الأقسام للموبايل */
    #vision h2, 
    #contact h2 {
        font-size: 2rem !important;
        font-weight: 400 !important;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.1rem;
    }
    
    /* تحسين أكبر لعناوين الموبايل الصغير */
    #vision h2, 
    #contact h2 {
        font-size: 1.75rem !important;
        font-weight: 300 !important;
    }
}

/* تأثيرات تفاعلية إضافية */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* تحسين أزرار السوشيال ميديا */
.social-btn {
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

/* تحسين scroll للتنقل السلس */
html {
    scroll-behavior: smooth;
}

/* تحسين Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* تحسين النصوص العربية */
.arabic-text {
    direction: rtl;
    text-align: right;
    font-feature-settings: "liga" 1, "kern" 1;
}

/* تحسين الخطوط في العناوين الرئيسية */
h1, h2, h3 {
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* تحسين المساحات والتباعد */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* تحسين الألوان للوضوح */
.text-clear {
    color: #2d3748 !important;
    font-weight: 400 !important;
}

/* تأثيرات متقدمة للخلفيات */
.gradient-bg {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #1e3a5f 100%);
}

.overlay {
    background: rgba(30, 58, 95, 0.8);
}

/* تحسين الأيقونات */
.icon-enhanced {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* إصلاح تباين النصوص في جميع الأقسام */
.text-contrast {
    color: #2d3748 !important;
    font-weight: 500 !important;
}

/* تحسين وضوح النصوص في الخلفيات الملونة */
.bg-primary .text-white {
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.bg-secondary .text-black {
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

/* تحسين النصوص في الكروت */
.card-text {
    color: #374151 !important;
    line-height: 1.7 !important;
}

/* تحسين النصوص في الفوتر */
footer .text-gray-300 {
    color: #d1d5db !important;
}

footer .text-gray-400 {
    color: #9ca3af !important;
}

footer .text-gray-500 {
    color: #6b7280 !important;
}

/* تحسين أزرار الكتب */
.book-purchase-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f) !important;
    color: #000000 !important;
    font-weight: 600 !important;
    text-shadow: none !important;
    border: 1px solid #d4af37 !important;
}

.book-purchase-btn:hover {
    background: linear-gradient(135deg, #f4d03f, #d4af37) !important;
    color: #000000 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
}

/* تحسين النصوص في العدادات */
.stats-counter {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}

/* تحسين قابلية القراءة في النماذج */
input::placeholder,
textarea::placeholder {
    color: rgba(191, 219, 254, 0.8) !important;
}

select option {
    color: #1f2937 !important;
    background-color: #ffffff !important;
}

/* تحسين النصوص في الشهادات */
.certificate-text {
    color: #1e40af !important;
    font-weight: 600 !important;
}

/* تحسين التباين العام */
p, li, span {
    color: #374151;
    line-height: 1.6;
}

.text-primary {
    color: #1e3a5f !important;
}

/* تحسين النصوص الثانوية */
.text-secondary-readable {
    color: #1f2937 !important;
    font-weight: 500 !important;
}

/* تحسين الروابط */
a {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

/* تحسين وضوح النص في الـ Hero section */
#home .text-white {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
    font-weight: 500 !important;
}

#home p.text-white {
    color: #f8fafc !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7) !important;
}

/* تحسين وضوح النصوص في قسم التواصل */
#contact .text-white {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4) !important;
}

#contact label {
    color: #ffffff !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4) !important;
}

#contact input,
#contact textarea,
#contact select {
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    font-weight: 500 !important;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: rgba(229, 231, 235, 0.9) !important;
    font-weight: 400 !important;
}

/* تحسين أزرار السوشيال ميديا */
#contact .social-btn {
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* إصلاح نهائي لعنوان "تواصل معي" */
#contact h2 {
    color: #ffffff !important;
    text-shadow: 0 3px 8px rgba(0,0,0,0.8) !important;
    font-weight: 700 !important;
    text-transform: none !important;
    font-family: 'Amiri', serif !important;
}

/* إصلاح اتجاه أرقام الهواتف */
a[href^="tel:"] {
    direction: ltr !important;
    text-align: left !important;
    display: inline-block !important;
}

.phone-number {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: plaintext !important;
}

/* تحسينات قسم "عن الدكتور" الجديد */
#about .group:hover .fas {
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

#about .bg-white {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* تأثيرات متقدمة لقسم الرؤية والرسالة */
#vision .backdrop-blur-lg {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#vision .group:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

#vision .animate-pulse {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

#vision .animate-bounce {
    animation: bounce 2s infinite;
}

/* تأثيرات الأيقونات */
.group:hover i {
    transform: scale(1.1) rotate(5deg);
    transition: all 0.3s ease;
}

/* تحسين الاقتباس */
.fa-quote-right {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* تحسين الأزرار */
.btn-enhanced {
    position: relative;
    overflow: hidden;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-enhanced:hover::before {
    left: 100%;
}

/* تحسين البطاقات الشفافة */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* تأثيرات التدرج اللوني */
.gradient-text {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* تحسين وضوح النصوص في الأقسام الجديدة */
#vision .text-white,
#vision p,
#vision span {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
    font-weight: 600 !important;
}

#vision .text-secondary {
    color: #d4af37 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6) !important;
}

#about .text-white {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4) !important;
}

/* تحسين خاص للاقتباس */
.quote-enhanced {
    color: #ffffff !important;
    text-shadow: 0 3px 6px rgba(0,0,0,0.6) !important;
    font-weight: 600 !important;
}

/* تحسين القيم الأساسية */
#vision .fa-check-circle {
    color: #d4af37 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* تحسين العناوين في البطاقات */
#vision h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7) !important;
    font-weight: 700 !important;
}