@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&display=swap');

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

body {
    background: #1e1e1e;
    font-family: 'IBM Plex Mono', monospace;
    color: #e5d4e8;
    line-height: 1.6;
    padding: 40px 20px;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 69, 82, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 75, 175, 0.06) 0%, transparent 50%);
}

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

nav {
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #3d3d3d;
}

nav a {
    margin-right: 25px;
    font-size: 16px;
    color: #c9a9c9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

nav a:hover {
    color: #d4a5a0;
    border-bottom-color: #d4a5a0;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    nav a {
        margin-right: 0;
    }
}

header {
    margin-bottom: 60px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.profile-pic {
    width: 150px;
    height: 150px;
    background: #2d2d2d;
    border: 3px solid #8b4552;
    flex-shrink: 0;
    border-radius: 8px;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-text h1 {
    font-size: 32px;
    color: #f0e0e8;
    margin-bottom: 10px;
}

.header-text p {
    font-size: 16px;
    color: #c9a9c9;
}

section {
    margin-bottom: 50px;
}

h2 {
    font-size: 22px;
    color: #d4a5a0;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

h2::before {
    content: '◆ ';
    color: #8b4552;
}

.item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #3d3d3d;
    padding-left: 20px;
    border-left: 3px solid transparent;
    transition: border-left-color 0.2s ease;
}

.item:hover {
    border-left-color: #6d3d47;
}

.item:last-child {
    border-bottom: none;
}

.item h3 {
    font-size: 18px;
    color: #e5d4e8;
    margin-bottom: 5px;
}

.item p {
    font-size: 15px;
    color: #b8a0b8;
    margin-bottom: 8px;
}

a {
    color: #c9a9c9;
    text-decoration: none;
    border-bottom: 1px solid #6d3d47;
    transition: all 0.2s ease;
}

a:hover {
    color: #d4a5a0;
    border-bottom-color: #d4a5a0;
    padding-bottom: 2px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links a {
    font-size: 16px;
    display: block;
}

footer {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 2px solid #3d3d3d;
    text-align: center;
    color: #b8a0b8;
    font-size: 14px;
}

.nowrap {
    white-space: nowrap;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 20px;
    }
    
    .profile-pic {
        width: 120px;
        height: 120px;
    }
    
    .header-text h1 {
        font-size: 26px;
    }
}