/* Custom Animations and Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Custom Selection Color */
::selection {
    background-color: #800020;
    color: white;
}

/* Input Focus Styles */
input:focus,
textarea:focus,
select:focus {
    border-bottom-color: #800020 !important;
}

/* Subtle Hover Effects */
.group:hover .group-hover\\:text-transcend-burgundy {
    color: #800020;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#mobile-menu.hidden {
    max-height: 0;
    opacity: 0;
}

#mobile-menu:not(.hidden) {
    max-height: 400px;
    opacity: 1;
}
