/* _content/ZackV2/Components/Layout/MainLayout.razor.rz.scp.css */
body[b-3nbv6kdze2], html[b-3nbv6kdze2] {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #ccd6f6;
    font-family: 'Oswald', 'sans-serif';
}

/* STACK TopBar above .page */
.body[b-3nbv6kdze2] {
    display: flex;
    flex-direction: column;   /* ← stack vertically */
    height: 100vh;
    margin: 0;
}

/* let .page fill remaining space and scroll */
.page[b-3nbv6kdze2] {
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 74px;
}
/* _content/ZackV2/Components/Layout/Sidebar.razor.rz.scp.css */
.sidebar[b-ru9qjsm4xt] {
    /* let the parent .split-container handle positioning and height */
    position: relative;
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    background: #fff;
    overflow-y: hidden;
}

/* = Logo = */
.logo-icon[b-ru9qjsm4xt] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tab-dark);
    border: 2px solid var(--tab-dark);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 2rem;
    display: inline-block;
}

/* = Header = */
.sidebar-header[b-ru9qjsm4xt] {
    margin-bottom: 2rem;
}
.sidebar-header h2[b-ru9qjsm4xt] {
    margin: 0;
    font-size: 1.3rem;
    color: var(--tab-dark);
}
.sidebar-header p[b-ru9qjsm4xt] {
    margin: 0;
    font-size: 0.85rem;
    color: var(--tab-dark);
}

/* = Nav Links = */
.nav-links[b-ru9qjsm4xt] {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.nav-links a[b-ru9qjsm4xt] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 1.5rem;
    text-decoration: none;
    color: var(--tab-dark);
    transition: background 0.2s, color 0.2s;
}

.nav-links a.active[b-ru9qjsm4xt] {
    color: #000;
}
.nav-links a:hover i[b-ru9qjsm4xt],
.nav-links a.active i[b-ru9qjsm4xt] {
    color: #000;
}

/* = Underline Decoration = */
.nav-links .link-text[b-ru9qjsm4xt] {
    position: relative;
    padding-bottom: 4px;
}
.nav-links .link-text[b-ru9qjsm4xt]::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}
.nav-links a:hover .link-text[b-ru9qjsm4xt]::after,
.nav-links a.active .link-text[b-ru9qjsm4xt]::after {
    transform: scaleX(1);
}

/* = Social Icons (bottom) = */
.social-icons[b-ru9qjsm4xt] {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
}
.social-icons a[b-ru9qjsm4xt] {
    font-size: 1.4rem;
    color: var(--tab-dark);
    transition: color 0.2s;
}
.social-icons a:hover[b-ru9qjsm4xt] {
    color: #007bff;
}
/* _content/ZackV2/Components/Layout/TopBar.razor.rz.scp.css */
html[b-tkamqis9xq] {
    scroll-behavior: smooth;
    height: 100%;
    margin: 0;
    padding: 0;
}

body[b-tkamqis9xq] {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: 'Inter', sans-serif;
    height: 100%;
}

.topbar[b-tkamqis9xq] {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.75rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    z-index: 1000;
}

/* ── Left group: logo + name/title ───────────── */
.topbar-left[b-tkamqis9xq] {
    display: flex;
    align-items: center;
    gap: 1rem;            /* space between logo and text */
}

/* Name & role stacked */
.topbar-header[b-tkamqis9xq] {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    line-height: 1;
}
.topbar-name[b-tkamqis9xq] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
}
.topbar-role[b-tkamqis9xq] {
    font-size: 0.85rem;
    color: #555;
    margin-top: 2px;
}

@media (max-width: 600px) {
    .topbar-header[b-tkamqis9xq] {
        display: none;
    }
    
    .logo-icon[b-tkamqis9xq] {
        margin-right: 0.5rem;
    }
}

