/*
html {
  font: clamp(1rem, 1rem + 0.5dvw, 2rem) / 1.4 system-ui, sans-serif;
}*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    padding: 1rem 2rem;
    max-width: 120rem;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /*background-image: url(./bg-light.webp);
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    background-color: #EFEFEF;*/
}

h1, h2 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0;
    flex: 0 0 50%;
    padding-left: 2rem;
}
h1 a {
    color: #000;
    text-decoration: none;
    display: inline;
    white-space: nowrap;
}

p {
    margin-bottom: 1rem;
    overflow-wrap: break-word;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration-color: #000;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.25em;
}

.language-switcher {
    text-align: right;
    padding: 1rem 0;
}

.language-switcher a {
    text-decoration: none;
}

.hero,
section,
.contact {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #000;
    padding: 2rem 0;
}

.hero {
    border-top: 2px solid #000;
}

.hero, .experience, .contact {
    border-left: 2px solid #000;
}

.about, .services {
    border-right: 2px solid #000;
}

.content {
    flex: 0 0 50%;
    padding: 0 2rem;
}

.tagline {
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-links a {
    display: block;
    margin-bottom: 0;
}

.contact {
    border-bottom: 2px solid #000;
}

.copyright {
    margin-top: 1rem;
    text-align: right;
    padding: 0; 
}

.bottom {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding-top: 1rem;
}
.time {
    display: flex; 
    align-items: center;
}

.time svg {
    height: 1rem; 
    padding-right: 0.5rem;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
        font-size: 18px;
    }

    h1, h2 {
        font-size: 2.8rem;
    }
    h2 {
        padding-bottom: 3rem;
    }
    .tagline {
        padding-bottom: 2rem;
    }

    .hero,
    section,
    .contact {
        flex-direction: column;
        gap: 1rem;
    }

    h1, h2,
    .content {
        flex: none;
    }

    .tagline {
        margin-bottom: 3rem;
    }

    .copyright {
        text-align: right;
    }
}