/* /Components/Layout/MainLayout.razor.rz.scp.css */
header[b-iyntx2cybb] {
    position: sticky;
    top: 0;
    z-index: 100;
}

main[b-iyntx2cybb] {
    min-height: calc(100vh - var(--nav-height));
}

#blazor-error-ui[b-iyntx2cybb] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-iyntx2cybb] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ── Navbar shell ── */
.top-nav[b-lajjurdrsy] {
    background: rgba(10, 18, 35, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: var(--nav-height);
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-container[b-lajjurdrsy] {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Brand / headshot ── */
.brand-group[b-lajjurdrsy] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: auto;
    text-decoration: none;
    cursor: pointer;
}

.brand-avatar[b-lajjurdrsy] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border: 2px solid rgba(99, 162, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.brand-group:hover .brand-avatar[b-lajjurdrsy] {
    border-color: rgba(99, 162, 255, 0.8);
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.45);
}

.brand-avatar span[b-lajjurdrsy] {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.brand-avatar-img[b-lajjurdrsy] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-brand[b-lajjurdrsy] {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s;
}

.brand-group:hover .nav-brand[b-lajjurdrsy] {
    color: #93c5fd;
}

/* ── Hidden toggle checkbox ── */
.nav-toggle-input[b-lajjurdrsy] {
    display: none;
}

/* ── Hamburger button ── */
.nav-toggle-btn[b-lajjurdrsy] {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    align-self: center;
}

    .nav-toggle-btn span[b-lajjurdrsy] {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #94a3b8;
        border-radius: 2px;
        transition: background-color 0.2s;
    }

    .nav-toggle-btn:hover span[b-lajjurdrsy] {
        background-color: white;
    }

/* ── Nav menu container ── */
.nav-menu[b-lajjurdrsy] {
    display: flex;
    align-items: stretch;
}

/* ── Nav links — ::deep required so styles reach <a> rendered by <NavLink> ── */
.nav-menu[b-lajjurdrsy]  .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    white-space: nowrap;
}

/* Sliding underline */
.nav-menu[b-lajjurdrsy]  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.5rem;
    right: 0.5rem;
    height: 2px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu[b-lajjurdrsy]  .nav-link:hover {
    color: white;
}

.nav-menu[b-lajjurdrsy]  .nav-link:hover::after {
    transform: scaleX(1);
}

/* Active state */
.nav-menu[b-lajjurdrsy]  .nav-link.active {
    color: white;
}

.nav-menu[b-lajjurdrsy]  .nav-link.active::after {
    transform: scaleX(1);
    background: linear-gradient(90deg, #3b82f6, #93c5fd);
}

/* Subtle top glow on active */
.nav-menu[b-lajjurdrsy]  .nav-link.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0.5rem;
    right: 0.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 162, 255, 0.35), transparent);
}

/* ── Mobile ── */
@media (max-width: 700px) {
    .nav-toggle-btn[b-lajjurdrsy] {
        display: flex;
    }

    .nav-menu[b-lajjurdrsy] {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: rgba(10, 18, 35, 0.98);
        backdrop-filter: blur(12px);
        padding: 0.5rem 1rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu[b-lajjurdrsy]  .nav-link {
        padding: 0.9rem 0.75rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu[b-lajjurdrsy]  .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu[b-lajjurdrsy]  .nav-link::after {
        bottom: 0;
        left: 0;
        right: auto;
        width: 3px;
        height: 100%;
        border-radius: 0 2px 2px 0;
        transform: scaleY(0);
        transform-origin: top center;
    }

    .nav-menu[b-lajjurdrsy]  .nav-link:hover::after,
    .nav-menu[b-lajjurdrsy]  .nav-link.active::after {
        transform: scaleY(1);
    }

    .nav-menu[b-lajjurdrsy]  .nav-link.active::before {
        display: none;
    }

    .nav-toggle-input:checked ~ .nav-menu[b-lajjurdrsy] {
        display: flex;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
.about-body[b-pjxd4mvax1] {
    padding: 4rem 1.5rem;
}

.about-grid[b-pjxd4mvax1] {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .about-grid[b-pjxd4mvax1] {
        grid-template-columns: 1fr;
    }

    .about-sidebar[b-pjxd4mvax1] {
        order: -1;
    }
}

.about-section[b-pjxd4mvax1] {
    margin-bottom: 3rem;
}

.about-section h2[b-pjxd4mvax1] {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-border);
}

.about-section p[b-pjxd4mvax1] {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* Skills */
.skills-grid[b-pjxd4mvax1] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.skill-group h3[b-pjxd4mvax1] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #3b82f6;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.skill-group ul[b-pjxd4mvax1] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-group li[b-pjxd4mvax1] {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--color-border);
}

    .skill-group li:last-child[b-pjxd4mvax1] {
        border-bottom: none;
    }

/* Sidebar card */
.info-card[b-pjxd4mvax1] {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
}

.info-card-avatar[b-pjxd4mvax1] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1e3a5f);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-card-name[b-pjxd4mvax1] {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--color-text);
}

.info-card-title[b-pjxd4mvax1] {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin: 0 0 1.25rem;
}

.info-card-links[b-pjxd4mvax1] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .info-card-links a[b-pjxd4mvax1] {
        color: #3b82f6;
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
    }

        .info-card-links a:hover[b-pjxd4mvax1] {
            text-decoration: underline;
        }
/* /Components/Pages/Home.razor.rz.scp.css */
/* ── Hero ── */
.hero[b-z5byh4vlt2] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem 9rem;
    position: relative;
    overflow: hidden;
}

