/* =====================================================
   أنماط الشعار الجديد
   ===================================================== */

/* الشعار الرئيسي */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* أيقونة الشعار */
.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-icon::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 ease;
}

.brand-logo:hover .logo-icon::before {
    left: 100%;
}

/* نص الشعار */
.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    line-height: 1;
}

/* شعار مبسط للجوال */
@media (max-width: 768px) {
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .logo-title {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        display: none;
    }
}

/* شعار بديل مع أيقونة مختلفة */
.logo-icon-alt {
    position: relative;
}

.logo-icon-alt::after {
    content: '⚡';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 12px;
    color: #fbbf24;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* شعار مع تأثير ثلاثي الأبعاد */
.logo-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.logo-3d:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

/* شعار مع تأثير النيون */
.logo-neon {
    box-shadow: 
        0 0 5px rgba(37, 99, 235, 0.5),
        0 0 10px rgba(37, 99, 235, 0.3),
        0 0 15px rgba(37, 99, 235, 0.1);
}

.logo-neon:hover {
    box-shadow: 
        0 0 10px rgba(37, 99, 235, 0.8),
        0 0 20px rgba(37, 99, 235, 0.5),
        0 0 30px rgba(37, 99, 235, 0.3);
} 