/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* General */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f8fa;
    color: #1f2937;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}


/* Header */

header {
    background-color: #111827;
    color: white;
    padding: 60px 0 30px;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 5px;
}

.headline {
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 25px;
}


/* Navigation */

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

nav a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
}

nav a:hover {
    color: white;
}


/* Main */

main {
    padding: 50px 0;
}

section {
    margin-bottom: 50px;
}

section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

section p {
    color: #4b5563;
}


/* Skills */

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills-grid span {
    background-color: #e5e7eb;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
}


/* Resume Items */

.item {
    margin-bottom: 30px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.item h3 {
    font-size: 1.1rem;
}

.item-header span {
    color: #6b7280;
    font-size: 0.9rem;
    white-space: nowrap;
}

.company {
    margin-bottom: 10px;
}

.item ul {
    padding-left: 20px;
    color: #4b5563;
}

.item li {
    margin-bottom: 6px;
}


/* Contact */

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-links a {
    color: #2563eb;
    text-decoration: none;
}

.contact-links a:hover {
    text-decoration: underline;
}


/* Footer */

footer {
    background-color: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
}


/* 404 Page */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-container h1 {
    font-size: 6rem;
    color: #111827;
}

.error-container h2 {
    margin-bottom: 10px;
}

.error-container p {
    margin-bottom: 25px;
    color: #6b7280;
}

.home-button {
    display: inline-block;
    background-color: #111827;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
}

.home-button:hover {
    background-color: #374151;
}


/* Mobile */

@media (max-width: 600px) {

    header {
        padding-top: 40px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    nav {
        gap: 12px;
    }

    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .error-container h1 {
        font-size: 4rem;
    }
}