body {
    font-family: 'Poppins', sans-serif; /* Updated to use the Google Font */
    color: #003366;
    margin: 0;
    padding: 0;
    background: url(assets/clouds.jpeg) center center / cover no-repeat fixed; 
    /* background-color: #b5e3f5;  */
    background-blend-mode: overlay; /* Blend the image with the background color */
}

header {
    color: #0c0c0c;
    padding: 0px;
    text-align: center;
}

header p {
    font-size: 20px;
}

#navBar{
    display: flex;
    flex-direction: column;
    width: 100vw;
}

#topBlueNavBar{
    width: 100vw;
}

#topBlueNavBar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #003366;
    width: 100vw;
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    /* Optional: Increase padding here if you want more space inside the navigation bar */
}

#BlueNavBar ul li {
    display: inline;
    margin-right: 20px; /* Increase the margin for more space between links */
}

#topBlueNavBar ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px; /* Increase padding for larger clickable areas and more space around text */
    display: inline-block; /*This makes the padding effective */
} 

@media(max-width: 1200px){
    #middleNavBar ul{
        flex-direction: column;
    }
}

#middleNavBar {
    background-color: white;
    display: flex; /* Enables flexbox layout */
    justify-content: space-between; /* Puts maximum space between children */
    align-items: center; /* Vertically centers items */
    width: 100%; /* Full width of the parent container */
    border-bottom: 3px solid #003366;
}

#logo {
    width: 330px; /* Fixed width */
    height: auto; /* Maintains aspect ratio */
}

 #middleNavBar ul {
    list-style-type: none; /* Removes default list styling */
     margin: 0; 
     padding: 0; 
     display: flex; 
     align-items: center; 
     border-left: 4px solid black;
     padding-left: 10px;
 } 

#middleNavBar ul li:not(:last-child) {
    margin-right: 20px; /* Spacing between each link */
    border-right: 4px solid black;
    padding-right: 20px;
    margin-right: 20px;
}

#middleNavBar ul li a {
    color: black;
    margin: 15px;
    font-size: 30px;
    padding-right: 25px;
    text-decoration: none;
    font-weight: bolder;
    font-family: 'Poppins', sans-serif; /* Updated to use the Google Font */
}

#landingContainer{
    color: #003366;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100vw;
    height: auto;
}

#landingContainer div{
    /* margin: 0px 100px 0px 100px; */
    width: 40vw;
    margin-left: 20px;
    font-size: max(2vw, 20px);
}

#landingContainer img{
    width: 50vw;
    height: auto;
}

main {
    /* display: grid;
    grid-template-columns: repeat (2, 1fr); */
    color: #003366;
    padding: 30px;
}

.column-headers {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    text-align: center; 
}

.columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Creates three columns */
    gap: 20px; /* Space between columns */ 
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    width: 80%;
}

section {
    margin-top: 20px; /* Adds space between the column headers and the paragraphs */
    background: #f4f4f4; 
    padding: 10px; /* Optional: adds padding inside each section */
    border-radius: 5px; /* Optional: rounds the corners of the sections */
    display: flex;
    flex-direction: column; /* Ensures the content inside each section is arranged vertically */
}


footer {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}


.top-left-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

#comingSoon {
    font-size: 6vw;
    text-align: center;
}

#goBack {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#goBack button{
    font-size: 20px; 
    color: white;
    background-color: #870b0b;
    padding: 10px;
    margin-top: 10px;
}
#goBack button:hover{
    color: black;
    background-color: white;
}



.careerLink{
    display: flex;
    flex-direction: column;
    background-color: #003366;
    padding: 20px; 
    margin: 20px;
    list-style: none;
    max-width: 50vw;
}

/* Career Link Styling */
.careerLink .title{
    color: white;
}

.careerLink .dropdown{
    color: white;
}

.hidden{
    display: none;
}

.showing{
    display: inherit; 
}

.disabled{
    background-color: gray;
}

.available{
    background-color:#003366;
}