@charset "UTF-8";

@charset "UTF-8";

/* Font face definition */
@font-face {
    font-family: 'AcuminPro-Medium';
    src: url('/var/www/html/root/www.purdue.edu/biomasscalculator/assets/includes/fonts/AcuminPro-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* General font styling */
body, #BannerContainerPublishing, #topnav ul li a, .dropdown-content a, .dropbtn {
    font-family: 'AcuminPro-Medium', Arial, sans-serif;
}

/* Purdue Brand Styling */
body {
    background-color: #f1f2ea;
    margin: 0;
}

/* Header Styling */
#BannerContainerPublishing {
    background-color: #000000; /* Background color for the header */
    width: 100%; /* Full width to span across the page */
    padding: 15px;
    margin: 0; /* Reset margins */
    position: relative;
    z-index: 1000;
}

#BannerRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px; /* Centers content within header */
    margin: 0 auto; /* Centers content within full-width header */
}

.PUlogo {
    width: 475px;
    height: 55px;
}

/* Top Navigation Links */
#topnav {
    background-color: #000; /* Black background for the entire navigation bar */
}

#topnav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

#topnav ul li {
    position: relative;
}

#topnav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px;
    display: block;
}

#topnav ul li a:hover {
    color: #CFB991;
}

/* Dropdown Styles */

.dropbtn {
    color: #E9E5E5;
    font-weight: bold;
    text-decoration: none;
    padding: 8px;
}

/* Ensure dropdown content is hidden by default */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
	font-weight: normal;
    font-size: 13px;
}

/* Dropdown Styles */

.dropdown-content a {
    color: #E9E5E5; /* Default text color */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #CEB888; /* Gold background */
    color: black; /* Text color changes to black */
}


/* Position dropdowns correctly */
.dropdown {
    position: relative;
	background-color: #000;
    display: inline-block;
}


/* JavaScript-triggered dropdown display */
.dropdown:hover .dropdown-content {
    display: block; /* Shows dropdown content on hover */
}

#topnav .dropdown-content a:hover {
    background-color: #CEB888; /* Gold background */
    color: black !important; /* Ensure text turns black */
}

