@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Space+Grotesk:wght@600;700&display=swap");

::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 6px;
    border: 2px solid #0f172a;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}
html, body {
    margin: 0;
    padding: 0;
    background-color: #0f172a;
}
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
h1, h2, h3 {
    font-family: "Mona Sans", sans-serif;
    font-weight: 800;
}
main, .content {
    flex: 1;
    overflow-y: auto;
    background-color: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 150px;
    padding: 100px 40px;
}
.footer-text {
    font-size: 15px;
}
.footer-socials {
    display: flex;
    gap: 6px;
    align-items: center;
}
#header {
    position: relative;
    display: flex;
    background-color: #1e293b;
    align-items: center;
    justify-content: center;
    gap: 100px;
    font-size: 15px;
    height: 80px;
    transition: margin-top 0.3s ease-in-out;
}
#header.hidden {
    margin-top: -80px;
}
#footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e293b;
    color: #f8fafc;
    height: 50px;
    min-height: 50px;
    transition: transform 0.3s ease-in-out;
}

#footer.hidden {
    transform: translateY(100%);
}
.header-socials {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.AboutMe a, .Projects a {
    text-decoration: none;
    color: #f8fafc;
}
.AboutMe a:hover, .Projects a:hover {
    color: #94a3b8;
}
.aboutme-WHOAMI, .aboutme-AG, .aboutme-SKILL {
    border: solid;
    border-radius: 16px;
    padding: 20px;
    background-color: black;


    color: #f8fafc;
    width: 100%;
    max-width: 500px;
    margin-bottom: 60px;
    line-height: 1.6;
}
.aboutme-WHOAMI {
    align-self: flex-start;
    padding-bottom: 120px;
    margin-left: 15%;
}
.aboutme-AG {
    align-self: flex-end;
    margin-right: 15%;
}
.aboutme-SKILL {
    align-self: flex-start;
    margin-left: 15%;
}
.clickable-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: auto;
}
@media (max-width: 480px) {
    body {
        height: auto !important;
        overflow: auto !important;
    }
    #header {
        height: 60px !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }
    #header.hidden {
        margin-top: -60px !important;
    }
    .header-socials {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 10px;
        width: 100%;
    }
    main, .content {
        gap: 40px;
        padding: 40px 15px;
    }
    .aboutme-WHOAMI, .aboutme-AG, .aboutme-SKILL {
        align-self: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-bottom: 20px !important;
        text-align: left;
        max-width: 100%;
    }
    #footer {
        position: relative;
        transform: none !important;
    }
}
