/* /Layout/MainLayout.razor.rz.scp.css */
.portfolio-layout[b-o13yv19y3x] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.portfolio-header[b-o13yv19y3x] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar[b-o13yv19y3x] {
    padding: 0;
}

.nav-container[b-o13yv19y3x] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand[b-o13yv19y3x] {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

    .nav-brand:hover[b-o13yv19y3x] {
        color: #0071c1;
    }

.brand-text[b-o13yv19y3x] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle[b-o13yv19y3x] {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.hamburger-line[b-o13yv19y3x] {
    display: block;
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.nav-menu-wrapper[b-o13yv19y3x] {
    display: flex;
}

.nav-menu[b-o13yv19y3x] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item[b-o13yv19y3x] {
    margin: 0;
}

.nav-link[b-o13yv19y3x] {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

    .nav-link[b-o13yv19y3x]::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        transition: width 0.3s ease;
    }

    .nav-link:hover[b-o13yv19y3x],
    .nav-link.active[b-o13yv19y3x] {
        color: #1a1a1a;
    }

        .nav-link:hover[b-o13yv19y3x]::after,
        .nav-link.active[b-o13yv19y3x]::after {
            width: 100%;
        }

.portfolio-main[b-o13yv19y3x] {
    flex: 1;
    width: 100%;
}

.portfolio-footer[b-o13yv19y3x] {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-container[b-o13yv19y3x] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content[b-o13yv19y3x] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

    .footer-content p[b-o13yv19y3x] {
        margin: 0;
        color: #a0a0a0;
    }

.social-links[b-o13yv19y3x] {
    display: flex;
    gap: 1.5rem;
}

    .social-links a[b-o13yv19y3x] {
        color: #a0a0a0;
        transition: color 0.3s ease, transform 0.3s ease;
        display: inline-block;
    }

        .social-links a:hover[b-o13yv19y3x] {
            color: #fff;
            transform: translateY(-2px);
        }

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle[b-o13yv19y3x] {
        display: flex;
        z-index: 1001;
    }

    .nav-menu-wrapper[b-o13yv19y3x] {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .nav-menu-wrapper.collapsed[b-o13yv19y3x] {
            right: -100%;
        }

        .nav-menu-wrapper:not(.collapsed)[b-o13yv19y3x] {
            right: 0;
        }

    .nav-menu[b-o13yv19y3x] {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-link[b-o13yv19y3x] {
        font-size: 1.25rem;
        padding: 0.75rem 1rem;
    }

    /* Hamburger animation */
    .nav-menu-wrapper:not(.collapsed) ~ .nav-toggle .hamburger-line:nth-child(1)[b-o13yv19y3x] {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-menu-wrapper:not(.collapsed) ~ .nav-toggle .hamburger-line:nth-child(2)[b-o13yv19y3x] {
        opacity: 0;
    }

    .nav-menu-wrapper:not(.collapsed) ~ .nav-toggle .hamburger-line:nth-child(3)[b-o13yv19y3x] {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .footer-content[b-o13yv19y3x] {
        flex-direction: column;
        text-align: center;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-i5xqj7znm4] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-i5xqj7znm4] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-i5xqj7znm4] {
    font-size: 1.1rem;
}

.bi[b-i5xqj7znm4] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-i5xqj7znm4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-i5xqj7znm4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-i5xqj7znm4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-i5xqj7znm4] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-i5xqj7znm4] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-i5xqj7znm4] {
        padding-bottom: 1rem;
    }

    .nav-item[b-i5xqj7znm4]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-i5xqj7znm4]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-i5xqj7znm4]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-i5xqj7znm4] {
        display: none;
    }

    .collapse[b-i5xqj7znm4] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-i5xqj7znm4] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
