/* Animated Logo Styles */
.hero-title-container {
    display: flex;
    align-items: left;
    position: relative;
    margin-bottom: 10px;
}

.hero-title-container-logo {
    padding-top: 100px;
    font-size: 130px !important;
    display: flex !important;
    align-items: left !important; 
    position: relative !important;
    margin-bottom: 10px !important;
    margin-left: 10px !important;
    margin-top: 10px !important;
}

.hero-title {
    margin-bottom: 0 !important; 
}

.animated-logo {
    position: relative;
    width: 180px;
    height: 180px;
    margin-right: 30px;
    transform-origin: center;
    animation: logoFloat 5s ease-in-out infinite;
    flex-shrink: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(125, 128, 255, 0.3));
    animation: logoRotate 20s linear infinite, logoScale 8s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(255, 140, 0, 0.4) 0%,
        rgba(125, 128, 255, 0.4) 40%,
        rgba(255, 0, 128, 0.1) 60%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    animation: glowPulse 7s ease-in-out infinite;
    opacity: 0.8;
}

/* Floating animation */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Subtle rotation animation */
@keyframes logoRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Pulsing glow effect */
@keyframes glowPulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Subtle scale animation */
@keyframes logoScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.logo-container {
    display: flex;
    align-items: center;
    
    /* justify-content: center; */
}

/* Add mouse interaction effect */
.animated-logo:hover .logo-image {
    animation-play-state: paused;
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.6));
}

.animated-logo:hover .logo-glow {
    background: radial-gradient(
        circle at center,
        rgba(255, 140, 0, 0.6) 0%,
        rgba(255, 0, 128, 0.4) 40%,
        rgba(125, 128, 255, 0.2) 60%,
        transparent 70%
    );
    animation-play-state: paused;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .hero-title-container-logo {
        padding-top: 100px;
        font-size: 70px !important;
        display: flex !important;
        align-items: left !important; 
        position: relative !important;
        margin-bottom: 10px !important;
        margin-left: 10px !important;
        margin-top: 10px !important;
    }

    .hero-title-container {
        flex-direction: column;
        align-items: left;
        text-align: left;
    }
    
    .animated-logo {
        margin-right: 0;
        margin-bottom: 20px;
        width: 150px;
        height: 150px;
    }
    
    .logo-glow {
        width: 150px;
        height: 150px;
    }
} 