/* Custom Animations and Utilities */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

.animate-bounce-slow {
    animation: bounce 3s infinite;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F9F7F2;
}

::-webkit-scrollbar-thumb {
    background: #1A4D2E;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0F2B1A;
}

/* Active Navigation State */
.nav-link.active span {
    background-color: #E07A5F !important;
    width: 4px !important;
}

.nav-link.active span:first-child {
    background-color: #E07A5F !important;
}

/* Mobile Menu Transitions */
.mobile-link {
    position: relative;
}

.mobile-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #E07A5F;
    transition: width 0.3s ease;
}

.mobile-link:hover::after {
    width: 100%;
}
