/* Custom variables */
:root { --profile-size: 180px; --primary-color: #2563eb; --secondary-color: #1e40af; --accent-color: #3b82f6; --text-color: #1f2937; --light-bg: #f8fafc; --border-radius: 12px; --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

/* Hero section styling */
.hero-section { padding: 3rem 0; background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%); border-radius: var(--border-radius); margin-bottom: 2rem; box-shadow: var(--shadow); }

.hero-content { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

/* Profile photo styling */
.profile-photo { width: var(--profile-size) !important; height: var(--profile-size) !important; border-radius: 50% !important; object-fit: cover !important; box-shadow: var(--shadow-lg) !important; border: 4px solid white !important; transition: transform 0.3s ease, box-shadow 0.3s ease !important; }

.profile-photo:hover { transform: scale(1.05) !important; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; }

/* Bio text styling */
.bio-text { flex: 1; min-width: 300px; }

.bio-text h1 { color: var(--primary-color); font-size: 2.5rem; margin-bottom: 0.5rem; font-weight: 700; }

.bio-text .tagline { color: var(--secondary-color); font-size: 1.25rem; margin-bottom: 1rem; font-weight: 500; }

.bio-text .description { color: var(--text-color); font-size: 1.1rem; line-height: 1.6; margin-bottom: 1.5rem; }

/* Social links styling */
.social-links { display: flex; gap: 1rem; flex-wrap: wrap; }

.social-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: var(--primary-color); color: white !important; text-decoration: none !important; border-radius: var(--border-radius); font-weight: 500; transition: all 0.3s ease; box-shadow: var(--shadow); }

.social-link:hover { background: var(--secondary-color); transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none !important; }

/* Section styling */
.section { margin: 3rem 0; padding: 2rem; background: white; border-radius: var(--border-radius); box-shadow: var(--shadow); }

.section-title { color: var(--primary-color); font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 3px solid var(--accent-color); }

/* Project styling */
.project { margin-bottom: 2.5rem; padding: 1.5rem; border-left: 4px solid var(--accent-color); background: var(--light-bg); border-radius: 0 var(--border-radius) var(--border-radius) 0; transition: transform 0.2s ease, box-shadow 0.2s ease; }

.project:hover { transform: translateX(5px); box-shadow: var(--shadow); }

.project h3 { color: var(--primary-color); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.5rem; }

.project-links { margin: 1rem 0; }

.project-link { display: inline-block; padding: 0.5rem 1rem; background: var(--accent-color); color: white !important; text-decoration: none !important; border-radius: 6px; font-size: 0.9rem; font-weight: 500; margin-right: 0.5rem; margin-bottom: 0.5rem; transition: all 0.2s ease; }

.project-link:hover { background: var(--secondary-color); transform: translateY(-1px); text-decoration: none !important; }

/* Stats highlight */
.stat-highlight { display: inline-block; background: linear-gradient(135deg, var(--accent-color), var(--primary-color)); color: white; padding: 0.25rem 0.75rem; border-radius: 20px; font-weight: 600; font-size: 0.9rem; margin: 0 0.25rem; }

/* Typography improvements */
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: var(--text-color); }

h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; }

p { margin-bottom: 1rem; line-height: 1.7; }

a { color: var(--primary-color); transition: color 0.2s ease; }

a:hover { color: var(--secondary-color); }

/* Mobile responsiveness */
@media (max-width: 768px) { .hero-content { flex-direction: column; text-align: center; } .bio-text h1 { font-size: 2rem; } .bio-text .tagline { font-size: 1.1rem; } .social-links { justify-content: center; } .section { padding: 1.5rem; margin: 2rem 0; } :root { --profile-size: 150px; } }

@media (max-width: 480px) { .hero-section { padding: 2rem 1rem; } .section { padding: 1rem; margin: 1.5rem 0; } .project { padding: 1rem; } :root { --profile-size: 120px; } }

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }

/* Focus styles for keyboard navigation */
.social-link:focus, .project-link:focus, a:focus { outline: 3px solid var(--accent-color); outline-offset: 2px; }

/* Print styles */
@media print { .hero-section, .section { box-shadow: none; border: 1px solid #ddd; } .profile-photo { box-shadow: none !important; } .social-link, .project-link { background: transparent !important; color: var(--primary-color) !important; border: 1px solid var(--primary-color); } }

/*# sourceMappingURL=custom.css.map */