/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-yc96kl7d2y] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-yc96kl7d2y] {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.content[b-yc96kl7d2y] {
    padding-top: 0;
    /* The navbar is fixed, but HeroSection has padding-top to compensate. 
       If we put padding here, it might double up or create a gap. 
       Let's stick to 0 here and let sections handle their own top spacing if needed, 
       or rely on HeroSection's padding. Navigation bar height is approx 4rem. */
    width: 100%;
    max-width: 100%;
}

@media (min-width: 641px) {
    .page[b-yc96kl7d2y] {
        flex-direction: column;
        /* Ensure column even on desktop for top-nav layout */
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar[b-vc7jyjea38] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-container[b-vc7jyjea38] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand[b-vc7jyjea38] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.navbar-links[b-vc7jyjea38] {
    display: flex;
    gap: var(--space-lg);
}

.nav-link[b-vc7jyjea38] {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover[b-vc7jyjea38],
.nav-link:focus[b-vc7jyjea38] {
    color: var(--primary);
}

.nav-link[b-vc7jyjea38]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover[b-vc7jyjea38]::after {
    width: 100%;
}

.menu-toggle[b-vc7jyjea38] {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle[b-vc7jyjea38] {
        display: block;
    }

    .navbar-links[b-vc7jyjea38] {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--bg-surface);
        padding: var(--space-lg);
        gap: var(--space-md);
        display: none;
        border-bottom: 1px solid var(--border);
    }

    .navbar-links.active[b-vc7jyjea38] {
        display: flex;
        animation: slideDown-b-vc7jyjea38 0.3s ease forwards;
    }
}

@keyframes slideDown-b-vc7jyjea38 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-jah8wxwag5],
.components-reconnect-repeated-attempt-visible[b-jah8wxwag5],
.components-reconnect-failed-visible[b-jah8wxwag5],
.components-pause-visible[b-jah8wxwag5],
.components-resume-failed-visible[b-jah8wxwag5],
.components-rejoining-animation[b-jah8wxwag5] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-jah8wxwag5],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-jah8wxwag5],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-jah8wxwag5],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-jah8wxwag5],
#components-reconnect-modal.components-reconnect-retrying[b-jah8wxwag5],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-jah8wxwag5],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-jah8wxwag5],
#components-reconnect-modal.components-reconnect-failed[b-jah8wxwag5],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-jah8wxwag5] {
    display: block;
}


#components-reconnect-modal[b-jah8wxwag5] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-jah8wxwag5 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-jah8wxwag5 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-jah8wxwag5 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-jah8wxwag5]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-jah8wxwag5 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-jah8wxwag5 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-jah8wxwag5 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-jah8wxwag5 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-jah8wxwag5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-jah8wxwag5] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-jah8wxwag5] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-jah8wxwag5] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-jah8wxwag5] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-jah8wxwag5] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-jah8wxwag5] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-jah8wxwag5 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-jah8wxwag5] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-jah8wxwag5 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Sections/ContactSection.razor.rz.scp.css */
.contact-section[b-nuvn59qtgp] {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-surface) 100%);
    padding-bottom: var(--space-md);
}

