/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-x1db8yr6qb] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-x1db8yr6qb] {
    flex: 1;
}

.sidebar[b-x1db8yr6qb] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

@media (min-width: 641px) {
    .page[b-x1db8yr6qb] {
        flex-direction: row;
    }

    .sidebar[b-x1db8yr6qb] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-r1uzb43ohm] {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

    .collapse[b-r1uzb43ohm] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-r1uzb43ohm] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/AboutMe.razor.rz.scp.css */
/*Mobile*/
@media (max-width: 640px) {
    .about-hero[b-tluwxrw3bm] {
        padding: 1rem;
        background-position: top center;
    }

    .about-card[b-tluwxrw3bm] {
        padding: 1.2rem 1.1rem;
        border-radius: 12px;
    }

    .about-title[b-tluwxrw3bm] {
        font-size: 1.6rem;
    }

    .about-text[b-tluwxrw3bm] {
        font-size: 1.02rem;
        line-height: 1.6;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.hero-video-wrap[b-lvr3cngkhy] {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}

.hero-video[b-lvr3cngkhy] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
}

.video-toggle[b-lvr3cngkhy] {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    min-width: 44px;
    min-height: 44px;
    background: rgba(0, 0, 0, .65);
    color: white;
    border: 1px solid white;
}
/* /Pages/Projects.razor.rz.scp.css */
.projects-page[b-1cp1otrx7b] {
    min-height: calc(100vh - 3.5rem); /* minus Topbar */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    width: 100%;
}

.projects-grid[b-1cp1otrx7b] {
    width: 100%;
    max-width: 900px;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card[b-1cp1otrx7b] {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.2rem;
    min-height: 90px;
    border-radius: 14px;
    background: white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    text-decoration: none; /* wichtig für NavLink */
}

    .project-card:hover[b-1cp1otrx7b] {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

/* Mobile: 1 Spalte + größere Touch-Ziele */
@media (max-width: 768px) {
    .projects-grid[b-1cp1otrx7b] {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .project-card[b-1cp1otrx7b] {
        min-height: 70px;
        font-size: 1.1rem;
        padding: 1.1rem;
    }
}
