/* Animated Text-Only Logo */
.logo-text {
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #10b981 50%, #2563eb 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    position: relative;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-text::before {
    content: 'Advisebee';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #2563eb 0%, #10b981 50%, #2563eb 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
    animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #10b981);
    animation: underlineExpand 2s ease-in-out infinite;
    border-radius: 2px;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: #6b7280;
    margin-top: 2px;
    display: block;
    animation: fadeInUp 1s ease;
    letter-spacing: 0.5px;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.02);
    }
}

@keyframes underlineExpand {
    0% {
        width: 0;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Container */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-container:hover .logo-text {
    animation-duration: 1.5s;
}

.logo-container:hover .logo-text::after {
    animation-duration: 1s;
}














