/* Navbar animations */
.nav-item {
    transition: transform 0.3s ease;
}

.nav-item:hover {
    transform: translateY(-2px);
}

.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

/* Hero section animations */
.hero-content h3 {
    animation: fadeInUp 1s ease;
}

.callToaction-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.callToaction-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Article animations */
.article-detail {
    transition: transform 0.3s ease;
}

.article-detail:hover {
    transform: translateY(-5px);
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
