/* /Pages/Home.razor.rz.scp.css */
.cv-wrapper[b-4icahnvcz4] {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    overflow-x: hidden;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.container[b-4icahnvcz4] {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.glass-panel[b-4icahnvcz4] {
    background: var(--bg-accent);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover[b-4icahnvcz4] {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.3);
}

.cv-header.glass-panel:hover[b-4icahnvcz4] {
    transform: none;
    animation: pulse-glow-b-4icahnvcz4 2s infinite ease-in-out;
}

@keyframes pulse-glow-b-4icahnvcz4 {
    0% {
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2), 0 0 20px rgba(var(--accent-color), 0.3);
    }
    100% {
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    }
}

.cv-header h1[b-4icahnvcz4] {
    margin: 0;
    font-size: 2.5rem;
    color: var(--accent-color);
    outline: none;
}

.cv-header h2[b-4icahnvcz4] {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    opacity: 0.7;
    font-weight: 400;
}

.header-layout[b-4icahnvcz4] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.header-content[b-4icahnvcz4] {
    flex: 1;
}

.header-photo[b-4icahnvcz4] {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.header-photo img[b-4icahnvcz4] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-grid[b-4icahnvcz4] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.contact-grid a[b-4icahnvcz4] {
        color: var(--text-primary);
        text-decoration: none;
        border-bottom: 1px dashed var(--accent-color);
    }

.main-grid[b-4icahnvcz4] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .main-grid[b-4icahnvcz4] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .sidebar .glass-panel:last-child[b-4icahnvcz4] {
        margin-bottom: 0;
    }

    .header-layout[b-4icahnvcz4] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-photo[b-4icahnvcz4] {
        margin-bottom: 1rem;
        width: 120px;
        height: 120px;
    }

    .contact-grid[b-4icahnvcz4] {
        justify-content: center;
    }

    .cv-wrapper[b-4icahnvcz4] {
        padding: 1rem;
    }

    .glass-panel[b-4icahnvcz4] {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .cv-header h1[b-4icahnvcz4] {
        font-size: 2rem;
    }

    .theme-switcher[b-4icahnvcz4] {
        top: 0.5rem;
        right: 0.5rem;
        transform: scale(0.9);
    }

    .job-card[b-4icahnvcz4] {
        margin-bottom: 1rem;
    }
}

h3[b-4icahnvcz4] {
    color: var(--accent-color);
    border-bottom: 2px solid var(--blob-color-2);
    padding-bottom: 0.5rem;
    margin-top: 0;
}

.tags[b-4icahnvcz4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag[b-4icahnvcz4] {
    color: #fff;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.tag:hover[b-4icahnvcz4] {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.job-card[b-4icahnvcz4] {
    border-radius: .8rem;
    border: 1px solid var(--glass-border);
    border-left: 3px solid color-mix(in srgb, var(--accent-color), transparent 50%);
    padding: 1rem;
    margin-bottom: 1rem;
}

.job-card:last-child[b-4icahnvcz4] {
    margin-bottom: 0;
}

.job-header[b-4icahnvcz4] {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.job-header h4[b-4icahnvcz4] {
        margin: 0;
        font-size: 1.2rem;
    }

    .job-header .company[b-4icahnvcz4] {
        font-weight: bold;
        opacity: 0.8;
    }

    .job-header .dates[b-4icahnvcz4] {
        font-size: 0.85rem;
        font-style: italic;
        opacity: 0.7;
    }

.duties[b-4icahnvcz4] {
    padding-left: 1.2rem;
}

.duties li[b-4icahnvcz4] {
        margin-bottom: 0.25rem;
    }

.mini-tags[b-4icahnvcz4] {
    margin-top: 0.75rem;
    gap: 0.4rem;
    display: flex;
    flex-wrap: wrap;
}

.mini-tags span[b-4icahnvcz4] {
        margin-right: 0;
        border: none;
        color: #fff;
        padding: 0.2rem 0.6rem;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 500;
        transition: all 0.2s;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }
    
    .mini-tags span:hover[b-4icahnvcz4] {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        filter: brightness(1.1);
    }

@keyframes fadeInUp-b-4icahnvcz4 {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.section[b-4icahnvcz4], .job-card[b-4icahnvcz4] {
    animation-name: fadeInUp-b-4icahnvcz4;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

.section:nth-child(1)[b-4icahnvcz4] { animation-delay: .1s; }
.section:nth-child(2)[b-4icahnvcz4] { animation-delay: .2s; }
.section:nth-child(3)[b-4icahnvcz4] { animation-delay: .3s; }
.section:nth-child(4)[b-4icahnvcz4] { animation-delay: .4s; }

.compact-list[b-4icahnvcz4] {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.compact-list li[b-4icahnvcz4] {
    background: rgba(var(--accent-color), 0.1);
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compact-list li:last-child[b-4icahnvcz4] {
    margin-bottom: 0;
}

.interests-tags[b-4icahnvcz4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.int-tag[b-4icahnvcz4] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.int-tag:hover[b-4icahnvcz4] {
    background: rgba(255, 255, 255, 0.15);
}

.footer[b-4icahnvcz4] {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}
