/* Resume Sections - Windows 11 Fluent Design */
/* Resume Sections - Windows 11 Fluent Design */
/* :root block removed to prevent conflict with global theme */

/* Typography & Reset */
/* .explorer-content styles removed to prevent global override. 
   Resume specific styles should target specific IDs or be scoped if added later. */

.explorer-content h2 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-color);
    opacity: 0.8;
    border-bottom: none;
    padding-bottom: 0;
    padding-left: 4px;
}

/* Intro Text after headings */
.explorer-content h2+p {
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.6;
    font-weight: 400;
    padding-left: 4px;
}

/* Profile Section - Hero Card */
.bio-section {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    align-items: center;
    background: var(--taskbar-bg);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.bio-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    /* Circular avatar */
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.bio-text h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 24px;
    color: var(--text-color);
    text-transform: none;
    letter-spacing: normal;
}

.bio-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Detailed Bio Sections */
.bio-details {
    background: var(--taskbar-bg);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.bio-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    margin: 24px 0 8px 0;
}

.bio-details h3:first-child {
    margin-top: 0;
}

.bio-details p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 16px;
}

.bio-details p:last-child {
    margin-bottom: 0;
}

/* Experience & Education - Cards */
.experience-item,
.education-item {
    background: var(--taskbar-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    transition: box-shadow 0.2s ease, transform 0.1s ease;
}

.experience-item:hover,
.education-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
    border-color: #d1d1d1;
}

/* Header Row: Title and Date */
.experience-item>div:first-child,
.education-item>div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    flex-wrap: wrap;
    gap: 12px;
}

.experience-item h3,
.education-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.experience-item span,
.education-item span {
    /* Date */
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.6;
    background: #f3f3f3;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

/* Subtitle / Company Location */
.experience-item>p,
.education-item>p {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 12px;
    font-style: normal;
}

/* Lists */
.experience-item ul,
.education-item ul {
    margin: 0;
    padding-left: 20px;
}

.experience-item li,
.education-item li {
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
    padding-left: 4px;
}

.experience-item li::marker,
.education-item li::marker {
    color: var(--text-color);
    opacity: 0.6;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.skill-category {
    background: var(--taskbar-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}

.skill-category:hover {
    box-shadow: var(--shadow-lg);
}

.skill-category h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.skill-category p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Language Skills */
.explorer-content>div:last-child {
    margin-top: 40px;
    padding: 24px;
    /* background: var(--taskbar-bg); */
    border-radius: var(--border-radius);
    /* border: 1px solid var(--border-color); */
    /* box-shadow: var(--shadow-sm); */
}

.explorer-content>div:last-child h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.explorer-content>div:last-child>div>div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.explorer-content>div:last-child>div>div>div {
    padding: 6px 14px;
    background-color: var(--hover-bg);
    /* Very light blue/gray */
    border: 1px solid transparent;
    border-radius: 4px;
    /* Slightly squared for Windows 11 feel */
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    transition: background-color 0.2s;
}

.explorer-content>div:last-child>div>div>div:hover {
    background-color: var(--accent-color);
    opacity: 0.2;
}

/* Strong Tag Emphasis */
.explorer-content strong {
    font-weight: 600;
    color: var(--text-color);
}