* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Serif Display', serif;
}

body {
    font-family: 'Jost', sans-serif;
    color: #292F36;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 30px 0;
    background-color: #fff;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #292F36;
    text-decoration: none;
}

.logo img {
    height: 34px;
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #292F36;
    font-weight: 400;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #CDA274;
}

.hero {
    background-color: #F4F0EC;
    padding: 120px 0;
    text-align: center;
    background-image: url('/img/Project\ Image\ Main.png');
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #292F36;
}


.about-us-overlay {
    position: absolute;
    margin-top: 90px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px 70px;
    border-radius: 20px;
    text-align: center;
}

.about-us-overlay h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
}

.filter-container {
    display: flex;
    justify-content: center;
    margin: 60px 0 40px;
    gap: 30px;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #292F36;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.filter-btn:hover, .filter-btn.active {
    color: #CDA274;
    border-bottom: 2px solid #CDA274;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background: #F4F0EC;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-img {
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.project-category {
    color: #4F4F4F;
    font-size: 16px;
}

.project-link {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #292F36;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #CDA274;
    color: #FFFFFF;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 60px 0;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: none;
    border: 1px solid #CDA274;
    cursor: pointer;
    color: #292F36;
    transition: all 0.3s ease;
}

.page-btn:hover, .page-btn.active {
    background: #CDA274;
    color: #FFFFFF;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 170px;
    height: 40px;
}
li{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
p{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h1{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
button{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h3{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
a{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
div{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
footer {
    background-color: #F4F0EC;
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-column p, .footer-column a {
    color: #4F4F4F;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #CDA274;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #E5E5E5;
    color: #4F4F4F;
}

@media (max-width: 968px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .filter-container {
        flex-wrap: wrap;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}