:root {
    --primary-color: #111111;
    --link-color: #0000EE;
    --text-muted: #555555;
    --bg-color: #ffffff;
    --font-serif: "Times New Roman", Times, serif;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --marker-color: #cc0000;
}

body {
    font-family: var(--font-serif);
    line-height: 1.6;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
}

.container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 40px;
}

p, li {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.intro {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    align-items: center;
}

.profile-image-wrapper {
    flex: 0 0 180px;
}

.profile-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
}

.bio-text {
    flex: 1;
}

h1 {
    font-family: var(--font-sans);
    font-size: 2.4rem;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.bio-paragraph {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.links {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
}

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

a:hover {
    text-decoration: underline;
}

.content-section {
    margin-bottom: 40px;
}

h2 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.experience-list {
    list-style-type: none;
    padding: 0;
}

.experience-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 1.05rem;
}

.experience-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
}

.map-wrapper {
    position: relative;
    width: 100%;
    margin: 40px 0;
    background: transparent; 
}

.base-map {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
}

.marker {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--marker-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.marker:hover {
    transform: translate(-50%, -50%) scale(1.4);
    z-index: 10;
}

.tooltip {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    white-space: nowrap;
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s;
}

.marker:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 700px) {
    .intro {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .profile-image-wrapper {
        width: 150px;
    }
}