/* General styles ----------------------------------- */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: black;	
    background-color: white;
}

/* Navigation ----------------------------------- */

html {
    scroll-padding-top: 80px; /* match navbar height and ensure headings aren't hidden by fixed navbar */
}

.fixed-nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    color: white;
    background-color: #003366;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.logo img {
    max-height: 50px;
    width: auto;
}

/* Make logo smaller on mobile */
@media (max-width: 600px) {
    .logo img {
        height: 35px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-shrink: 1;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    white-space: nowrap;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Main content ----------------------------------- */
main {
    padding: 6rem 2rem 2rem 2rem;
}

section h2 {
    color: #003366;
    text-align: center;
    margin-bottom: 1.5rem; /* space between heading and content */
    font-weight: 400;
}

section h3 {
    color: black;
    text-align: left;
    margin-bottom: 1 rem;
    font-weight: 500;
}

/* Sections ----------------------------------- */
section {
    margin-bottom: 4rem;
}

ul {
	padding-left: 50px;
}

/* Home section ----------------------------------- */
#home p {
    color: #003366;
    text-align: center;    
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* About section ----------------------------------- */

#about p {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Contact section ----------------------------------- */

#contact a {
    color: rgb(240, 138, 0);
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer ----------------------------------- */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


footer {
    background-color: #003366;
    text-align: center;
    padding: 2rem;
    color: white;
}
