.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
}

.navbar a {
    color: black;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.2s ease, transform 0.2s ease;
    font-family: 'Roboto', sans-serif;
}

.navbar a:hover {
    color: #51A2FF;
    transform: scale(1.2);
}

.nav-logo:hover {
    transform: scale(1.1);
}

.about img {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 10px solid black;
    /* #f5c2da; */
}

.about img:hover {
    border: 10px solid #f5c2da;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 40px;
}

.about-txt {
    font-family: 'Roboto', sans-serif;
}

.about-txt-headline h1 {
    font-size: 70px;
}

.about-txt-headline-minor h2 {
    font-size: 40px;
}

.about-txt-headline-minor {
    display: flex;
    justify-content: center;
}

.about-txt-headline {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-left: 0px;
}

.contact {
    display: flex;
    justify-content: center;
    gap: 70px;
}

.contact-item a {
    color: black;
}

.contact-item:hover {
    transform: scale(1.3);
}


.xp,
.skills,
.recs,
.edu,
.lang {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.download {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.cv-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.cv-btn:hover {
    transform: scale(1.4);
}

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

.skills-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 9999px;
    background-color: #f3f4f6;
    color: #374151;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.xp-item {
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
}

.xp-item:hover {
    background-color: #CAD5E2;
}

.xp-item-txt {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.xp-item-headline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-right: 20px;
    margin-left: 20px;
}

.xp-item-txt ul {
    margin-left: 20px;
}

details summary {
    cursor: pointer;
}

details[open] summary {
    margin-bottom: 10px;
}

.industries-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.industry-tag {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 9999px;
    background-color: #d7e1f7;
    color: #374151;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease;
    margin-top: 7px;
}

footer {
    margin-top: 64px;
    padding: 24px 5px;
    border-top: 1px solid #f3f4f6;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-text {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #9ca3af;
}

.footer-text a {
    color: #6b7280;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.footer-text a:hover {
    color: #000;
}

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .about img {
        width: 160px;
        height: 160px;
    }

    .about-txt-headline h1 {
        font-size: 40px;
    }

    .about-txt-headline-minor h2 {
        font-size: 24px;
    }

    .contact {
        gap: 30px;
    }

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

}