/* Custom styles for the logo font and transitions */
body {
    font-family: 'Inter', sans-serif;
}
.logo-font {
    font-family: 'Montserrat', sans-serif;
}
/* Enhanced dropdown functionality */
.dropdown-group {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 0.5rem;
    width: 12rem;
    background-color: transparent;
    display: none;
    z-index: 50;
}
.dropdown-group:hover .dropdown-menu {
    display: block;
}
.dropdown-content {
    padding: 0;
    background-color: white;
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden; /* prevents any inner spacing from showing as a lip */
}
.dropdown-content .dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151 !important; /* gray-700 */
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.dropdown-content .dropdown-item:first-child {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}
.dropdown-content .dropdown-item:last-child {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}
.dropdown-content .dropdown-item:hover {
    background-color: #e6f2ff !important; /* light blue */
    color: #111827 !important; /* near-black for readability */
}
.dropdown-arrow {
    margin-left: 0.25rem;
    height: 1.25rem;
    width: 1.25rem;
    color: #6b7280;
    transition: transform 0.2s ease;
}
.dropdown-group:hover .dropdown-arrow {
    transform: rotate(180deg);
}
/* Logo hover effect */
.logo-hover {
    transition: all 0.3s ease;
}
.logo-hover:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}
