* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
h1 {
    font-size: 80px;
    line-height: 88px;
}
h2 {
    font-size: 64px;
    line-height: 76px;
}
h3 {
    font-size: 56px;
    line-height: 68px;
}
h4 {
    font-size: 48px;
    line-height: 58px;
}
h5 {
    font-size: 40px;
    line-height: 40px;
}
h6 {
    font-size: 32px;
    line-height: 38px;
}
.container {
    display:flex;
    justify-content: space-between;
    max-width: 1424px;
    align-items: center;
    width: 100%;
    margin:auto;
}
#menu-toggle-mobile {
    display: none;
}

#header {
    width: 100%;
    padding: 24px 40px;
}
.logo img {
    max-width: 56px;
}
.nav-menu-link ul { 
    display: flex;
    list-style: none;
    gap: 40px;
}
.nav-menu-link ul li {
    
}
.nav-menu-link ul li a {
    text-decoration: none;
    color: #0A0A0A;
    font-size: 16px;
    line-height: 24px;
}
.toggle {
    display: none;
    width: 20px;
    height: 20px;
}

#hero {
    width: 100%;
    padding: 72px 40px 56px;
}
#hero .container {
    flex-direction: column;
}
.headline {
    width: 100%;
}
.headline h1 {
    color: #0A0A0A;
}
.headline p {
    margin-top: 20px;
    margin-bottom: 56px;
    max-width: 1185px;
    font-size: 20px;
    line-height: 30px;
    color: #4F4F4F;
}
.actions-full {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.actions {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
}
.nav-link {
    text-decoration: none;
    color: #0A0A0A;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid #0A0A0A;
    align-items: center;
    gap: 20px;
}
.nav-link img {
    margin-bottom: -4px;
    width: 16px;
    height: 16px;
}


#projects {
    width: 100%;
    padding: 56px 40px 40px;
}
#projects .container {
    flex-direction: column;
    gap: 48px;
    width: 100%;
}
.content-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.content-card {
    gap: 32px;
}
.row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 32px;
}
.col img {
    aspect-ratio: 1/1;
    width: 100%;
    margin: 0px 0px 20px 0;
}
.col a {
    text-decoration: none;
    color: #0A0A0A;
    font-size: 20px;
    line-height: 30px;
}

#about {
    padding: 56px 40px;
}
.row-about {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 4px;
    align-items: center;
}
.row-about img.ratio-43 {
    aspect-ratio: 3/4;
    background-position: center;
    width: 100%;
    border-radius: 4px;
}
.row-about img.ratio-32 {
    aspect-ratio: 2/3;
    width: 100%;
    border-radius: 4px;
}
#about-text {
    padding: 56px 40px;
}
#about-text .container {
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: normal;
    gap: 48px;
}
.info-text{
    max-width: 1185px;
    gap: 16px;
    color: #4F4F4F;
    font-size: 20px;
    line-height: 30px;
}
#footer {
    width: 100%;
    padding: 20px 40px;
}

@media (max-width: 1024px) {
    .container {
        display:flex;
        justify-content: space-between;
        max-width: 1040px;
        align-items: center;
        width: 100%;
        margin:auto;
    }
    h1 {
        font-size: 72px;
        line-height: 80px;
    }
    h2 {
        font-size: 56px;
        line-height: 68px;
    }
    h3 {
        font-size: 48px;
        line-height: 58px;
    }
}

@media (max-width: 768px) {
    .container {
        display:flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 478px;
        align-items: center;
        width: 100%;
        margin:auto;
    }
    h1 {
        font-size: 40px;
        line-height: 48px;
    }
    h2 {
        font-size: 32px;
        line-height: 40px;
    }
    h3 {
        font-size: 24px;
        line-height: 32px;
    }
    #header, #footer {
        padding: 20px 16px;
        justify-content: space-between;
        width: auto;
    }
    #hero, #projects, #about, #about-text {
        padding: 40px 16px;
    }
    #menu { 
        display: none;
    }
    #header .container {
        flex-direction: row;
    }
    #footer .container {
        align-items: normal;
        gap: 24px
    }
    #footer .nav-menu-link ul {
        flex-direction: column;
        align-items: normal;
        gap: 24px
    }
    .toggle {
        display: flex;
        width: 20px;
        height: 20px;
    }
    .content-title {
        flex-direction: column;
        align-items: baseline;
        gap: 20px;
    }
    .content-card {
        gap: 20px;
    }
    .row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .row-about {
        flex-direction: column;
    }
    #about-text .container {
        gap: 24px;
    }
    .info-text  {
        font-size: 16px;
        line-height: 24px;
    }
    #menu-toggle-mobile.active {
        display: block;
    }
    #menu-toggle-mobile {
        position: fixed;
        width: 100vw;
        height: 100%;
        background-color: #fff;
        z-index: 99;
        top: 0;
    }
    .header-nav-mobile {
        padding: 20px 16px;
        display: flex;
        justify-content: space-between;
        margin: auto;
        align-items: center;
    }
    .body-nav-mobile {
        padding: 20px 16px;
    }
    .body-nav-mobile ul {
        display: flex;
        flex-direction: column;
    }
}