/* =================================
------------------------------------
  Splash-Invest Logo Styles
  Professional Logo Design
 ------------------------------------ 
 ====================================*/

/* Main Logo Container */
.splash-invest-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
}

.splash-invest-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Logo Icon */
.splash-invest-logo::before {
    content: "💎";
    font-size: 2rem;
    margin-right: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

/* Alternative with Investment Icon */
.splash-invest-logo.with-icon::before {
    content: "📈";
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Text Styling */
.splash-invest-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.splash-part {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.invest-part {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -0.2rem;
}

/* Compact Logo for Small Spaces */
.splash-invest-logo.compact {
    font-size: 1.4rem;
}

.splash-invest-logo.compact::before {
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
    margin-right: 0.4rem;
}

.splash-invest-logo.compact .splash-part {
    font-size: 1.4rem;
}

.splash-invest-logo.compact .invest-part {
    font-size: 1rem;
}

/* Header Logo Specific */
.navbar-brand.splash-invest-logo {
    font-size: 1.6rem;
    margin-right: 1rem;
}

.navbar-brand.splash-invest-logo::before {
    width: 36px;
    height: 36px;
    font-size: 1.8rem;
}

/* Footer Logo */
.footer-logo.splash-invest-logo {
    font-size: 1.5rem;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
}

.footer-logo.splash-invest-logo::before {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Animated Glow Effect */
@keyframes logoGlow {
    0% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
        transform: scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .splash-invest-logo {
        font-size: 1.4rem;
    }
    
    .splash-invest-logo::before {
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
        margin-right: 0.4rem;
    }
    
    .splash-part {
        font-size: 1.4rem;
    }
    
    .invest-part {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .splash-invest-logo {
        font-size: 1.2rem;
    }
    
    .splash-invest-logo::before {
        width: 28px;
        height: 28px;
        font-size: 1.3rem;
        margin-right: 0.3rem;
    }
    
    .splash-part {
        font-size: 1.2rem;
    }
    
    .invest-part {
        font-size: 0.9rem;
    }
}

/* Alternative Logo Styles */

/* Style 1: Single Line with Separator */
.splash-invest-logo.style-1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.splash-invest-logo.style-1 .splash-part::after {
    content: "-";
    margin: 0 0.2rem;
    color: #667eea;
}

/* Style 2: Stacked with Background */
.splash-invest-logo.style-2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.splash-invest-logo.style-2 .splash-part,
.splash-invest-logo.style-2 .invest-part {
    -webkit-text-fill-color: white;
    background: none;
    color: white;
}

/* Style 3: Minimal Clean */
.splash-invest-logo.style-3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #333;
    background: none;
    -webkit-text-fill-color: #333;
}

.splash-invest-logo.style-3::before {
    content: "●";
    color: #667eea;
    background: none;
    box-shadow: none;
    animation: none;
}

.splash-invest-logo.style-3 .splash-part {
    color: #333;
    background: none;
    -webkit-text-fill-color: #333;
}

.splash-invest-logo.style-3 .invest-part {
    color: #667eea;
    background: none;
    -webkit-text-fill-color: #667eea;
}

/* Dark Theme Support */
[data-theme="dark"] .splash-invest-logo.style-3 {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

[data-theme="dark"] .splash-invest-logo.style-3 .splash-part {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

/* Loading Animation */
.splash-invest-logo.loading::before {
    animation: logoSpin 1s linear infinite;
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover Effects */
.splash-invest-logo:hover::before {
    animation-duration: 0.5s;
}

.splash-invest-logo:hover .splash-part {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Print Styles */
@media print {
    .splash-invest-logo {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
        background: none !important;
    }
    
    .splash-invest-logo::before {
        display: none;
    }
}