/* BEZA Finance - Common Styles */

/* Base Typography */
body {
    font-family: 'Inter', sans-serif;
}

/* Navigation Link Underline Effect */
.nav-link {
    position: relative;
}

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

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

/* Dropdown Menu Hover Bridge Fix */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

/* Dropdown Display (requires Tailwind 'hidden' class on dropdown-menu) */
.dropdown:hover .dropdown-menu {
    display: block;
}