.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    text-decoration: none;
    color: #000; /* Set your desired text color */
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--main-color) /* Hover color */
}
.nav-menu li {
    margin-left: 20px;
    position: relative;
}

.c-item {
    position: relative;
    width: 350px;
    overflow: hidden;
}

.c-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.c-item:hover img {
    transform: scale(1.1);
}

.c-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-item:hover .c-overlay {
    opacity: 1;
}

.c-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}
