/* ========== BASE & UNIVERSAL ========== */
*
{
    /* Retains the default layout font from your container */
    font-family: "VT323.woff", "ShareTechMono.woff", sans-serif;
    box-sizing: border-box;
}

#body {
    background: black;
    margin: 0;
    padding: 0;
}

#container {
    font-size: 12px;
    text-align: left;
    width: 725px;
    height: 500px;
    position: fixed;
    top: 125px;
    margin-left: 175px;
}

#header {
    height: 500px;
    background: url("sitegfx/banner2026.png") no-repeat center bottom;
}

#navbar {
    width: 725px;
    padding: 5px;
}

#footer {
    font-family: 'ShareTechMono.woff', monospace; /* Fallback added for safety */
    font-size: 10px;
    clear: both;
    color: red;
    padding: 8px 8px 16px;
}


/* ========== TYPOGRAPHY & HEADERS ========== */
.mtitle {
    color: #fd5200;
    margin: 6px 0 2px;
    padding: 3px 2px;
    font-weight: bold;
}

.navig {
    font-family: 'VT323.woff', monospace;
    font-size: 15px;
    color: #fd5200;
    margin: 0px;
    padding: 0px;
}


/* ========== NAVIGATION MENU ========== */
ul.menu, 
ul.menu li {
    margin: 0;
    padding: 0;
    list-style: none; /* Ensures list bullets don't break the nav line */
}

ul.menu a {
    display: inline-block; /* Changed from inline to match previous structure safely */
    padding: 1px 6px;
    color: white;
    text-decoration: none;
    border-top: 2px solid transparent;    /* Pre-reserves space so the menu doesn't */
    border-bottom: 2px solid transparent; /* "jump" pixels when the hover borders appear */
    transition: all 0.2s ease-in-out;     /* Smoothly transitions colors and borders */
}

ul.menu a:hover {
    color: #c0c0c0;
    border-top: 2px dotted red;
    border-bottom: 2px dotted red;
}


/* ========== UTILITY LINKS ========== */
a.white {
    color: #fff;
    text-decoration: none;
}

a.white:hover {
    color: #c0c0c0;
}

a.black {
    color: #000;
    text-decoration: none;
}