.hero-content[b-z5byh4vlt2] {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-greeting[b-z5byh4vlt2] {
    display: block;
    color: #93c5fd;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.hero-name[b-z5byh4vlt2] {
    color: #f1f5f9;
    font-size: clamp(2.8rem, 9vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0 0 0.4rem;
}

.hero-role[b-z5byh4vlt2] {
    color: #3b82f6;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 500;
    margin: 0 0 0.75rem;
}

.hero-tagline[b-z5byh4vlt2] {
    color: #94a3b8;
    font-size: 1.05rem;
    margin: 0 0 2.5rem;
}

.hero-cta[b-z5byh4vlt2] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary[b-z5byh4vlt2] {
    display: inline-block;
    background-color: #3b82f6;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.15s, transform 0.1s;
}

    .cta-primary:hover[b-z5byh4vlt2] {
        background-color: #2563eb;
        color: white;
        transform: translateY(-1px);
    }

.cta-outline[b-z5byh4vlt2] {
    display: inline-block;
    background-color: transparent;
    color: #e2e8f0;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.15s, border-color 0.15s, transform 0.1s;
}

    .cta-outline:hover[b-z5byh4vlt2] {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.4);
        color: white;
        transform: translateY(-1px);
    }

/* ── Cards ── */
.cards-section[b-z5byh4vlt2] {
    background: var(--color-bg-alt);
    padding: 4rem 1.5rem;
}

.cards-grid[b-z5byh4vlt2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card-link[b-z5byh4vlt2] {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
}

    .card-link:hover[b-z5byh4vlt2] {
        border-color: #93c5fd;
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
        transform: translateY(-2px);
        color: var(--color-text);
    }

.card-label[b-z5byh4vlt2] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.card-desc[b-z5byh4vlt2] {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}

.card-arrow[b-z5byh4vlt2] {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.875rem;
}
/* /Components/Pages/Journey.razor.rz.scp.css */
.journey-body[b-uyqne45yp5] {
    padding: 4rem 1.5rem;
}

.journey-body .section-container[b-uyqne45yp5] {
    max-width: 800px;
}

.coming-soon-note[b-uyqne45yp5] {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    color: #1d4ed8;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 3rem;
}

/* ── Timeline ── */
.timeline[b-uyqne45yp5] {
    position: relative;
    padding-left: 2rem;
}

    .timeline[b-uyqne45yp5]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.4rem;
        bottom: 0.4rem;
        width: 2px;
        background: linear-gradient(to bottom, #3b82f6 80%, #e2e8f0);
    }

.timeline-item[b-uyqne45yp5] {
    position: relative;
    padding-bottom: 3rem;
}

    .timeline-item:last-child[b-uyqne45yp5] {
        padding-bottom: 0;
    }

.timeline-marker[b-uyqne45yp5] {
    position: absolute;
    left: -2.44rem;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #3b82f6;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #3b82f6;
}

.timeline-future .timeline-marker[b-uyqne45yp5] {
    background: #e2e8f0;
    box-shadow: 0 0 0 2px #cbd5e1;
}

.timeline-date[b-uyqne45yp5] {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #3b82f6;
    margin-bottom: 0.35rem;
}

.timeline-future .timeline-date[b-uyqne45yp5] {
    color: #94a3b8;
}

.timeline-title[b-uyqne45yp5] {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.5rem;
}

.timeline-desc[b-uyqne45yp5] {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.925rem;
    margin: 0;
}
/* /Components/Pages/Projects.razor.rz.scp.css */
.projects-body[b-stlojz7d4j] {
    padding: 4rem 1.5rem;
}

.projects-grid[b-stlojz7d4j] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card[b-stlojz7d4j] {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.75rem;
    background: white;
    transition: border-color 0.15s, box-shadow 0.15s;
}

    .project-card:hover[b-stlojz7d4j] {
        border-color: #93c5fd;
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
    }

.project-card-header[b-stlojz7d4j] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.project-name[b-stlojz7d4j] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.project-link[b-stlojz7d4j] {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.825rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

    .project-link:hover[b-stlojz7d4j] {
        text-decoration: underline;
    }

.project-desc[b-stlojz7d4j] {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0 0 1.25rem;
}

.project-tags[b-stlojz7d4j] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag[b-stlojz7d4j] {
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}
/* /Components/Pages/Resume.razor.rz.scp.css */
.resume-page[b-zstw4al0eo] {
    background: var(--color-bg-alt);
    min-height: 100vh;
    padding: 3rem 1.5rem;
}

.resume-container[b-zstw4al0eo] {
    background: white;
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 3.5rem;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 640px) {
    .resume-container[b-zstw4al0eo] {
        padding: 2rem 1.25rem;
    }
}

/* Header */
.resume-header[b-zstw4al0eo] {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--color-text);
}

.resume-header h1[b-zstw4al0eo] {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 0.4rem;
    color: var(--color-text);
}

.resume-contact[b-zstw4al0eo] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.4rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    align-items: center;
}

    .resume-contact a[b-zstw4al0eo] {
        color: var(--color-text-muted);
        text-decoration: none;
    }

        .resume-contact a:hover[b-zstw4al0eo] {
            color: var(--color-accent);
            text-decoration: underline;
        }

.sep[b-zstw4al0eo] {
    color: var(--color-border);
    font-weight: 700;
}

/* Sections */
.resume-section[b-zstw4al0eo] {
    margin-bottom: 1.75rem;
}

.resume-section-title[b-zstw4al0eo] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-text-muted);
    margin: 0 0 0.65rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--color-border);
}

