/* _content/TinyTV.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* Styles are now handled by app.css */
/* _content/TinyTV.Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* Logo */
.logo[b-8scsheufmq] {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 3rem;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    letter-spacing: 0.15em;
}

/* Navigation Items Container */
.nav-items[b-8scsheufmq] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

/* Navigation Item */
.nav-item[b-8scsheufmq] {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--silver);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-item:hover[b-8scsheufmq],
.nav-item.active[b-8scsheufmq] {
    background: var(--gold-glow);
    color: var(--gold);
}

.nav-item.active[b-8scsheufmq]::before {
    content: '';
    position: absolute;
    left: -16px;
    width: 3px;
    height: 24px;
    background: var(--gold);
    border-radius: 0 2px 2px 0;
}

.nav-item svg[b-8scsheufmq] {
    width: 22px;
    height: 22px;
}

/* Hide labels on desktop (icon-only) */
.nav-label[b-8scsheufmq] {
    display: none;
}

/* ========================================
   RESPONSIVE - Mobile Bottom Bar
   ======================================== */

@media (max-width: 768px) {
    .logo[b-8scsheufmq] {
        display: none;
    }

    .nav-items[b-8scsheufmq] {
        flex-direction: row;
        gap: 0;
        width: 100%;
        justify-content: space-around;
    }

    .nav-item[b-8scsheufmq] {
        width: 52px;
        height: 52px;
    }

    .nav-item.active[b-8scsheufmq]::before {
        display: none;
    }

    .nav-item.active[b-8scsheufmq]::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        background: var(--gold);
        border-radius: 2px 2px 0 0;
    }
}

@media (max-width: 480px) {
    .nav-item[b-8scsheufmq] {
        width: 46px;
        height: 46px;
    }

    .nav-item svg[b-8scsheufmq] {
        width: 20px;
        height: 20px;
    }
}
