*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Desktop Nav */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.logo{
    color: #F7C359;
    font-size: 2.4em;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.navbar a{
    color: #F7C359;
    text-decoration: none;
    margin-left: 2.5rem;
}

#check {
    display: none;
}

.icons{
    position: absolute;
    font-size: 2.8rem;
    right: 5%;
    cursor: pointer;
    display: none;
    color: #F7C359;
}


.about{
    display: flex;
    margin-top: 10em;
}

/*Mobile Navigation*/

@media (max-width: 992px){
    .header {
        padding: 1.3rem 5%; 
    }
}

@media (max-width: 768px){
    .icons {
        display: inline-flex;
    }

    #check:checked~.icons #menu-icon {
        display: none;
    }

    .icons #close-icon{ 
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }

    .header{
        background-color: rgba(0, 0, 0, .1);
        backdrop-filter: blur(.20em);
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background-color: rgba(0, 0, 0, .1);
        backdrop-filter: blur(4em);
        overflow: hidden;
        transition: .3s ease;
    }

    #check:checked~.navbar {
        height: 17.7rem;
    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        transition: 3s ease;
    }

    #check:checked~.navbar a{
        transform: translateY(0);
    }

}

/* Banner image*/
.cover-section {
    position: relative;
    height: 900px; 
    overflow: hidden;
}

.cover-section img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.cover-section .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Information About Project Section */

p{
    color: #D4563D;
}

h1, h2{
    color: #C44E37;
}

.container {
    display: flex;
    flex-wrap: wrap;
}
.left {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}
.right {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}
.project-info {
    background-color: white;
    padding: 10px;
    margin-bottom: 20px;
}
.project-info p{
    line-height: 1.50em;
}
.project-info h2{
    margin-bottom: .50em;
}

.project-summary {
    padding: 10px;
    border-radius: 5px;
    margin-top: -2em;
}

.container{
    margin-top: 3em;
}

.project-summary p{
    margin-top: 1em;
    line-height: 1.5em;
}

.image-container {
    display: none;
}
.image-container img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .left, .right {
        flex: auto;
    }
    .image-container {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }
    .image-container{
        margin-top: 1em;
    }
    .ps-title{
        margin-bottom: .50em;
    }
    .project-summary p{
        line-height: 1.80em;
    }
    .project-info{
        background-color: white;
    }
    .project-info h2{
        color:#C44E37;
        margin-bottom: .50em;
    }
    .project-info p{
        line-height: 1.50em;
    }
    p{
        color: #D4563D;
    }
    .p2{
       margin-top: 1em;
    }
   .ps-title{
        font-size: 3em;
        color:#C44E37;
   }
  
}

/*Section 2 */

.container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Distribute items evenly */
}
.left {
    flex-basis: 48%; /* 48% width for left side on larger screens */
}
.right {
    flex-basis: 48%; /* 48% width for right side on larger screens */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Gap between stacked images */
}

.image {
    display: block;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        justify-content: flex-start; /* Align items at the start */
    }
    .left, .right, .big-image {
        flex-basis: 100%; /* Full width for all images on mobile */
        margin-top: 10px; /* Space between images on mobile */
    }
    .big-image {
        margin-top: 20px; /* More space between big image and above images on mobile */
    }
}

/*Footer */
footer {
    text-align: center;
    margin-top: 80px; /* Adjust as needed */
    margin-bottom: 30px;
}
.social-icons {
    margin-bottom: 20px; /* Adjust as needed */
}

.social-icons img{
    height: 30px;
}
