/* --- Reset & Variables --- */
:root {
    --bg-color: #f4f4f5;       /* Light grey background for the page */
    --card-bg: #ffffff;        /* White background for the content card */
    --text-main: #18181b;      /* Almost black for headings */
    --text-muted: #52525b;     /* Dark grey for body text */
    --accent-color: #2563eb;   /* Professional Blue for links/borders */
    --border-color: #e4e4e7;   /* Subtle borders */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* --- Layout Container --- */
.container {
    width: 100%;
    max-width: 480px; /* Limits width to keep it looking like a profile card */
}

.profile-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
}

/* --- Avatar --- */
.avatar-wrapper {
    margin-bottom: 24px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    /* Double border effect for credibility */
    border: 4px solid var(--card-bg); 
    box-shadow: 0 0 0 2px var(--border-color);
}

/* --- Typography --- */
h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
}

.subtitle {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

/* --- Divider --- */
.divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 24px 0;
}

/* --- Status Update Section --- */
.status-update {
    background-color: #f8fafc; /* Very light blue/grey */
    border-radius: 8px;
    padding: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px dashed var(--border-color);
    margin-bottom: 30px;
}

/* --- Footer / Links --- */
.footer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 99px; /* Pill shape */
    background-color: white;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.contact-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background-color: #eff6ff; /* Light hover blue */
}