/* Professional Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #22223b;
    /* Light Mode: Dark Text */
    background-color: #f8fafc;
    /* Light Mode: Very Light Background */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Profile Card */
.profile-card {
    background: #ffffff;
    /* Light Mode: White Card Background */
    padding: 3rem 2rem;
    border-radius: 20px;
    /* Light Mode: Softer, subtle shadow */
    box-shadow: 0 10px 15px -3px rgba(60, 60, 60, 0.08), 0 4px 6px -2px rgba(60, 60, 60, 0.06);
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid #e2e8f0;
    /* Light Mode: Light Border */
    transition: all 0.3s ease;
}

.profile-card:hover {
    /* Strong shadow when hovering */
    box-shadow: 0 20px 25px -5px rgba(60, 60, 60, 0.397), 0 10px 10px -5px rgba(60, 60, 60, 0.363);
}

.profile-initials {
    width: 80px;
    height: 80px;
    /* Light Mode: Soft Blue */
    background: #e0e7ff;
    color: #2563eb;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    /* Added to make the image within the container work */
}

.profile-initials img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    font-size: 1.8rem;
    color: #22223b;
    /* Light Mode: Dark Heading */
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.subtitle {
    font-size: 1.1rem;
    color: #64748b;
    /* Light Mode: Muted Blue/Gray */
    margin-bottom: 2rem;
    font-weight: 500;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease;
    width: 100%;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(60, 60, 60, 0.04);
}

.btn:hover {
    transform: translateY(-2px);
    /* Subtle lift on hover */
}


/* LinkedIn Button */
.linkedin-btn {
    /* Official LinkedIn Blue - works for light mode too */
    color: #ffffff;
    background-color: #0077b5;
}

.github-btn {
    /* GitHub's blue for light mode */
    color: #ffffff;
    background-color: #24292e;
}

.github-btn:hover {
    background-color: #333333;
}

.linkedin-btn:hover {
    background-color: #005983;
}

/* Small visual touch for the link */
.btn svg {
    margin-right: 8px;
    fill: currentColor;
}