/* File: assets/css/style.css */
/* Basic reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
.container { width: 90%; max-width: 1000px; margin: 0 auto; padding: 2rem 0; }
.navbar { position: sticky; top: 0; background: #fff; padding: 1rem; display: flex; gap: 1rem; }
.navbar a { text-decoration: none; color: #333; }
.profile-pic { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; }
h1 { font-size: 2.5rem; margin: 1rem 0; }
.tagline { font-size: 1.2rem; color: #555; }
.bio { margin: 1rem 0; }
.btn { display: inline-block; padding: 0.5rem 1rem; background: #007bff; color: #fff; text-decoration: none; border-radius: 4px; }
.btn.small { padding: 0.3rem 0.6rem; font-size: 0.9rem; }
.section { padding: 4rem 0; margin: auto;}
.skills-grid, .projects-grid { display: grid; gap: 1.5rem; }
.skills-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.projects-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.project-card { border: 1px solid #ddd; padding: 1rem; border-radius: 8px; }
.project-card img { width: 100%; height: 150px; object-fit: cover; border-radius: 4px; margin-bottom: 0.5rem; }
footer { text-align: center; padding: 1rem 0; background: #f5f5f5; margin-top: 2rem; }