* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Bitcount Prop Single Ink';
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    color: #FFBF00;
    src: url("https://cdn.jsdelivr.net/fontsource/fonts/bitcount-prop-single-ink:vf@5.2.1/latin-wght-normal.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}

.app-layout {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
}

body {
    font-family: 'Bitcount Prop Single Ink', sans-serif;
    background-color: #111111;
    color: #FFBF00;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


header {
    background-color: #333; /* fallback */
    color: white;
    padding: 1rem;
    height: 200px;
    background-image: url("/images/cyber_banner_n.jpeg");
    background-size: cover;
    background-position: center;
    text-align: center;
}

footer {
    background-color: #111111;
    padding: 1rem;
    background-image: url("/images/sdfbanner.png");
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    display: flex;
    flex: 1;
}

nav {
    background-color: #111111;
    color: #FFBF00;
    width: 200px;
    flex-shrink: 0;
    padding: 1rem;
    border-right: 1px solid #FFBF00;
}

nav h3 {
    color: #FFBF00;
}

nav ul {
    list-style: none;
    padding: 0;
    color: #FFBF00;
}

nav li a {
    display: block;
    padding: 0.5rem 0;
    color: #FFBF00;
    text-decoration: none;
}

nav li a:hover {
    color: #dba80d;
}

main {
    padding: 2rem;
    flex: 1;
    flex-grow: 1;
    background-color: #111111;
    color: #FFBF00;
}



/* --- MOBILE RESPONSIVE STYLES --- */
@media (max-width: 768px) {
    /* Stacks the nav and main content vertically instead of side-by-side */
    .container {
        flex-direction: column;
    }

    /* Makes the sidebar stretch to fill the full width of the mobile screen */
    nav {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #FFBF00;
        color: #FFBF00;
    }

    /* Displays the menu links horizontally across the screen for easier tapping */
    nav ul {
        display: flex;
        gap: 1.5rem;
        color: #FFBF00;
    }

    /* Adjusts spacing in the main content area for smaller screens */
    main {
        padding: 1.5rem;
	color: #FFBF00;
    }
}