@media (max-width: 970px) {
    /* turn your vertical links into a horizontal icon bar */
    .nav-links[b-tkamqis9xq] {
        display: flex;
        flex-direction: row;
        justify-content: center;  /* or start/end, as you like */
        gap: 0.5rem !important;   /* 👈 tighter spacing between icons */
        margin: 1rem 0;           /* optional vertical margin */
    }
        .nav-links .link-text[b-tkamqis9xq] {
            display: none;
        }
    
        /* shrink the click area a bit if you want */
        .nav-links a[b-tkamqis9xq] {
            padding: 0.25rem;
        }
}

.logo-icon[b-tkamqis9xq] {
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--tab-dark);
    border: 2px solid var(--tab-dark);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    line-height: 1.5;
}

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

.nav-links li a[b-tkamqis9xq] {
    display: flex;
    align-items: center;
    color: var(--tab-dark);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
    font-size: 1rem;
    line-height: 1rem;
    cursor: pointer;
}

.nav-links li a i[b-tkamqis9xq] {
    color: var(--tab-dark);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1rem;
    cursor: pointer;
}

.nav-links li a:hover i[b-tkamqis9xq],
.nav-links li a.active i[b-tkamqis9xq] {
    color: var(--tab-dark);
}

.link-text[b-tkamqis9xq] {
    position: relative;
}

.link-text[b-tkamqis9xq]::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--tab-dark);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.social-icon[b-tkamqis9xq] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;                /* default black */
    font-size: 1.25rem;
    margin-left: 1rem;          /* spacing between icons */
    transition: color 0.2s, transform 0.2s;
}
.social-icon:first-child[b-tkamqis9xq] {
    margin-left: 0;             /* no gap before first one */
}
.social-icon:hover[b-tkamqis9xq] {
    color: #555;                /* lighter on hover */
    transform: translateY(-2px);/* subtle lift */
}

.nav-links li a:hover .link-text[b-tkamqis9xq]::after,
.nav-links li a.active .link-text[b-tkamqis9xq]::after {
    transform: scaleX(1);
}
/* _content/ZackV2/Components/Pages/AboutMe.razor.rz.scp.css */
.about-me[b-te2w7i0tm9] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* LEFT PANE */
.profile-left[b-te2w7i0tm9] {
    display: flex;
    flex-direction: column;
}

/* RIGHT PANE */
.profile-right[b-te2w7i0tm9] {
    display: flex;
    flex-direction: column;
}

.avatar[b-te2w7i0tm9] {
    background: url('zack-profile.png') center/cover no-repeat;
    border-radius: 1.5rem;
    /* make it a square by default, but scale to its container */
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
}

/* HEADER & METADATA */
.profile-header[b-te2w7i0tm9] {
    margin-bottom: 2rem;
    text-align: center;
}

.profile-header h1[b-te2w7i0tm9] {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    color: var(--tab-dark);
}

.profile-header .meta[b-te2w7i0tm9] {
    margin: 0 0 1rem;
    color: var(--tab-dark);
    font-size: 0.9rem;
}

.profile-bio[b-te2w7i0tm9] {
    width: 100%;
    border: none;
    background: transparent;
}

.profile-bio summary[b-te2w7i0tm9] {
    cursor: pointer;
    padding: 1rem 0;
    list-style: none;
    position: relative;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--tab-dark);
    border: 1px solid var(--badge-foreground);
    border-radius: 1.5rem;
}

.profile-bio summary[b-te2w7i0tm9]::marker,
.profile-bio summary[b-te2w7i0tm9]::-webkit-details-marker {
    display: none;
}

.profile-bio summary:hover[b-te2w7i0tm9] {
    background: var(--blurb);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
}

.profile-bio summary[b-te2w7i0tm9]::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid var(--badge-foreground);
    transition: all 0.2s ease;
}

.profile-bio summary:hover[b-te2w7i0tm9]::after {
    border-top-color: var(--tab-dark);
    right: 1rem;
}

