/* Reset CSS for all elements */
body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    background: url('../Images/logo.png') no-repeat top center;
    background-size: contain;
    height: 120px;
    width: 876px;
    margin: 15px auto 5px;
}

/* Navigation Menu Container */
.menu-container {
    max-width: 876px;
    margin: 0 auto; /* Centers the container horizontally */
}

/* Navigation Menu */
.menu {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
}

/* Add rounded edges to the first and last buttons */
.menu li:first-child a {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.menu li:last-child a {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.menu li a {
    text-decoration: none;
    color: black;
    font-size: 15px;
    font-weight: bold;
    transition: color 0.3s ease, background 0.3s ease;
    width: 108.5px;
    height: 60px;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, white, rgb(232, 234, 237), rgb(215, 218, 225), rgb(191, 196, 207));
   }

.menu li a img {
    max-width: 48px;
    max-height: 19.2px;
    margin-bottom: 5px;
}

.menu li a:hover,
.menu li.active a {
    color: #333;
    background: linear-gradient(to bottom, rgb(182, 184, 187), rgb(142, 146, 159), rgb(109, 116, 128), rgb(95, 103, 112));
}

.menu li a:hover img,
.menu li.active a img {
    filter: brightness(2);
    transition: filter 0.3s ease;
}
/* ID Styles */

#div_main {
    height: 400px;
    width: 876px;
    margin: 5px auto;
    background-image: url(../Images/Main_Background.jpg);
    border-radius: 5px;
}

/* Footer Styles */
.footer::before {
    content: "JBL Systems, Inc. • 51935 Filomena Drive • Shelby Township, MI 48315 • Phone 586.802.6700 • Fax 586.802.6705";
    display: none;
}

.footer {
    height: 38px;
    width: 876px;
    margin: 5px auto 10px;
    text-align: center;
    padding-top: 4px;
    font-size: 14px;
    font-family: Arial, "Times New Roman", Cambria, serif;
}

/*                                       Static CSS Across All Pages - Above                                    */


/*                                       CSS Custom to Pages - Below                                    */

/*---------------------------------------  About Us Page CSS - Below --------------------------------------------*/
.About_Us_Subtext {
    position: relative;
    float: left;
    width: 450px;
    height: 300px;
    top: 10px;
    left: 30px;
    text-align: justify;
    line-height: 1.8em;
    font-size: 12px;
}

/*---------------------------------------  Home/Main Page Page CSS - Below --------------------------------------------*/
#mp_headers {
	display: block; 
	line-height: 1.2em;
	font-size: 36px;
	color: #FFFFFF;
	font-family: 'Oxygen', sans-serif;
	margin-top: 10px;
}

#mp_subheaders {
	display: block;
	line-height: 1.5em;
	font-size: 1.5em;
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	margin-top: 50px;
}
#mp_divcontainer {
	position: absolute;
	width: 380px;
	height: 300px;
	top: 10px;
	left: 30px;
	text-align: left;
	line-height: 1.8em;
	font-size: 12px;
}
/*---------------------------------------  Login Page Page CSS - Below --------------------------------------------*/

#div_main_item,
#div_item {
    height: 400px;
    width: 100%;
    margin: 10px auto;
    text-align: center;
}
