@import url('https://fonts.googleapis.com/css2?family=Mozilla+Text:wght@200..700&display=swap');

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

body {
    font-family: "Mozilla Text";
    color: white;
}

.fixed-bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    background: linear-gradient(0deg, rgba(0, 0, 77, 1), rgba(0, 61, 23, 1));
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    filter: blur(10px);
}

.blocker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(10px);
    z-index: -1;
}

nav {
    position: fixed;
    top: -60px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    width: 100%;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
    transition: 0.5s ease;
}

.nav-element {
    cursor: pointer;

    transition: 0.4s ease;
}

.nav-element:hover {
    color: rgb(50, 235, 50);
    font-weight: 700;
}

#top-section {
    background-color: rgba(0, 0, 0, 0.2);
    padding-bottom: 30px;
}


#section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid transparent;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
    transition: 0.4s ease;
    cursor: pointer;
}

.profile-picture:hover {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.8);
    scale: 1.05;
}


.title-name {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.title-card {
    margin: 30px;
}

.title-description {
    font-size: 18px;
    margin: 5px 0;
}

#section-contact {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-centered {
    width: 500px;
    height: 60px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon {
    font-size: 26px;
    margin: 0 5px;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.contact-link {
    text-decoration: none;
}

.contact-icon:hover {
    color: rgb(0, 255, 0);
}

#section-about {
    margin: 30px 0;
}

.section-title-text {
    font-size: 36px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 30px 0;
}



.container {
    margin: 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.left-container {
    width: 500px;
    line-height: 1.5;
}

.right-container {
    width: 400px;
    height: 400px;
    background-color: white;
}

li {
    margin-left: 30px;
}



#section-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

input {
    width: 200px;
    height: 40px;
    border-radius: 20px;
    border: 2px solid white;
    outline: none;
    background-color: transparent;
    color: white;
    font-family: "Mozilla Text";

    transition: 0.4s ease;
    cursor: pointer;
}

input:hover {
    background: rgb(255, 255, 255);
    color: black;
}






#section-projects {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 20px;
}

.project {
    background-color: rgba(0, 0, 0, 0.5);
    width: 300px;
    height: 600px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.project-image {
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0 0;
}

.project-body {
    padding: 10px;
}

.project-title {
    font-size: 28px;
    margin: 10px 0;
    font-weight: bold;
}

.project-description {

}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 10px 0;
}

.tag {
    padding: 5px 10px; height: 30px;
    border-radius: 15px;
    font-size: 14px;
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

#gallery-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

#gallery-btn {

}

.bottom-buttons-container {
    margin-top: auto;
}

.try-it-out-btn {
    width: auto;
    background: transparent;
    text-align: center;
    padding: 10px;
    border: 3px solid white;
    border-radius: 10px;
    margin: 5px;
    
    transition: 0.3s ease;
    cursor: pointer;
}

.try-it-out-btn:hover {
    border: 3px solid grey;
}

.try-disabled {
    opacity: 0.2;
}

.try-disabled:hover {
    
}



#section-experience {
    display: flex;
    justify-content: center;
    line-height: 1.3;
}

#section-experience-container {

}

.exp {
    width: 750px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    box-shadow: -5px 0 0 0 rgba(0, 255, 0, 0.5);
    margin: 20px;
    transition: 0.4s ease;
}

.exp:hover {
    scale: 1.05;
    box-shadow: -5px 0 0 0 rgba(242, 255, 0, 0.692);
}

.exp-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.exp-location {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.fa-location-dot {
    color: rgb(255, 63, 63);
    font-size: 14px;
    margin: 0 5px;
}

.exp-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.fa-calendar {
    font-size: 14px;
    margin: 0 5px;
    color: rgb(136, 136, 255);
}

.exp-description {
    font-size: 14px;
    margin: 10px 0;
}




/* program languages */


#section-languages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.lang {
    width: 400px;
    height: 100px;
    padding: 20px;
    background-color: rgba(4, 0, 28, 0.5);
    border-radius: 10px;

    display: flex;
    gap: 20px;
    margin: 20px;

    border: 2px solid rgba(255, 255, 255, 0.338);
    transition: 0.3s ease;
}

.lang:hover {
    border: 2px solid rgba(255, 255, 255, 0.606);
}

.lang-left {
    font-size: 50px;
    width: 50px;
}

.lang-right {

}

.lang-title {
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-years {
    color: rgba(197, 197, 197, 0.691);
    font-size: 16px;
}

.pro-bars {
    display: flex;
}

.pro-bar {
    height: 10px;
    width: 50px;
    margin: 8px 1px;
    border-radius: 0 3px;
    background-color: rgba(120, 120, 120, 0.508);
}

.pro-active {
    background-color: rgb(0, 255, 17);
}