/* --- RESUME SECTION --- */
.resume-section {
    padding-top: 40px; /* Adjust spacing as needed */
    padding-bottom: 60px;
    margin-left: 80px;
}

.resume-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.resume-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Adjust title to match the image (White vs Red logic might differ here) */
.resume-column .section-title {
    font-size: 42px;
    margin-bottom: 25px;
    color: #FFFFFF; /* Makes "My" white */
}
/* Assuming you want "Education" in white as well based on image */
.white-text {
    color: #FFFFFF;
}

/* The Dark Card Container */
.resume-card {
    background-color: #040914; /* Slightly lighter/different tone than body */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Timeline Logic */
.timeline-wrapper {
    position: relative;
    padding-left: 20px; /* Space for line */
}

/* The Continuous Vertical Line */
.timeline-line {
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px; /* Leave some space at bottom */
    width: 2px;
    background-color: var(--accent-color); /* Red #F41414 */
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 30px; /* Space between line and text */
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Red Dots */
.timeline-dot {
    position: absolute;
    left: -27px; /* Adjust to align with line inside padding */
    top: 5px;
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(244, 20, 20, 0.5);
    z-index: 2;
}

/* Typography */
.resume-role {
    font-family: var(--font-sub); /* Barlow */
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}

.resume-date {
    display: block;
    font-family: var(--font-body); /* Blinker */
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 15px;
    opacity: 0.8;
}

.resume-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
    text-align: justify;
    opacity: 0.9;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 900px) {
    .resume-container {
        flex-direction: column;
    }
    
    .resume-column {
        width: 100%;
    }
    
    .resume-card {
        padding: 25px;
    }
}