/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Code Pro', 'Menlo', 'Monaco', 'Courier New', monospace;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    font-size: 14px;
    font-weight: 300;
    font-display: swap;
}

/* Container */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Typography */
h2 {
    font-size: 1.25rem;
    color: #333;
    font-weight: 400;
    margin: 0;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: #555;
}


/* Contact links in header */
.contact-links {
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.contact-links a {
    background-color: rgb(255, 52, 255) !important;
    color: black !important;
    padding: 0.1rem 0.4rem;
    /* border-radius: 0; */
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: background-color 0.2s ease;
}

.contact-links a:hover {
    background-color: black !important;
    color: rgb(254, 254, 254) !important;
    text-decoration: underline !important;
}

/* Email obfuscation highlight */
.email-obfuscated {
    background-color: #f5f5f5;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-family: 'Source Code Pro', monospace;
    font-weight: 200;
}

.email-obfuscated:hover {
    font-weight: 400;
}

/* Links */
a {
    color: rgb(255, 52, 255);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #c2185b;
    text-decoration: underline;
    background-color: black;
    color: rgb(254, 254, 254);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
}

/* Sections */
section {
    margin-bottom: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1rem;
}

section:last-child {
    margin-bottom: 0;
}


/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    h2 {
        font-size: 1.125rem;
    }
}
