/* Import JetBrains Mono */
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;800&display=swap");

/* Apply to EVERY element on the page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "JetBrains Mono", monospace;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Navigation --- */
nav {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.logo {
    margin-right: auto;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #00f2ff; /* CachyOS Blue accent */
}

/* --- Centering Wrapper --- */
/* This handles the layout for Home, About, and Projects automatically */
.page-wrapper {
    flex: 1; /* Takes up remaining vertical space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
}

h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: -2px;
}

/* --- Fastfetch Component --- */
#fastfetch-container {
    margin-top: 1rem;
    padding: 2rem;
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid #222; /* Constant subtle border */
    width: 100%;
    max-width: 700px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transition: border 0.3s ease;
}

.ff-display {
    color: #00f2ff;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.85rem;
    margin: 0;
    white-space: pre-wrap;
    overflow-x: auto;
}
