/* Hero Title Animation Fix */
.hero-title {
    margin-top: -30px; /* Move the entire title up */
    margin-bottom: 1.5rem;
    line-height: 1.1; /* Slightly increased to show descenders */
    padding-bottom: 0.2rem; /* Add padding to ensure descenders are visible */
    opacity: 0;
    color: #1e3f66; /* Blue color for the title */
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* Make all text appear together */
.hero-title .line {
    display: block;
    margin-bottom: 0.3rem; /* Slightly increased to accommodate descenders */
    padding-bottom: 0.1rem; /* Extra space for descenders */
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    overflow: visible; /* Ensure descenders are not cut off */
}

/* Remove individual word animations */
.hero-title .word {
    display: inline-block;
    opacity: 1;
    transform: none;
    animation: none;
}

/* Single animation for the entire title */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure the hero content is properly aligned */
.hero-content {
    padding-top: 2rem; /* Adjust this value to move the entire content up/down */
}

/* Adjust for mobile responsiveness */
@media (max-width: 768px) {
    .hero-title {
        margin-top: -15px;
        font-size: 2.2rem;
    }
    
    .hero-title .line {
        margin-bottom: 0.3rem;
    }
    
    .hero-content {
        padding-top: 1rem;
    }
}
