body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 80px; 
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-logo {
    height: 50px;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar-link {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: #E05A2A;
}

.site-title {
    text-align: left;
    font-size: 48px;
    font-weight: bold;
    color: white;
    padding: 20px 0;
    /* margin-left: 20px; */
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header-image {
   
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.header-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-summary {
    text-align: left;
    margin-bottom: 30px;
}

.project-summary h1 {
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.project-summary p {
    color: #ccc;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.back-button-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.back-to-projects {
    padding: 10px 20px;
    background-color: #E05A2A;
    color: white;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.back-to-projects:hover {
    background-color: #c04a22;
}

.image-boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.image-box {
    flex: 1;
    height: 250px;
    background-color: #333;
    border-radius: 0;
    overflow: hidden;
}

.box-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-box:hover .box-image {
    transform: scale(1.1);
}

.site-footer {
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid white;
    margin-top: auto;
    font-family: 'Montserrat', sans-serif;
    background-color: black;
}

.site-footer p {
    margin: 0;
    color: white;
}