:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --link-color: #0645ad;
    --muted-color: #555;
}

[data-theme="dark"] {
    --bg-color: #0f172a;
    --text-color: #e5e7eb;
    --link-color: #93c5fd;
    --muted-color: #9ca3af;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    gap: 40px;
}

.sidebar {
    width: 220px;
    font-size: 14px;
    color: var(--muted-color);
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    margin-bottom: 15px;
}

.content {
    flex: 1;
    font-size: 15px;
}

h2 {
    margin-top: 30px;
    font-size: 18px;
}

ul {
    padding-left: 18px;
}

li {
    margin-bottom: 10px;
}

p {
    margin-bottom: 12px;
}

/* Dark mode toggle */
.toggle {
    font-size: 13px;
    cursor: pointer;
    user-select: none;
    margin-top: 10px;
    color: var(--link-color);
}


.project-btn {
    font-size: 14px;
    color: var(--link-color);
}

.work {
    margin-bottom: 26px;
}

.work-role {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.work-desc {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 6px;
}

.work-tech {
    font-size: 13px;
    color: var(--muted-color);
}
