@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --gradient-title: linear-gradient(to top, #332720, #C9A18D);
    --primary-color: #c7c7c7;
    --secondary-color: #997968;
    --dim-color: #7f7f7f;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    max-width: 100vw;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    max-width: 100vw;
}

body::-webkit-scrollbar {
    display: none;
}


body {
    overflow-x: hidden;
}

body {
    background-color: #000000;
    color: rgb(236, 236, 236);
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
}

section.intro {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding-top: 40vh;
    text-align: center;
}


section.intro .container h3 {
    font-size: 50px;
    background: linear-gradient(to top, #000000, #393939, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0s;
    will-change: opacity;
}

section.intro .container h1 {
    width: 100%;
    font-size: 130px;
    margin-top: -70px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: transform 0s, opacity 0s;
    will-change: transform, opacity;

}

section.intro .footer {
    position: absolute;
    width: 100%;
    bottom: 2em;
    transition: opacity 0s;
    will-change: opacity;
}

section.intro .footer p {
    color: #ffffff43;
}

section.intro .footer svg {
    animation: arrow 1.5s infinite ease-out;
}

@keyframes arrow {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}


/* Navigation Bar (navbar) */

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 32px 0;
    z-index: 9;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

li {
    display: inline-block;
    list-style: none;
}

li a {
    color: var(--primary-color);
    margin: 0 2em;
    font-weight: 300;
    transition: .3s;
    text-decoration: none;
}

li a:hover {
    color: var(--secondary-color);
    font-weight: 500;
}



/* About Me */

section.about_me {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    padding-top: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.about_me .title {
    width: 43%;
    margin-left: 7em;
    text-align: justify;
    font-weight: 400;
    font-size: 16px;
}

section.about_me .title h3 {
    font-size: 40px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

section.about_me .title p {
    color: var(--dim-color);
}

section.about_me .title p span {
    color: var(--primary-color);
}

section.about_me img {
    width: auto;
    height: 90%;
    opacity: .7;
}


/* Education */

section.education {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10em 0;
}

section.education h2 {
    font-size: 50px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.education h4 {
    color: var(--secondary-color);
    font-size: 20px;
}

section.education p {
    color: var(--primary-color);
    font-weight: 200;
    margin-top: 10px;
    letter-spacing: 1px;
}

section.education .caption {
    width: 700px;
}

section.education img {
    width: 450px;
    margin-top: 20px;
    border-radius: 20px;
    transition: .3s;
}

section.education img:hover {
    width: 570px;
}



/* Language */
section.education .caption ul li {
    margin: 0 20px;
    font-weight: 500;
    font-size: 18px;
    color: var(--dim-color);
}

section.education .caption ul li span {
    color: var(--primary-color);
    text-shadow: 0 0 3px var(--secondary-color),
        0 0 20px var(--primary-color);
}



/* Experiences */
section.experiences {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

section.experiences .content {
    width: 60%;
    max-width: 60%;
}

section.experiences .content h2 {
    font-size: 50px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.experiences .content h4 {
    color: var(--secondary-color);
    font-size: 20px;
}

section.experiences .content ul li {
    margin: 5px 0;
    color: var(--primary-color);
}

section.experiences .content p {
    color: var(--dim-color);

}

section.experiences .content p span {
    color: var(--primary-color);
}


/* Skills */
section.skills {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7em 0;
}

section.skills .container {
    width: 70%;
    max-width: 70%;
    text-align: center;
}

section.skills .container h2 {
    font-size: 50px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.skills .container .skills-section {
    margin-top: 2em;
}

section.skills .container .skills-section .skills-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

section.skills .container .skills-section .skills-title {
    color: var(--secondary-color);
    font-size: 30px;
}

section.skills .container .skills-section .skills-grid .skill-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1em;
    transition: .3s;
}

section.skills .container .skills-section .skills-grid .skill-card:hover {
    scale: 1.3;
}


/* Services */
section.services {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 7em 0;
}

section.services .container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

section.services h2 {
    font-size: 50px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.services .container .box {
    width: 40%;
    height: auto;
    padding: 3em 0;
    background-color: #ffffff14;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

section.services .container .box ul {
    display: flex;
    flex-direction: column;
}

section.services .container .box ul li {
    margin: 6px 0;
    transition: .2s;
    cursor: default;
    color: #999999;
}

section.services .container .box ul li:hover {
    font-size: 20px;
    color: var(--primary-color);
}

section.services .container .box h3 {
    margin-bottom: 15px;
    font-size: 40px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ContactMe */
section.contact {
    width: 100%;
    height: 100vh;
    /* background-color: #fff; */
    background-position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.contact h2 {
    font-size: 50px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.contact .container {
    color: var(--secondary-color);
}

section.contact .container a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff14;
    font-size: 20px;
    padding: 20px 45px;
    margin-bottom: 1em;
    color: var(--primary-color);
    border-radius: 20px;
    transition: .3s;
}

section.contact .container a:hover {
    scale: 110%;
    box-shadow: 0 0 100px #000;
    background-color: #ffffff2b;
}

section.contact .container a svg {
    margin-right: 10px;
}


/* ================================ */
/* ========== Responsive ========== */
/* ================================ */


@media (max-width:1024px) {

    .navbar {
        display: none;
    }

    section.intro .container h1 {
        font-size: 100px;
        margin-top: -60px;
    }

    section.about_me {
        display: flex;
        flex-direction: column;
        margin-bottom: 6em;
    }

    section.about_me .title {
        width: 80%;
        margin: 0;
    }

    section.about_me img {
        width: 100%;
        height: auto;
    }

    section.education {
        width: 100%;
        height: auto;
        padding: 3em 0;
    }

    section.contact {
        height: 60vh;
    }

    section.skills .container {
        width: 100%;
        max-width: 100%;
    }

    .skills-grid {
        display: flex;
        flex-wrap: wrap;
        padding: 0 10em;
    }
}

@media (max-width:767px) {

    html,
    body {
        overflow-x: hidden;
    }

    section.intro {
        padding-top: 40vh;
    }

    section.intro .container h1 {
        font-size: 45px;
        margin-top: -35px;
    }

    section.intro .container h3 {
        font-size: 30px;
    }

    section.intro .footer {
        bottom: 3em;
    }

    section.education {
        width: 100%;
        height: auto;
        padding: 3em 0;
        text-align: center;
        display: block;
        margin: 0;
    }

    section.education .content .caption {
        padding: 0 2em;
    }

    section.experiences {
        width: 100%;
        height: auto;
        padding: 5em 0;
    }

    section.experiences .content {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 0 1em;
    }


    section.skills {
        padding: 3em 0;
        margin-bottom: 3em;
    }

    .skills-grid {
        display: flex;
        flex-wrap: wrap;
        padding: 0 1em;
    }


    section.services .container {
        flex-direction: column;
    }

    section.services .container .box{
        width: 90%;
        margin-bottom: 2em;
    }
}