/* Modern Qoortiz Logo with Dark Purple Gradient */
.qoortiz-logo {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #4A5FCC 0%, #5d87ff 25%, #6B93FF 50%, #7BA3FF 75%, #8BB3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.05em;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.logo-text:hover .qoortiz-logo {
    background: linear-gradient(135deg, #3A4FBB 0%, #4A5FCC 25%, #5d87ff 50%, #6B93FF 75%, #7BA3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px);
    filter: drop-shadow(0 2px 8px rgba(93, 135, 255, 0.3));
}

.logo-text {
    text-decoration: none !important;
    display: inline-block;
    position: relative;
}

/* Icon version for small spaces */
.qoortiz-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4A5FCC 0%, #5d87ff 25%, #6B93FF 50%, #7BA3FF 100%);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(93, 135, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.qoortiz-logo-icon:hover {
    background: linear-gradient(135deg, #3A4FBB 0%, #4A5FCC 25%, #5d87ff 50%, #6B93FF 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(93, 135, 255, 0.3);
}

/* Animated gradient background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.qoortiz-logo-animated {
    background: linear-gradient(-45deg, #8B5CF6, #A855F7, #C084FC, #E879F9, #F0ABFC);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .qoortiz-logo {
        background: linear-gradient(135deg, #5d87ff 0%, #6B93FF 25%, #7BA3FF 50%, #8BB3FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .logo-text:hover .qoortiz-logo {
        background: linear-gradient(135deg, #4A5FCC 0%, #5d87ff 25%, #6B93FF 50%, #7BA3FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .qoortiz-logo {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .qoortiz-logo {
        font-size: 2rem;
    }
    
    .qoortiz-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .qoortiz-logo {
        font-size: 1.75rem;
    }
    
    .qoortiz-logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* Loading animation */
.qoortiz-logo-loading {
    background: linear-gradient(90deg, #8B5CF6 0%, #A855F7 50%, #8B5CF6 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}