body {
    margin: 0;
    padding: 0;
    background: #f4f1ec; 
    color: #2a2a2a;
    font-family: 'Montserrat', sans-serif;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.logo img {
    max-width: 300px;
    height: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.welcome-text {
    font-size: 2.5em;
    margin-top: 30px;
    animation: fadeIn 3s ease-in-out;
}

.team-text {
    font-size: 1.3em;
    margin: 20px 0 60px 0;
    max-width: 600px;
    line-height: 1.5;
    animation: fadeIn 4s ease-in-out;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    margin-top: auto;
    background-color: #3c54a4; 
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.5);
}

.footer .description {
    width: 50%;
    text-align: center;
    margin-left: 10%;
}

.footer .team {
    width: 30%;
    text-align: left;
    margin-right: 5%;
}

.footer .team ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .team a:link, .footer .team a:visited {
    color: #f89c27;
}

.footer .team a:hover {
    color: #ffd700;
}

.footer .team ul li {
    margin: 5px 0;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.navigation-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    padding: 10px 0;
    width: 100%;
    z-index: 999;
}

.nav-logo {
    display: flex;
    height: auto;
    width: auto;
    padding-top: 5px;
    height: 40px;
    margin-left: 5rem;
    margin-right: auto;
    overflow: hidden;
}

.buttons-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 60%;
    margin-left: auto;
    margin-right: 5rem;
}

.nav-button {
    height: 100%;
    align-items: center;
    background-color: #3c54a4;
    box-sizing: border-box;
    color: white;
    display: flex;
    flex: 1;
    justify-content: center;
    padding: 10px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    z-index: 1;
}

.nav-button:visited {
    color: white;
}

.nav-button:hover {
    background-color: #253a7d;
    color: white;
}

.spacer {
    margin-top: 50px;
}

.team-section {
    text-align: center;
    padding: 40px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.team-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-member {
    background-color: #ffffff;
    color: #3c54a4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:visited {
    color: #3c54a4;
}

.team-member:hover {
    transform: scale(1.05);
    background-color: #f89c27; 
    color: #ffffff;
}


.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f89c27;
    transition: transform 0.3s ease-in-out;
}

.project-container {
    max-width: 900px;
    margin: auto;
    padding: 40px;
    text-align: left;
}


.graphics-container img {
    box-shadow: 0 4px 6px rgba(248, 156, 39, 0.7);
}

.original-proposal a {
    color: #f89c27;
    text-decoration: underline;
}

.original-proposal a:hover {
    color: #d27b1e;
}

.documents-container {
    display: flex;
    height: 90vh;
    width: 100%;
}

/* Sidebar */
.documents-sidebar {
    width: 25%;
    background-color: #ede7dd;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

.documents-sidebar h2 {
    text-align: center;
    font-size: 1.5em;
}

.documents-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.documents-sidebar li {
    margin: 10px 0;
}

.documents-sidebar a {
    display: block;
    padding: 10px;
    background-color: #3c54a4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s;
}

.documents-sidebar a:hover {
    background-color: #003366;
    color: white;
}

/* Document Preview */
.document-preview {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.document-preview iframe {
    width: 90%;
    height: 85%;
    border: 2px solid #2a2a2a;
    border-radius: 5px;
}

#document-frame {
    width: 100%;
    height: 100%;
}

#no-preview {
    position: absolute;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8); /* Optional: semi-transparent background */
    padding: 20px;
    border-radius: 8px;
    font-size: 1.2em;
    text-align: center;
}

.hidden {
    display: none;
}


.impact {
    max-width: 900px;
    margin: 40px auto;
    background: #3c54a4; /* Darker blue */
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.impact h2 {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
}

.impact th {
    background-color: #3c54a4;
    color: #ffd700;
}

.impact td {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.header-container {
    background-color: #ede7dd;
    width: 100%;
    padding: 40px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.header-text {
    text-align: center;
    margin-right: 50px;
}

.header-container h1 {
    font-size: 2.5em;
    color: #3c54a4;
    text-shadow: 2px 2px #d6cfcf;
}

.headshot {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid #f89c27;
    box-shadow: 0 0 10px rgba(248, 156, 39, 0.7);
    object-fit: cover;
}

.preview-section {
    text-align: center;
    padding: 40px;
    background-color: #ede7dd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.preview-video {
    min-width: 900px;
    width: 25%;
    margin: 20px auto;
    text-align: center;
}
.preview-video iframe {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}