.contact-actions[b-nuvn59qtgp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.contact-btn[b-nuvn59qtgp] {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.contact-btn .icon[b-nuvn59qtgp] {
    margin-right: 0.5rem;
}

.social-links[b-nuvn59qtgp] {
    display: flex;
    gap: var(--space-lg);
}

.social-link[b-nuvn59qtgp] {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover[b-nuvn59qtgp] {
    color: var(--primary);
}

.footer[b-nuvn59qtgp] {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}
/* /Components/Sections/ExperienceSection.razor.rz.scp.css */
.experience-section[b-o0f9etj5tz] {
    position: relative;
}

.timeline[b-o0f9etj5tz] {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

/* Vertical Line */
.timeline[b-o0f9etj5tz]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    /* Mobile alignment */
    height: 100%;
    width: 2px;
    background: rgba(34, 211, 238, 0.2);
}

.timeline-item[b-o0f9etj5tz] {
    position: relative;
    margin-bottom: var(--space-xl);
    padding-left: 50px;
    /* Space for line and dot */
}

/* Timeline Dot */
.timeline-item[b-o0f9etj5tz]::after {
    content: '';
    position: absolute;
    left: 15px;
    /* (20px line center) - (12px dot / 2) + adjustment? 
                   Actually: Line is at 20px. Dot needs to center on that.
                   Dot width 12px. Left = 20 - 6 = 14px.
                */
    top: 24px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
    z-index: 1;
}

.timeline-content[b-o0f9etj5tz] {
    padding: var(--space-lg);
    border-radius: 0.5rem;
    border-left: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.timeline-content:hover[b-o0f9etj5tz] {
    border-left-color: var(--primary);
}

.date[b-o0f9etj5tz] {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--text-accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3[b-o0f9etj5tz] {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.timeline-content h4[b-o0f9etj5tz] {
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

.tech-stack[b-o0f9etj5tz] {
    margin-top: var(--space-md);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-stack span[b-o0f9etj5tz] {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .timeline[b-o0f9etj5tz]::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item[b-o0f9etj5tz] {
        padding-left: 0;
        width: 50%;
        left: 0;
    }

    .timeline-item:nth-child(even)[b-o0f9etj5tz] {
        left: 50%;
        padding-left: var(--space-xl);
    }

    .timeline-item:nth-child(odd)[b-o0f9etj5tz] {
        padding-right: var(--space-xl);
        text-align: right;
    }

    /* Dot positioning for desktop */
    .timeline-item[b-o0f9etj5tz]::after {
        left: auto;
        right: -6px;
        /* -6px from the right edge of left-side item */
    }

    .timeline-item:nth-child(even)[b-o0f9etj5tz]::after {
        left: -6px;
        /* -6px from the left edge of right-side item */
        right: auto;
    }

    .timeline-item:nth-child(odd) .tech-stack[b-o0f9etj5tz] {
        justify-content: flex-end;
    }
}
/* /Components/Sections/HeroSection.razor.rz.scp.css */
.hero-section[b-po0hil0b8k] {
    min-height: 85vh;
    /* Almost full screen but showing a peek of next section */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    /* Compensate for fixed header if needed */
}

/* Background gradient blob */
.hero-section[b-po0hil0b8k]::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-container[b-po0hil0b8k] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
    z-index: 1;
}

.hero-content[b-po0hil0b8k] {
    max-width: 600px;
}

.hero-title[b-po0hil0b8k] {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.text-gradient[b-po0hil0b8k] {
    background: linear-gradient(135deg, #f8fafc 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle[b-po0hil0b8k] {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.hero-text[b-po0hil0b8k] {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    line-height: 1.8;
}

.hero-actions[b-po0hil0b8k] {
    display: flex;
    gap: var(--space-md);
}

.hero-visual[b-po0hil0b8k] {
    position: relative;
    display: none;
    /* Hidden on mobile */
    justify-content: center;
    align-items: center;
}

.visual-circle[b-po0hil0b8k] {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 50%;
    animation: spin-b-po0hil0b8k 20s linear infinite;
}

.visual-circle[b-po0hil0b8k]::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
}

.code-card[b-po0hil0b8k] {
    position: relative;
    padding: var(--space-lg);
    border-radius: 1rem;
    width: 100%;
    max-width: 450px;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.code-card:hover[b-po0hil0b8k] {
    transform: rotate(0deg) scale(1.02);
}

pre[b-po0hil0b8k] {
    margin: 0;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.95rem;
    color: #a5b4fc;
    /* Indigo 300 */
}

code[b-po0hil0b8k] {
    display: block;
    line-height: 1.5;
}

/* Animations */
@keyframes spin-b-po0hil0b8k {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-fade-up[b-po0hil0b8k] {
    opacity: 0;
    animation: fadeUp-b-po0hil0b8k 0.8s ease forwards;
}

.animate-fade-in[b-po0hil0b8k] {
    opacity: 0;
    animation: fadeIn-b-po0hil0b8k 1s ease forwards;
}

.delay-100[b-po0hil0b8k] {
    animation-delay: 0.1s;
}

.delay-200[b-po0hil0b8k] {
    animation-delay: 0.2s;
}

.delay-300[b-po0hil0b8k] {
    animation-delay: 0.3s;
}

@keyframes fadeUp-b-po0hil0b8k {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn-b-po0hil0b8k {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .hero-container[b-po0hil0b8k] {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual[b-po0hil0b8k] {
        display: flex;
    }
}
/* /Components/Sections/ProjectsSection.razor.rz.scp.css */
.projects-grid[b-f0hn4iub9x] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.project-card[b-f0hn4iub9x] {
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.project-card:hover[b-f0hn4iub9x] {
    transform: translateY(-5px);
}

.project-image-placeholder[b-f0hn4iub9x] {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-1[b-f0hn4iub9x] {
    background: linear-gradient(45deg, #0ea5e9, #6366f1);
}

.gradient-2[b-f0hn4iub9x] {
    background: linear-gradient(45deg, #10b981, #0ea5e9);
}

.gradient-3[b-f0hn4iub9x] {
    background: linear-gradient(45deg, #f59e0b, #ef4444);
}

.project-content[b-f0hn4iub9x] {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3[b-f0hn4iub9x] {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.project-content p[b-f0hn4iub9x] {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    flex: 1;
}

.project-links[b-f0hn4iub9x] {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.link-text[b-f0hn4iub9x] {
    font-size: 0.9rem;
    font-weight: 600;
}
/* /Components/Sections/SkillsSection.razor.rz.scp.css */
.section-title[b-3g9ldx4e6l] {
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle[b-3g9ldx4e6l] {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.skills-grid[b-3g9ldx4e6l] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.skill-card[b-3g9ldx4e6l] {
    padding: var(--space-xl);
    border-radius: 1rem;
    transition: transform var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.skill-card:hover[b-3g9ldx4e6l] {
    transform: translateY(-5px);
}

.skill-icon[b-3g9ldx4e6l] {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.skill-list[b-3g9ldx4e6l] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li[b-3g9ldx4e6l] {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.skill-list li[b-3g9ldx4e6l]::before {
    content: '▹';
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.skill-list li:last-child[b-3g9ldx4e6l] {
    border-bottom: none;
}

/* Vibe Card Special Styling */
.vibe-card[b-3g9ldx4e6l] {
    border: 1px solid rgba(34, 211, 238, 0.3);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.vibe-card h3[b-3g9ldx4e6l] {
    background: linear-gradient(90deg, #22d3ee, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vibe-description[b-3g9ldx4e6l] {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.vibe-tags[b-3g9ldx4e6l] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag[b-3g9ldx4e6l] {
    background: rgba(34, 211, 238, 0.1);
    color: var(--text-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
}
