
/* ==========================================
   Stylish Resume Layout Elements
   ==========================================*/
.resume-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.resume-summary {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Timeline Layout */
.timeline {
    position: relative;
    border-left: 2px solid #e2e8f0;
    margin: 20px 0 30px 10px;
    padding-left: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

 /*Timeline Interactive Node Dots
.timeline-dot {
    position: absolute;
    left: -27px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0284c7;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
    transition: transform 0.2s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background-color: #0369a1;
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0284c7;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}

.timeline-content h4 {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5568;
}

 Skills Metrics Progress Bars
.skills-metrics {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}*/

.skill-progress-wrapper {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 5px;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%);
    border-radius: 4px;
    transform-origin: left;
    animation: loadBars 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Keyframe for loading animations */
@keyframes loadBars {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* ==========================================
   Dark Theme Variations
   ========================================== */
body.dark-theme .timeline {
    border-left-color: #4a3b32;
}

body.dark-theme .timeline-dot {
    background-color: #e6dacb;
    border-color: #2d241e;
}

body.dark-theme .timeline-date {
    color: #e6dacb;
}

body.dark-theme .timeline-content h3,
body.dark-theme .skill-info {
    color: #f7fafc;
}

body.dark-theme .timeline-content h4 {
    color: #a0aec0;
}

body.dark-theme .resume-summary,
body.dark-theme .timeline-content p {
    color: #cbd5e0;
}

body.dark-theme .progress-bar-bg {
    background-color: #4a3b32;
}

body.dark-theme .progress-bar-fill {
    background: linear-gradient(90deg, #e6dacb 0%, #d9c8b4 100%);
}


/* ==========================================
   1. Base Setup & Reset
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    /* Soft light green/mint gradient */
    background: linear-gradient(135deg, #f0fdf4 0%, #90EE90 100%);
    color: #14532d; /* Deep forest green text */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}


/* Resume Download Button - Blue Theme */
.download-btn {
    background-color: #0284c7; /* Sky blue */
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.download-btn:hover {
    background-color: #0369a1; /* Deep blue on hover */
}

/* Timeline dot updated to match the green theme */
.timeline-dot {
    position: absolute;
    left: -27px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #16a34a; /* Green timeline dots */
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
    transition: transform 0.2s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background-color: #15803d;
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 700;
    color: #16a34a;
    text-transform: uppercase;
    margin-bottom: 4px;
}


body.dark-theme .download-btn {
    background-color: #38bdf8; /* Vibrant light blue for dark mode visibility */
    color: #0f172a;
}

body.dark-theme .download-btn:hover {
    background-color: #7dd3fc;
}


/* ==========================================
   Resume Contact Header Styling
   ========================================== */
.resume-meta-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.resume-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.resume-contact-detail {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 2px 0;
    font-weight: 500;
}

/* ==========================================
   Dark Theme Variations for Header
   ========================================== */
body.dark-theme .resume-name {
    color: #f7fafc;
}

body.dark-theme .resume-contact-detail {
    color: #cbd5e0;
}

/* Responsive adjustment for small screens */
@media (max-width: 480px) {
    .resume-meta-container {
        flex-direction: column;
        align-items: flex-start;
    }
}


