/* Base styles and utilities not in Tailwind input.css */
.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.dark-glass {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dropdown transition */
.group:hover .group-hover\:block {
    display: block;
}

/* Custom Hover Nav Link */
.nav-link {
    position: relative;
    color: #000;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-link:hover {
    color: #5d969d;
}

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