/* _content/XueCustom/Components/Layout/MainLayout.razor.rz.scp.css */
html[b-uojzxkacrt], body[b-uojzxkacrt] {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2d4f;
}

body[b-uojzxkacrt] {
    background: linear-gradient(rgba(245,250,255,0.25), rgba(245,250,255,0.25)), url('/images/himmel.png') center top / cover no-repeat fixed;
}

.site-shell[b-uojzxkacrt] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar[b-uojzxkacrt] {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand[b-uojzxkacrt] {
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
    text-decoration: none;
}
    .brand a[b-uojzxkacrt] {
        text-decoration: none;
        color: #1c2b4f;
    }

.main-nav[b-uojzxkacrt] {
    display: flex;
    gap: 30px;
}

    .main-nav a[b-uojzxkacrt] {
        text-decoration: none;
        color: #22365e;
        font-size: 0.95rem;
        font-weight: 600;
        padding: 6px 0;
        position: relative;
    }

        .main-nav a:hover[b-uojzxkacrt] {
            color: #2f73df;
        }

        .main-nav a:hover[b-uojzxkacrt]::after {
            width: 100%;
        }

        .main-nav a.active[b-uojzxkacrt] {
            color: #2f73df;
        }

        .main-nav a.active[b-uojzxkacrt]::after {
            width: 100%;
        }

        .main-nav a[b-uojzxkacrt]::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0%;
            height: 3px;
            background: #2f73df;
            border-radius: 999px;
            transition: width 0.3s ease;
        }

            .main-nav a.active[b-uojzxkacrt]::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -6px;
                height: 3px;
                width: 100%;
                border-radius: 999px;
                background: #2f73df;
            }

.instagram-button[b-uojzxkacrt] {
    text-decoration: none;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #5ba3ff 0%, #2f73df 100%);
    box-shadow: 0 8px 20px rgba(47, 115, 223, 0.22);
    white-space: nowrap;
}

    .instagram-button:hover[b-uojzxkacrt] {
        filter: brightness(1.04);
    }

.page-body[b-uojzxkacrt] {
    flex: 1;
}

@media (max-width: 980px) {
    .topbar[b-uojzxkacrt] {
        height: auto;
        padding: 16px 20px;
        gap: 14px;
        flex-direction: column;
    }

    .main-nav[b-uojzxkacrt] {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

