/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.about-image {
    position: relative;
}

.profile-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--card-bg-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-color-light);
}

.profile-placeholder i {
    font-size: 4rem;
    margin-bottom: 10px;
}

.about-text h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    background-color: var(--card-bg-color);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.download-cv {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}



/* ===== TIMELINE SECTION ===== */
.timeline-section {
    padding: var(--section-padding);
    background-color: var(--card-bg-color);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--secondary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-medium);
    z-index: 1;
}

.timeline-content {
    width: calc(50% - 50px);
    background-color: var(--background-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.timeline-date {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.timeline-content p {
    color: var(--text-color-light);
    line-height: 1.6;
}



