/* YODEZEEN Projects Header */
.yodezeen-projects-header {
    /*background: #f5f5f5;*/
    padding: 80px 0 40px;
    margin-top: 10px;
}

.projects-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.projects-title-section {
    margin-bottom: 60px;
}

.projects-subtitle {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.projects-main-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0;
}

/* Make title sections clickable */
.title-filter {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.title-dark {
    color: #0a0a0a;
}

.title-dark:hover {
    opacity: 0.7;
}

.title-dark.active {
    color: #0a0a0a;
}

.title-light {
    color: #ccc;
}

.title-light:hover {
    color: #999;
}

.title-light.active {
    color: #0a0a0a;
}

.title-separator {
    color: #0a0a0a;
    pointer-events: none;
}

.projects-filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.filter-left {
    flex: 1;
}

.project-menu-yodezeen {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.project-menu-yodezeen li {
    margin: 0 !important;
}

.project-menu-yodezeen a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.project-menu-yodezeen a:hover {
    color: #0a0a0a;
}

.project-menu-yodezeen a.active {
    color: #0a0a0a;
}

.project-menu-yodezeen a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #0a0a0a;
}

/* Responsive */
@media (max-width: 991px) {
    .yodezeen-projects-header {
        padding: 60px 0 30px;
    }

    .projects-header-inner {
        padding: 0 20px;
    }

    .projects-main-title {
        font-size: 40px;
    }

    .projects-title-section {
        margin-bottom: 40px;
    }

    .project-menu-yodezeen {
        gap: 25px;
    }
}

@media (max-width: 575px) {
    .projects-main-title {
        font-size: 28px;
    }

    .project-menu-yodezeen {
        flex-direction: column;
        gap: 15px;
    }

    .projects-filter-section {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 991px) {
    .project-filter .project-item {
        width: 50% !important;
    }
}

@media (max-width: 575px) {
    .project-filter .project-item {
        width: 100% !important;
    }
}
