/* Custom enhancements for Mile Kostoski's portfolio */

/* Smooth animations and transitions */
.resume-timeline-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resume-timeline-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Enhanced skill bars with animation */
.progress-bar {
    transition: width 1.5s ease-in-out;
}

/* Improved responsive design for mobile */
@media (max-width: 768px) {
    .resume-wrapper-inner {
        margin: 10px;
    }

    .resume-header .media {
        text-align: center;
    }

    .resume-social a {
        font-size: 0.9rem;
    }
}

/* Print-friendly styles */
@media print {
    .resume-wrapper {
        box-shadow: none !important;
    }

    .resume-wrapper-inner {
        box-shadow: none !important;
    }

    a[href]:after {
        content: "";
    }
}

/* Enhanced badge styling */
.badge-primary {
    background-color: #007bff;
    transition: background-color 0.3s ease;
}

.badge-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Improved section spacing */
.resume-section {
    margin-bottom: 2rem;
}

/* Enhanced contact links */
.primary-info a, .resume-social a {
    transition: color 0.3s ease;
    text-decoration: none;
}

.primary-info a:hover, .resume-social a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* Loading animation for skill bars */
@keyframes skillLoad {
    from { width: 0; }
    to { width: var(--skill-width); }
}

.progress-bar[style*="width"] {
    animation: skillLoad 2s ease-out;
}
