/* Modern Font Stack */
body { font-family: 'Inter', sans-serif; background-color: #f3f4f6; color: #1f2937; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }

/* Smooth Scrolling */
html { scroll-behavior: smooth; }

/* Custom Timeline Line */
.timeline-line {
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #d1d5db 0%, #d1d5db 80%, transparent 100%);
}

/* Modern "Chip" styling for skills */
.skill-tag {
    transition: all 0.2s ease;
}
.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media print {
    body { background-color: white; }
    .no-print { display: none; }
    a { text-decoration: none; color: #111827; }
    .shadow-xl, .shadow-sm { box-shadow: none !important; border: 1px solid #e5e7eb; }
}
