/* About Page Specific Styles */

body {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    padding: 20vh 0 6rem 0;
    align-items: flex-start; 
}

.content-wrapper {
    margin-top: 2rem;
    max-width: 800px; 
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 300;
    color: var(--text-main);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
    margin-bottom: 4rem;
    font-size: 0.95rem;
}

.back-link:hover {
    opacity: 1;
}

header h1 {
    margin-bottom: 3rem;
}

/* Bio Text */
.about-text {
    margin-bottom: 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.about-text span.highlight {
    color: var(--text-main);
}

/* Experience Timeline */
.section-title {
    font-family: 'Felidae Thin', serif;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    color: var(--text-main);
    font-weight: 300;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.15);
    padding-bottom: 1rem;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.exp-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.exp-date {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-top: 0.2rem;
}

.exp-details h4 {
    font-family: 'Felidae Thin', serif;
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 300;
    margin-bottom: 0.25rem;
}

.exp-details .company {
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.exp-details .desc {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
    max-width: 90%;
}

/* Minimal Footer */
footer {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    font-family: 'Satoshi', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--text-main);
}

/* Desktop Grid Layout for Experience */
@media (min-width: 768px) {
    .exp-item {
        grid-template-columns: 200px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding: 60px 0 2rem 0;
    }
    .scrollable-body .content-wrapper { 
        padding-top: 20vh; 
        padding-bottom: 2rem;
    }
    .exp-date { margin-bottom: 0.2rem; }
    .about-text { margin-bottom: 3rem; }
    .section-title { margin-bottom: 2rem; }
}
