@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
    --white: #ffffff;
    --black: #000000;
    --grey-dark: #333333;
    --grey-medium: #777777;
    --grey-light: #bbbbbb;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--grey-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
}

a {
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--grey-light);
    transition: all 0.2s ease;
}

a:hover {
    color: var(--grey-medium);
    border-bottom-color: var(--black);
}

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

.resume-header {
    margin-bottom: 100px;
}

.resume-header h1 {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 4px;
    color: var(--black);
    margin-bottom: 25px;
}

.resume-header .subtitle {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey-medium);
}

.resume-section {
    margin-bottom: 80px;
}

.resume-section h2 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--grey-light);
    margin-bottom: 40px;
}

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

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.item-header h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: -0.5px;
}

.item-header .date {
    font-size: 0.9rem;
    color: var(--grey-medium);
}

.section-item .description {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--grey-dark);
    margin-bottom: 12px;
}

.section-item .details {
    font-size: 1rem;
    color: var(--grey-medium);
    max-width: 650px;
    line-height: 1.7;
}

.contact-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.contact-links li {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-links a {
    border-bottom: none;
    padding-bottom: 2px;
    position: relative;
}

.contact-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--black);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.contact-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media (max-width: 768px) {
    .container {
        padding: 80px 30px;
    }

    .resume-header h1 {
        font-size: 5rem;
        letter-spacing: -2px;
    }

    .item-header {
        flex-direction: column;
        gap: 5px;
    }
}

@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none !important;
    }

    .cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 32px;
        height: 32px;
        background-color: var(--white);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        mix-blend-mode: difference;
        transform: translate(-50%, -50%);
        transition: width 0.3s cubic-bezier(0.2, 1, 0.2, 1),
            height 0.3s cubic-bezier(0.2, 1, 0.2, 1),
            border-radius 0.3s cubic-bezier(0.2, 1, 0.2, 1),
            left 0.1s ease-out, top 0.1s ease-out;
    }

    .cursor.hovered {
        border-radius: 8px;
        transition: width 0.3s cubic-bezier(0.2, 1, 0.2, 1),
            height 0.3s cubic-bezier(0.2, 1, 0.2, 1),
            border-radius 0.3s cubic-bezier(0.2, 1, 0.2, 1),
            left 0.2s cubic-bezier(0.2, 1, 0.2, 1),
            top 0.2s cubic-bezier(0.2, 1, 0.2, 1);
    }
}

@media (max-width: 1024px),
(hover: none),
(pointer: coarse) {
    * {
        cursor: auto !important;
    }

    .cursor {
        display: none !important;
    }
}