.resume-summary[b-zstw4al0eo] {
    color: var(--color-text-muted);
    line-height: 1.75;
    font-size: 0.9rem;
    margin: 0;
}

/* Skills */
.resume-skills[b-zstw4al0eo] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.skill-row[b-zstw4al0eo] {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.skill-label[b-zstw4al0eo] {
    font-weight: 600;
    color: var(--color-text);
    min-width: 130px;
    flex-shrink: 0;
}

.skill-value[b-zstw4al0eo] {
    color: var(--color-text-muted);
}

/* Entries */
.resume-entry[b-zstw4al0eo] {
    margin-bottom: 1.25rem;
}

    .resume-entry:last-child[b-zstw4al0eo] {
        margin-bottom: 0;
    }

.resume-entry-header[b-zstw4al0eo] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.entry-title[b-zstw4al0eo] {
    font-weight: 700;
    font-size: 0.925rem;
    color: var(--color-text);
}

.entry-company[b-zstw4al0eo] {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.entry-date[b-zstw4al0eo] {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.entry-link[b-zstw4al0eo] {
    font-size: 0.8rem;
    color: var(--color-accent);
    text-decoration: none;
}

    .entry-link:hover[b-zstw4al0eo] {
        text-decoration: underline;
    }

.entry-bullets[b-zstw4al0eo] {
    margin: 0.35rem 0 0;
    padding-left: 1.25rem;
}

    .entry-bullets li[b-zstw4al0eo] {
        color: var(--color-text-muted);
        font-size: 0.875rem;
        line-height: 1.7;
        margin-bottom: 0.15rem;
    }

.entry-desc[b-zstw4al0eo] {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0.25rem 0 0.15rem;
}

.entry-tech[b-zstw4al0eo] {
    color: #3b82f6;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
}
