/* Styles for the navigation bar */
nav {
    width: 100%;
    background-color: #333;
    overflow: hidden;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0 75px; /* Add horizontal padding */
    display: flex;
    justify-content: center; /* Center the navigation items */
    gap: 100px; /* Add space between items */
}

nav ul li {
    float: left; 
}

nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 0; /* Remove horizontal padding since we're using gap */
    text-decoration: none;
    font-size: 1.5em; /* Increased font size */
    white-space: nowrap; /* Prevent text wrapping */
}

nav ul li a:hover {
    background-color: #111;
}

/* Header styles */
header {
    background-color: #556B2F;
    padding: 10px 0;
}

/* Ensure the header background color shows through */
.head-column {
    background-color: transparent;
}

/* Styles for the footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
/*------------------------------------------------------------- */
/* Main content area */
.main-container {
    display: flex;
    max-width: 1400px;
    /* margin: 30px auto; */
    padding: 20px 30px;
    gap: 50px;
}

/* Officers column */
.officers-column {
    flex: 0 0 250px;
    padding: 20px; 
    background-color: #EEF0EA;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.officers-column h2 {
    color: #556B2F;
    margin-bottom: 20px;
    font-family: 'Fira Sans', sans-serif;
    border-bottom: 2px solid #556B2F;
    padding-bottom: 10px;
}

.officer {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.officer:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.officer h3 {
    color: #333;
    margin: 0 0 5px 0;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
}

.officer p {
    margin: 5px 0;
    color: #555;
}

.officer a {
    color: #556B2F;
    text-decoration: none;
}

.officer a:hover {
    text-decoration: underline;
}

/* Logo column */
.logo-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.large-logo {
    width: 500px;
    height: 500px;
    object-fit: contain;
}


/*---------------------------------------------------- */
/* Styles for two-column layout */
.head-column {
    display: flex;
}

.head-column .left-column {
    flex: 0 0 200px; /* Fixed size for the left column */
    background-color: transparent; /* Changed to transparent */
    padding: 10px; /* Optional: padding for the left column */
}

.head-column .center-column {
    flex: 1; /* Fills the rest of the space */
    background-color: transparent; /* Changed to transparent */
    padding: 10px; /* Padding for the center column */
    text-align: center; /* Center the text */
}

.head-column .right-column {
    flex: 0 0 200px; /* Fixed size for the right fixed column */
    background-color: transparent; /* Changed to transparent */
    padding: 10px; /* Padding for the right column */
}

.logo {
    width: 150px;
    height: auto; /* This maintains the aspect ratio */
    margin-left: 50px; /* Add space to the left of the logo */
}

.head-column .center-column h1 {
    font-size: 4em;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600; /* Using the semi-bold weight for better readability */
    color: white; /* Set text color to white */
}

/* Center container styles */
.center-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh; /* Adjust this value as needed */
    text-align: center;
    padding: 20px;
}

.center-container h1 {
    color: #333;
    margin-bottom: 20px;
    font-family: 'Fira Sans', sans-serif;
}

.center-container h3 {
    color: #555;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
}

