.roboto-mono-paragraph {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.fira-code-headings {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

html {
    width: 100vw;
    height: 100vh;
    scroll-behavior: smooth;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    background: #3dcf91;
}

.navbar {
    position: fixed;
    top: 10px; left: 10px; right: 10px;
    border-radius: 15px;
    background-color: #11141d;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    padding: 0 30px;
}

.navbar p {color: #fff; user-select: none;}


.navbar a {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    font-family: "Roboto Mono";
    text-decoration: none;
    color: #3dcf91;
}

.navbar a:hover {
    background-color: #003223;
    color: #fff;
    transition: 0.3s ease background-color;
}

/* home */
#home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-image: url("../images/overlay.png");
    background-size: 100% contain;
    background-position: center;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 250px;
}

.toolbox:hover {
    filter: drop-shadow(5px 5px 10px #1c6245);
    transition: 0.3s ease-in-out filter;
}

.heading {
    color: #11141d;
    font-family: "Fira Code";
    user-select: none;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -1px;
    margin: 0;
}

.heading:hover {
    text-shadow: 0 0 20px #11141d;
    transition: 0.2s ease-in-out text-shadow;
}

.tagline {
    font-family: "Roboto Mono";
    font-size: 1.5em;
    color: #11141d;
    margin: 0;
    width: fit-content;
    user-select: none;
}

.tagline:hover {
    text-shadow: 0 0 20px #11141d;
    transition: 0.2s ease-in-out text-shadow;
}

.checkapps {
    font-family: "Roboto Mono";
    width: fit-content;
    text-decoration: none;
    color: white;
    background-color: #11141d;
    padding: 10px;
    border-radius: 10px;
}

.checkapps:hover {
    background-color: #111d15;
    box-shadow: 0 5px 10px #111d15;
    transition: 0.3s ease-in-out box-shadow;
}

/* apps */
#apps {
    display: flex;
    flex-direction: column;
    align-items: center ;
    padding-top: 70px;
    width: 100%;
    height: 100%;
    background-image: url("../images/overlay.png");
    background-size: 100% contain;
    background-position: center;
}

.appstitle {
    height: fit-content;
    width: fit-content;
    color: #fff;
    background-color: #11141d9a;
    border-radius: 10px;
    user-select: none;
    padding: 5px 50px 5px 50px;
    font-family: "Fira Code";
    font-size: 3em;
    font-weight: 500;
    letter-spacing: -1px;
}

.appstitle:hover {
    box-shadow: 0 5px 20px #185f46;
    transition: 0.2s ease-in-out box-shadow;
}



.appscont {
    width: 90%; height: auto;
}

.appslist {
    overflow-x: auto;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;   
    gap: 70px;
    padding: 20px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    box-sizing: border-box;
}

.appslist li {
    flex-shrink: 0;
    width: 20vw;
    height: 20vh;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    background: #11141d;
    text-decoration: none;
    list-style: none;
    font-family: "Fira Code";
    font-size: 2em;
    text-align: center;
    user-select: none;
    word-wrap: break-word;
    color: #3dcf91;
    
}

.appslist li:hover {
    background: #111d17;
    box-shadow: 0 0 5px 10px #2fb980;
    color: #fff;
    transition: 0.3s ease-in-out box-shadow;
}

.appslist li a {
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    background: #185f46;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 6vw 16px;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.footer-section h2 {
    font-family: "Fira Code", monospace;
    font-size: 1rem;
    margin-bottom: 6px;
}

.footer-section p {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.footer-section a {
    text-decoration: none;
    font-size: 0.85rem;
    color: #9ca3af;
    transition: color 0.2s ease;
}

.footer-section a {
    color: #38bdf8;
}

.footer-section a:hover {
    color: #0ea5e9;
}

.footer-bottom {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}
