/*set the base style*/
* {
    margin: 0.2rem;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(255, 255, 255);
    min-height: 100vh;
    line-height: 1.5;
    background-color: #000000;
}

body::before {
    content: '';
    position: fixed;
    /* Use fixed to cover viewport even when scrolling */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 53, 58, 0.397);
    /* Change this to your desired blur color */
    filter: blur(100px);
    /* Increased blur amount for higher intensity */
    z-index: -1;
    /* Ensure the blur is behind all other content */
    pointer-events: none;
    /* Prevents the blur from interfering with interactions */
    /* Hardware acceleration for blur performance */
    will-change: transform;
    transform: translateZ(0);
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
    z-index: 999;
}

header h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 300;
}


nav {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-left: 5%;
    flex-wrap: wrap;
}

nav a {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    transition: color 0.5s ease;
    text-decoration: none;
    color: azure;
}

nav a:hover {
    color: blueviolet;
}

.btn-terminal {
    padding: 0.8rem 1rem;
    justify-content: center;
    /* Center content horizontally */
    background-color: rgba(4, 0, 211, 0.2);
    color: #ffffff;
    border-radius: 7px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    transition: all 0.3s ease;
}

.action-button {
    padding: 0.8rem 1rem;
    background-color: rgba(32, 0, 211, 0.2);
    color: #ffffff;
    border-radius: 7px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    transition: all 0.3s ease;
}

.action-button {
    justify-content: center;
    /* Center content horizontally */
    background-color: rgba(0, 211, 11, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
}

.action-button:hover {
    background-color: rgba(211, 172, 0, 0.39);
}

.btn-terminal:hover {
    background-color: rgba(127, 129, 127, 0.39);
}

.bat-output {
    color: white;
    font-size: 1rem;
    font-family: 'Times New Roman', Times, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: left;
    margin-top: -1rem;
    background-color: rgba(0, 0, 0, 0.658);
    padding: 1rem;
    border-radius: 10px;
    max-height: 260px;
    overflow-y: scroll;
    padding-right: 8px;
    scrollbar-width: auto;
    /* For Firefox */
    scrollbar-color: #ffd560 #222;
    /* For Firefox */
}

.bat-output-1 {
    color: white;
    font-size: 1rem;
    font-family: 'Arial';
    text-align: left;
    margin-top: -1.5rem;
    background-color: rgba(0, 0, 0, 0);
    padding: 1rem;
    border-radius: 10px;
    max-height: 2000px;
    padding-right: 8px;
}


.brackets {
    color: #ffd560;
}

.prompt {
    color: #4af733;
    /* Green for command prompt */
}

.padding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
    z-index: 999;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.profile-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20%;
    border: 3px solid rgba(255, 220, 80, 0.2);
}

.profile-text {
    color: white;
    max-width: 500px;
    font-size: 1rem;
    font-family: 'Arial';
}

.profile-text h2 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-family: 'Arial';
    color: #ffd560;
}

.corner-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1rem;
    color: #ffd560;
}

/* Responsive styles for mobile devices */
@media (max-width: 600px) {
    body {
        font-size: 0.97rem;
    }

    .container {
        max-width: 100vw;
        padding: 0.7rem 0.4rem;
        box-sizing: border-box;
    }

    header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0.4rem 0.7rem;
        flex-wrap: wrap;
    }

    .small-logo {
        width: 28px !important;
        height: 28px !important;
        margin-right: 6px;
    }

    nav,
    .navbar-links {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        margin: 0;
        padding: 0;
    }

    nav a,
    .navbar-links a {
        font-size: 0.85rem;
        padding: 0.4rem 0.4rem;
        margin: 0;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .btn-terminal {
        font-size: 0.85rem;
        padding: 0.2rem 0.7rem;
        margin-left: 0.5rem;
        display: block;
        margin: 0.7rem auto 0.5rem auto;
        text-align: center;
        float: none;
    }

    .action-button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 1rem auto;
    }

    .bat-output {
        font-size: 0.95rem;
        margin-top: 0.6rem;
        background-color: rgba(39, 39, 39, 0.658);
        padding: 1rem;
        border-radius: 5px;
        max-height: 1300px;
    }

    .bat-output-1 {
        color: white;
        font-family: 'Arial';
        text-align: left;
        font-size: 0.95rem;
        margin-top: -1.5rem;
        background-color: rgba(0, 0, 0, 0);
        padding: 1rem;
        border-radius: 10px;
        max-height: 2000px;
        padding-right: 8px;
    }

    h3 {
        text-align: center;
    }

    body::before {
        background: rgba(48, 0, 0, 0.397);
        /* Change this to your desired blur color */
    }

    .corner-icon {
        font-size: 1rem;
        margin-right: 0.5rem;
    }

    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-image {
        margin-bottom: 0.7rem;
    }

    .profile-text {
        font-size: 1rem;
    }

    .padding {
        padding: 0.5rem !important;
    }

    .bat-output {
        font-size: 0.95rem;
        padding: 0.5rem;
        height: fit-content;
    }

    /* Responsive terminal window */
    .terminal-window {
        max-width: 100vw;
        min-width: 0;
        margin-top: 0.2rem;
        padding: 0.7rem 0.3rem;
        font-size: 0.95rem;
    }
}