/* ==================== JOB TIMELINE STYLES ==================== */

/* Timeline Container */
.timeline-container {
    position: relative;
    padding-left: 30px;
}

/* Timeline Vertical Line */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #0d6efd 0%, rgba(13, 110, 253, 0.3) 100%);
}

/* Timeline Item */
.timeline-item {
    position: relative;
}

/* Timeline Marker (Yellow Circle) */
.timeline-marker {
    position: absolute;
    left: -27px;
    top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: 3px solid var(--primary-bg);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(255, 193, 7, 0.1);
    }
}

/* Timeline Content */
.timeline-content {
    margin-left: 20px;
}

/* Job Card */
.timeline-item .job-card {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.timeline-item .job-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3) !important;
    border-left: 4px solid #0d6efd !important;
}

/* Card Title */
.timeline-item .card-title {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 1.5rem;
}

/* Label Styles */
.timeline-item .job-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    display: block;
}

/* Company Name */
.timeline-item .company-name {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Date Range - Beyaz renk */
.timeline-item .date-range {
    color: var(--text-primary);
    font-weight: 500;
}

/* Section Title (İş Deneyimleri) - Mavi çizgi ortada */
.page-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 2rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0d6efd;
    border-radius: 2px;
}

/* Tech Badges */
.tech-badge {
    background-color: #4a4a4a !important;
    padding: 0.4em 0.8em;
    border-radius: 5px;
    font-weight: 500;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    display: inline-block;
}

/* Active Badge */
.badge.bg-success {
    background-color: #198754 !important;
    font-size: 0.85rem;
    padding: 0.35em 0.65em;
}

/* Website Link - Dış link ikonu kaldırıldı */
.website-link {
    color: #0dcaf0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.website-link:hover {
    color: #3dd5f3;
    text-decoration: underline;
}

.website-link i {
    display: none;
}

/* Description Text */
.job-description {
    color: var(--text-primary);
    line-height: 1.6;
    margin-top: 0.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-container {
        padding-left: 20px;
    }

    .timeline-container::before {
        left: 7px;
    }

    .timeline-marker {
        left: -17px;
        width: 16px;
        height: 16px;
    }

    .timeline-content {
        margin-left: 10px;
    }

    .timeline-item .card-title {
        font-size: 1.25rem;
    }

    .timeline-item .company-name {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .timeline-item .job-card:hover {
        transform: translateX(0);
    }

    .timeline-marker {
        left: -15px;
        width: 14px;
        height: 14px;
    }
}