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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Mono', monospace;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    font-size: 16px;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000000;
}

header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.8;
}

/* Sections */
section {
    margin-bottom: 60px;
}

section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

section p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Projects */
.project {
    margin-bottom: 40px;
    padding: 20px;
    border-left: 3px solid #000000;
    padding-left: 20px;
}

.project h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project p {
    font-size: 16px;
}

/* Contacts */
.contact-list {
    list-style: none;
    margin-left: 0;
}

.contact-list li {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-list strong {
    font-weight: 700;
    display: inline-block;
    min-width: 80px;
}

/* Links */
a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #000000;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.6;
}

/* Footer */
footer {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid #000000;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    header h1 {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 16px;
    }

    section h2 {
        font-size: 24px;
        letter-spacing: 0.5px;
    }

    section {
        margin-bottom: 40px;
    }

    header {
        margin-bottom: 40px;
    }

    .project {
        padding: 15px;
        padding-left: 15px;
    }

    .project h3 {
        font-size: 20px;
    }

    .project p,
    section p,
    .contact-list li {
        font-size: 15px;
    }

    footer {
        margin-top: 60px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 12px;
    }

    header h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 14px;
    }

    section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    section {
        margin-bottom: 30px;
    }

    header {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .project {
        padding: 12px;
        padding-left: 12px;
        border-left-width: 2px;
    }

    .project h3 {
        font-size: 18px;
    }

    .project p,
    section p,
    .contact-list li {
        font-size: 14px;
    }

    .contact-list strong {
        display: block;
        margin-bottom: 5px;
        min-width: auto;
    }

    footer {
        margin-top: 40px;
        padding-top: 15px;
        font-size: 12px;
    }
}
