:root {

    --heading-size: 28px;
    --subheading-size: 18px;
    --body-size: 16px;
    --heading-color: #ecf5ff;
    --subheading-color: #eeeeee;
    --paragraph-color: #ecf5ff;
    --text-color: #e8e8e8f5;
    --section-gap: 20px;
    --section-padding: 100px;
    --card-radius: 16px;
    --border-color: rgba(255, 255, 255, 0.475);
    --card-bg: rgba(255, 255, 255, 0.092);
    --card-hover-bg: rgba(255, 255, 255, 0.16);
    --button-bg: rgba(255, 255, 255, 0.093);

    --font-body:
        'Inter',
        sans-serif;

    --font-code:
        'JetBrains Mono',
        monospace;



}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    text-decoration: none;


}

body {


    font-family: var(--font-body);
    background: linear-gradient(135deg, #000000, #0d0d0d);
    color: #b3afaf;

}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--section-gap);
    padding: var(--section-padding);
    margin: 0 auto;
    background: var(--card-bg);
}



#quick_info {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;


}


.social_links {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    margin: auto;
}

.social_links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social_links a i {
    font-size: 20px;
}

.linksText {
    font-size: 16px;
    font-weight: 600;
    color: #ffffffd3;
}

.social_links a:hover {

    transform: translateY(-1px);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}


nav {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px 0px 15px 0px;
    color: rgb(255, 255, 255);
    width: 100%;
    margin: auto;
    font-size: 18px;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);

}

nav.scrolled {
    background: linear-gradient(135deg, hsla(0, 0%, 0%, 0.85), hsla(0, 0%, 5%, 0.85));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav_buttons_container {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.nav_button {
    background-color: var(--button-bg);
    border: var(--border-color) solid 1px;
    color: #ecf5ff;
    border-radius: 48px;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.3s ease;
}

.nav_button:hover {
    background-color: var(--card-hover-bg);
    border: 0.5px solid #ecf5ff;
    border-radius: 48px;
    color: #ffffff;
    cursor: pointer;
}

.main_nav_text a {
    font-size: 24px;
    font-weight: bold;
    background: transparent;
    border: none;
    color: #ecf5ff;
    padding: 0px 50px;
    background-color: transparent;

}

.main_nav_text a:hover {
    text-shadow: 0 0 25px #ffffffbd;
}

.nav_buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media (max-width:768px) {

    nav {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }

    .main_nav_text {
        margin: 0;
    }

    .main_nav_text a {
        font-size: 18px;
        padding: 0;
    }

    .nav_buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav_button {
        padding: 6px 12px;
        font-size: 13px;
    }

}

#home {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 60px 20px;
    text-align: center;
    margin-top: 20px;
}

.location {
    font-size: 10px;
    color: var(--text-color);
    font-weight: 400;
    margin-top: 15px;
}

.location_button {
    background-color: transparent;
    border: 0.5px solid transparent;
    color: var(--text-color);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.introo {
    align-items: center;
    text-align: center;
    padding: 0px 80px 30px 80px;
}

.intro_text_image {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 40px 40px;
    padding-bottom: 5px;
}

@media (max-width:768px) {

    .intro_text_image {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }

    .introtext {
        text-align: center;
    }

    .introtext h2 {
        font-size: 32px;
    }

    .introtext p {
        font-size: 18px;
    }

}

.status {
    background-color: var(--card-bg);
    color: var(--heading-color);
    font-size: 8px;
    border: var(--border-color) solid 1px;
    padding: 15px 30px 15px 30px;
    border-radius: 80px;
}

.status p {
    color: var(--text-color);
    font-size: 10px;
}

.status,
.status p,
.location_button,
.social_links a,
.linksText {

    font-family: var(--font-code);

}

.status:hover {
    transition: all 0.4s ease;
    background-color: var(--card-hover-bg);
    border-color: #f7f9fa;
}

.about_section {

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    gap: 20px;
    padding: 10px 10px;
}

.about_section h2 {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: bold;
    padding-top: 1px;
}

.profile_image_container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile_image {
    border: var(--border-color) solid 1px;
    background-color: #ecf5ff;
    width: 180px;
    border-radius: 50%;
    transition: all 0.4s ease;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}



.status_badge {
    position: absolute;
    bottom: 6px;
    right: -18px;
    background-color: rgba(255, 255, 255, 0.806);
    border: var(--border-color) solid 1px;
    padding: 9px 16px;
    border-radius: 50px;
    color: black;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.399);
    transition: all 0.3s ease;
    cursor: default;
}


.badge_dot {
    font-size: 8px;
}

.intro_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
}

.introtext {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: var(--text-color);
    font-size: 20px;
    line-height: 1.2;
    cursor: default;
}

.introtext h2 {
    color: var(--text-color);
    font-size: 45px;
    font-weight: bold;
}



#about {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: min(800px, 100%);
    margin: 0 auto;
    padding: 100px 20px;

}

@media (max-width:768px) {

    #about {
        padding: 60px 20px;
    }

    .aboutTitle {
        font-size: 24px;
    }

    #about p {
        font-size: 16px;
        line-height: 1.7;
    }

}
.aboutTitle {

    color: var(--heading-color);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 0px;

}

#about p {
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.5;

    text-align: left;
}

#projects,
#skills {
    padding: 60px;
    max-width: 1000px;
    margin: 60px auto;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: transparent;
}

