/* ==========================================================================
   ABOUT PAGE (HARDWARE / SYSTEMS AESTHETIC)
   ========================================================================== */

.about-page {
    padding: 4rem 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* --- Section Headers --- */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    margin-top: 3.5rem;
}

.section-header h2 {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
}

/* --- Intro Section --- */
.about-hero {
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #d0d0d0;
    max-width: 800px;
}

/* --- Education Section --- */
.edu-card {
    background: rgba(20, 20, 20, 0.6);
    border-left: 3px solid var(--accent-primary);
    padding: 25px;
    margin-bottom: 1.5rem;
}

.edu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.school-info h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 5px 0;
}

.degree {
    font-family: 'Kode Mono', monospace;
    color: var(--accent-primary);
    font-size: 1rem;
}

.date-range {
    font-family: 'Kode Mono', monospace;
    color: #888;
    font-size: 0.9rem;
}

.coursework-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.course-tag {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border: 1px solid #333;
    color: #a0a0a0;
}

/* --- Skills Grid (Integrated) --- */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.skill-category {
    border: 1px solid #333;
    background: rgba(10, 10, 10, 0.8);
    padding: 20px;
}

.skill-category h3 {
    font-size: 0.9rem;
    color: #888;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-item {
    font-family: 'Kode Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-color);
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.2);
    padding: 4px 10px;
}

/* --- Experience Section --- */
.exp-item {
    margin-bottom: 3rem;
}

.exp-header {
    margin-bottom: 1.5rem;
}

.exp-header h3 {
    font-size: 1.6rem;
    color: #fff;
    margin: 0 0 5px 0;
}

.company-info {
    font-family: 'Kode Mono', monospace;
    color: var(--accent-primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.exp-bullets {
    list-style: none;
    padding: 0;
}

.exp-bullets li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #d0d0d0;
}

.exp-bullets li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-family: 'Kode Mono', monospace;
}

/* --- CTA Section --- */
.about-cta {
    margin-top: 5rem;
    padding: 40px;
    border: 1px solid var(--accent-primary);
    text-align: center;
    background: rgba(255, 69, 0, 0.03);
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .edu-header {
        flex-direction: column;
    }
    
    .about-cta {
        padding: 30px 15px;
    }
}
