/* Enhanced Section Title Animations */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-glow {
    position: relative;
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #C0C0C0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(192, 192, 192, 0.3));
    }
    100% {
        filter: brightness(1.1) drop-shadow(0 0 15px rgba(192, 192, 192, 0.5));
    }
}

.title-underline {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 1rem auto 0;
    animation: underlineExpand 1.5s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes underlineExpand {
    to {
        width: 200px;
    }
}

/* Section title hover effects */
.section-title:hover .title-glow {
    animation: titleGlowHover 0.3s ease-out forwards;
}

@keyframes titleGlowHover {
    to {
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(192, 192, 192, 0.7));
    }
}

.section-title:hover .title-underline {
    background: linear-gradient(90deg, var(--accent), var(--accent));
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

/* Mobile responsiveness for enhanced titles */
@media (max-width: 768px) {
    .title-glow {
        font-size: 2.5rem;
    }
    
    .title-underline {
        height: 2px;
    }
    
    @keyframes underlineExpand {
        to {
            width: 150px;
        }
    }
}

@media (max-width: 480px) {
    .title-glow {
        font-size: 2rem;
    }
    
    @keyframes underlineExpand {
        to {
            width: 100px;
        }
    }
} 