.profile-bio[open] summary[b-te2w7i0tm9]::after {
    transform: translateY(-50%) rotate(180deg);
}

.description-text[b-te2w7i0tm9] {
    padding: 1.5rem 0 0.5rem 0;
    color: var(--badge-foreground);
    line-height: 1.6;
    font-size: 1rem;
    animation: fadeIn-b-te2w7i0tm9 0.3s ease-out;
}

@keyframes fadeIn-b-te2w7i0tm9 {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-bio summary:focus[b-te2w7i0tm9] {
    outline: 2px solid var(--tab-dark);
    outline-offset: 2px;
    border-radius: 4px;
}

.description-text[b-te2w7i0tm9] {
    white-space: pre-wrap;
    overflow-wrap: break-word;
    line-height: 1.6;
    color: var(--tab-dark);
}

.social-icon[b-te2w7i0tm9] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;                /* default black */
    font-size: 1.25rem;
    margin-left: 1rem;          /* spacing between icons */
    transition: color 0.2s, transform 0.2s;
}
.social-icon:first-child[b-te2w7i0tm9] {
    margin-left: 0;             /* no gap before first one */
}
.social-icon:hover[b-te2w7i0tm9] {
    color: #555;                /* lighter on hover */
    transform: translateY(-2px);/* subtle lift */
}


@media (max-width: 992px) {
    .profile-left[b-te2w7i0tm9] {
        align-items: center;  /* center flex-children */
    }
    
    .blurb-content[b-te2w7i0tm9] {
        background-color: unset !important;
        border-radius: 1.5rem;
        width: 100%;
        height: 100%;
    }

    .row.align-items-stretch[b-te2w7i0tm9] {
        align-items: flex-start !important;
    }

    /* 2. Turn off flex-fill + 100% height on the avatar */
    .profile-left .avatar[b-te2w7i0tm9] {
        background-position: top center !important;
        background-size: cover !important;
        max-width: 250px;
        max-height: 250px;
    }
}

