:root {
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary: #005293; 
    --primary-hover: #006ec4; 
    --border: #e2e8f0;
}

/* Basic Reset & Layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    width: 100%;
    max-width: 600px;
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

/* Profile Header */
header {
    text-align: center;
    margin-bottom: 2rem;
}
.avatar {
    width: 96px;
    height: 96px;
    border-radius: 0; 
    object-fit: cover;
    margin: 0 auto 1rem auto;
    display: block;
}
h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 450px;
    margin: 0 auto;
}

/* Quick Info / CV Snippet */
.cv-snippet {
    background: var(--bg-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}
.cv-snippet h2 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.cv-snippet p {
    font-size: 0.9rem;
}

/* Link List stack */
.links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.link-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem; /* Space between the FontAwesome icon and text */
    padding: 1rem;
    background-color: var(--card-bg);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
}
.link-item a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: #eff6ff;
    transform: translateY(-1px);
}

/* Highlighted link */
.link-item.featured a {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}
.link-item.featured a:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
