/* ====================================
   Navigation Menu Styles
   ==================================== */

/* Desktop Navigation Links */
.nav-link-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: #14142b;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.nav-link-desktop .nav-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.nav-link-desktop:hover {
    color: #F6C344;
    background: rgba(246, 195, 68, 0.08);
}

.nav-link-desktop:hover .nav-icon {
    transform: scale(1.1);
}

/* Mobile Navigation Links */
.nav-link-mobile {
    font-size: 1.125rem;
    font-weight: 600;
    color: #14142b;
    text-decoration: none;
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-link-mobile:hover,
.nav-link-mobile:active {
    background: rgba(246, 195, 68, 0.12);
    color: #1a1a1a;
    font-weight: 700;
}

/* Hide desktop nav on mobile */
@media screen and (max-width: 1023px) {
    nav.tw-hidden.desktop\:tw-flex {
        display: none !important;
    }
}

/* Show desktop nav on desktop */
@media screen and (min-width: 1024px) {
    nav.tw-hidden.desktop\:tw-flex {
        display: flex !important;
    }
}