/* _content/ZackV2/Components/Pages/ContactMe.razor.rz.scp.css */
.contact-section[b-dclwd9o6wn] {
    padding: 4rem 1rem;
    background-color: #f7f9fc;
}
.contact-section .container[b-dclwd9o6wn] {
    max-width: 900px;
    margin: 0 auto;
}
.contact-title[b-dclwd9o6wn] {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    position: relative;
}
.contact-title[b-dclwd9o6wn]::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #4f46e5;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Grid Layout */
.contact-grid[b-dclwd9o6wn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Card Styles */
.contact-card[b-dclwd9o6wn] {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover[b-dclwd9o6wn] {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* Icon */
.icon-wrapper[b-dclwd9o6wn] {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.icon-wrapper.linkedin[b-dclwd9o6wn] {
    background: #0e76a8;
}
.icon-wrapper i[b-dclwd9o6wn] {
    color: #fff;
    font-size: 1.5rem;
}

/* Card Text */
.card-heading[b-dclwd9o6wn] {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}
.card-link[b-dclwd9o6wn] {
    color: #4f46e5;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.card-link:hover[b-dclwd9o6wn] {
    color: #2e3a8c;
}

.cta-section[b-dclwd9o6wn] {
    margin-top: 1.5rem;          /* slightly tighter */
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.cta-text[b-dclwd9o6wn] {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pulse-dot[b-dclwd9o6wn] {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    animation: pulse-b-dclwd9o6wn 2s infinite;
}

@keyframes pulse-b-dclwd9o6wn {
    0%   { opacity: 1; }
    50%  { opacity: 0.5; }
    100% { opacity: 1; }
}

.section-title[b-dclwd9o6wn] {
    color: #000;
    font-weight:400;
    line-height: 1.5;
    font-size: var(--text-2xl);
}
/* _content/ZackV2/Components/Pages/Experience.razor.rz.scp.css */
.section-bg[b-r351jcddu8] { 
    background: rgba(255,255,255,0.05); 
}
.section-title[b-r351jcddu8] { 
    color: #000;
    font-weight:400; 
    line-height: 1.5;
    font-size: var(--text-2xl);
}

.scroll-x-container[b-r351jcddu8] {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    background-color: white;
    -webkit-overflow-scrolling: touch;

    /* 1) Horizontal padding will shorten the scroll-track */
    /* 2) Bottom padding will push the track further below the cards */
    padding: 1rem 0 2rem 0;
    gap: 1rem;

    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.3) transparent;
}
    .scroll-x-container[b-r351jcddu8]::-webkit-scrollbar {
        height: 7px;
    }
    
    .scroll-x-container[b-r351jcddu8]::-webkit-scrollbar-track {
        background: transparent;
        margin-right: 100px;
    }
    
    .scroll-x-container[b-r351jcddu8]::-webkit-scrollbar-thumb {
        background-color: rgba(0,0,0,0.3);
        border-radius: 1.5rem;
    }

.netflix-card[b-r351jcddu8] {
    position: relative;
    width: 240px;
    height: 320px;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 auto;

    /* new: */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.netflix-card .card-img[b-r351jcddu8] {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

    /* new: */
    transition: filter 0.3s ease;
}

.netflix-card .card-overlay[b-r351jcddu8] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    padding: 1rem;
    background: transparent;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* optional: transition for overlay‐bg if you lighten it */
    transition: background 0.3s ease;
}

.netflix-card .card-hover-text[b-r351jcddu8] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: #fff;
    background: none;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

/* HOVER EFFECTS */
.netflix-card:hover[b-r351jcddu8] {
    transform: translateY(-1rem);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.netflix-card:hover .card-img[b-r351jcddu8] {
    filter: brightness(1.15);
}

.netflix-card:hover .card-hover-text[b-r351jcddu8] {
    opacity: 1;
}
/* _content/ZackV2/Components/Pages/Home.razor.rz.scp.css */
.content[b-0x3isp4unh] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 1rem;
}

.content > .section-content[b-0x3isp4unh] {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem;
    box-sizing: border-box;
}

.section-content[b-0x3isp4unh] {
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 1;
    transform: translateX(0);
}

/* Slide and fade out to the left */
.exit-left[b-0x3isp4unh] {
    transform: translateX(-50px);
    opacity: 0;
}

/* Slide and fade out to the right */
.exit-right[b-0x3isp4unh] {
    transform: translateX(50px);
    opacity: 0;
}

/* Enter starting from the right */
.enter-right[b-0x3isp4unh] {
    transform: translateX(50px);
    opacity: 0;
}

/* Enter starting from the left */
.enter-left[b-0x3isp4unh] {
    transform: translateX(-50px);
    opacity: 0;
}

/* Animate to neutral position */
.enter-active[b-0x3isp4unh] {
    transform: translateX(0);
    opacity: 1;
}

.navigation-controls[b-0x3isp4unh] {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

.nav-btn[b-0x3isp4unh] {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.icon-circle[b-0x3isp4unh] {
    width: 48px;
    height: 48px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s;
}

.icon-circle:hover[b-0x3isp4unh] {
    background-color: #e5e7eb;
}

.nav-btn span[b-0x3isp4unh] {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111;
}
/* _content/ZackV2/Components/Pages/Projects.razor.rz.scp.css */
.project-placeholder.modern[b-mi0001ypy9] {
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    margin-right: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-title[b-mi0001ypy9] {
    color: #000;
    font-weight:400;
    line-height: 1.5;
    font-size: var(--text-2xl);
}

.project-placeholder.modern:hover[b-mi0001ypy9] {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.placeholder-icon[b-mi0001ypy9] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.placeholder-title[b-mi0001ypy9] {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.placeholder-text[b-mi0001ypy9] {
    margin: 0;
    font-size: 1rem;
    color: #666;
}
