/* Custom styles that can't be easily achieved with Tailwind */
body {
    scroll-behavior: smooth;
    font-family: 'Minerva', 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
}

/* Animation for mobile menu */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Talent card hover effect */
.talent-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Custom underline for links */
.link-underline {
    position: relative;
}

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

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

/* Ensure hover effect applies smoothly */
.talent-card {
    transition: transform 0.3s ease;
}
