@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #cbd5e1;
    background-color: #0f172a;
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
    -webkit-font-smoothing: antialiased;
}

/* Hero & Profile Image Section */
.profile-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    flex-shrink: 0; /* Prevents image from squishing */
}

h1, h2, h3 { 
    color: #38bdf8; 
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; margin: 0; }
h2 { font-size: 1.75rem; border-bottom: 1px solid #1e293b; padding-bottom: 8px; margin-top: 40px; }

strong { 
    color: #818cf8; 
    font-weight: 600; 
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #334155;
}

.project-card {
    background: #1e293b; /* Replaced the bright blue with a professional slate */
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #334155;
    border-left: 4px solid #38bdf8;
    transition: transform 0.2s ease-in-out;
}

.project-card:hover {
    transform: translateX(5px);
}

#contact a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

#contact a:hover {
    background: rgba(56, 189, 248, 0.15);
    border-bottom: 1px solid #38bdf8;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    body {
        margin: 30px auto;
    }
}