#projects h3,
#skills h4 {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: bold;
    padding-bottom: 20px;
}

#projects>p {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.projects_grid {
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 350px));
    gap: 20px;
}

.project_card {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project_card:hover {
    transform: translateY(-8px);
    background: var(--card-hover-bg);
    border-color: #ffffff75;
    box-shadow: 0 5px 15px var(--card-hover-bg);
}

.project_image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.3s ease;
}



.project_content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project_card h4 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.project_card p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.project_buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;

}
@media (max-width:768px){

    #projects,
    #skills{
        margin:40px 15px;
        padding:30px 20px;
    }

    .projects_grid{
        grid-template-columns:1fr;
    }

}

.btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background-color: var(--button-bg);
}

.btn-github {
    color: var(--heading-color);
    background-color: var(--button-bg);
}

.btn-github:hover {
    background-color: var(--button-bg-hover);
    border-color: var(--border-color-hover);

}

.btn-live {
    color: var(--heading-color);
    background-color: var(--button-bg);
    border-color: var(--border-color);
}

.btn-live:hover {
    background-color: var(--button-bg-hover);
    border-color: var(--border-color-hover);
    box-shadow: 0 0 15px var(--card-hover-bg);
}

.skills_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill_button {
    background-color: var(--button-bg);
    border: var(--border-color) solid 1px;
    color: #ecf5ff;
    border-radius: 48px;
    margin-top: 22px;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 900;
    transition: all 0.3s ease;
}

.skill_learning:hover {
    background-color: rgba(242, 255, 0, 0.411);
    border: 0.5px solid #ecf5ff;
    border-radius: 48px;
    color: #ffffff;
    cursor: pointer;
}

.familiar:hover {
    background-color: rgba(0, 255, 0, 0.187);
    border: 0.5px solid #ecf5ff;
    border-radius: 48px;
    color: #ffffff;
    cursor: pointer;
}

#skills {
    position: relative;

}

.skillIndicator {
    background-color: var(--button-bg);
    padding: 6px 12px;
    border: var(--border-color) solid 1px;
    border-radius: 48px;
    position: absolute;
    right: 30px;
    bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 10px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;

}

.familiar-dot {
    background: #39ff2e;
}

.learning-dot {
    background: #ffc400;
}

#guestBook {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.guestbook-text {
    max-width: 380px;

}

.guestbook-form button {
    align-self: flex-end;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    color: var(--heading-color);

    cursor: pointer;
}

#guestBook h4 {
    font-size: 28px;
    color: var(--subheading-color);
    margin-bottom: 12px;
}

.guestbook-text p {
    color: var(--text-color);
    line-height: 1.6;
}

.guestbook-form {
    width: 380px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: transparent;
}

.guestbook-form input,
.guestbook-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: transparent;
    color: white;
    resize: none;
}

.guestbook-form textarea {
    height: 120px;

}

.guestbook-form button {
    align-self: center;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    background: var(--button-bg);
    color: var(--heading-color);
    cursor: pointer;
}

.guestbook-form button:hover {


    background: var(--card-hover-bg);
    color: rgb(255, 255, 255);


}

footer {
    position: relative;
    color: #f4f4f4;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    bottom: 0;
    border-top: #ffffff7f solid 0.5px;
}

#form-status {
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity .3s ease;
    min-height: 20px;
}

#form-status.show {
    opacity: 1;
}

#form-status.success {
    color: #34c759;
}

#form-status.error {
    color: #ff4d4d;
}

@media (max-width: 768px) {
    #guestBook {
        flex-direction: column;
        gap: 30px;
        padding: 60px 20px;
    }

    .guestbook-form {
        width: 100%;
        max-width: 100%;
    }

    .intro_text_image {
        flex-direction: column;
        gap: 30px;
    }

    .introo {
        padding: 0px 20px 30px 20px;
    }
}

.guestbook-form input:focus,
.guestbook-form textarea:focus {
    outline: none;
    border-color: #ecf5ff;
    box-shadow: 0 0 10px rgba(236, 245, 255, 0.3);
}

html {
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}


.footer-rt {

    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-family: monospace;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.689);


}

.main_nav_text {
    font-family:
        var(--font-code);
}

h1,
h2,
h3,
h4 {
    font-family:
        var(--font-code);
}

.footer-code {
    font-family:
        var(--font-code);
}

.skill_button {
    font-family:
        var(--font-code);
}

.status_badge {
    font-family:
        var(--font-code);
}

.nav_button {
    font-family: var(--font-code);
}

footer {
    font-family: var(--font-code);
}

@media (max-width:768px) {

    .status {
        padding: 12px 20px;
    }

    .status p {
        font-size: 9px;
    }

    .status_badge {
        font-size: 9px;
        padding: 8px 12px;
    }

    .profile_image {
        width: 150px;
    }



    #projects h3,
    #skills h4 {
        font-size: 24px;
    }


    #projects p,
    #skills p {
        font-size: 16px;
        line-height: 1.7;
    }


    .project_card h4 {
        font-size: 18px;
    }

    .project_card p {
        font-size: 15px;
    }

    .btn {
        font-size: 12px;
        padding: 8px 14px;
    }


    .skill_button {
        font-size: 14px;
        padding: 8px 12px;
    }

    .skillIndicator {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }


    footer {
        font-size: 13px;
    }

    .footer-rt {
        display: none;
    }
}