.project-item {
    width: 100%;
    min-height: 100vh;
}

.reversed {
    flex-direction: row-reverse;
}

.project-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 2rem;
}

.project-text-content {
    max-width: 448px;
    margin: 0 auto;
}

.project-image-column {
    width: 100%;
    height: 16rem;
    background-size: cover;
    background-position: center;
}

.project-about-section {
    margin-top: 2rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.project-location {
    margin-top: 1rem;
}

.hero-img {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* backdrop-filter: blur(8px);
    --webkit-backdrop-filter: blur(8px); */
}

.navbar {
    background-color: #000000;
    width: 100%;
    height: 5.7em;
    display: grid;
    align-content: center;
    position: sticky;
    top: 0;
    z-index: 19999;
}

#page {
    overflow: visible !important;
}

.lg-navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100vw;
}

.lg-navbar ul {
    display: flex;
    flex-direction: row;
    margin: 0;
    list-style: none;
    justify-content: space-between;
}

.lg-navbar ul li a {
    color: white;
}

.lg-navbar ul li div {
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease-in-out;
}

.lg-navbar ul li div:hover {
    border-bottom: 3px solid #dbb641;
}

.lg-navbar ul li div a {
    transition: color 0.3s ease-in-out;
}

.lg-navbar ul li div a:hover {
    color: #dbb641 !important;
}

.listing-row {
    min-height: 200px;
}

.listing-row img {
    max-height: 200px;
    object-fit: cover;
}

.listing-row p {
    margin: 0;
}

.filters {
    padding: 0 5% 0 5%;
}

.filter-section {
    justify-content: space-between;
    margin-bottom: 20px;
}

.filter-section label {
    width: 160px;
    max-height: 50px;
}

.filter-section input[type="number"] {
    max-height: 50px;
}

.filters h5,
.filters h6 {
    margin: 0 0 20px 0;
}

.clear-filters {
    background-color: black;
    color: white;
    padding: 0.2rem 1.2rem;
    margin: 0 !important;
    border-radius: 4px;
    align-items: center;
    transition: color 0.3s ease-in-out;
}

.clear-filters:hover {
    cursor: pointer;
    color: red;
}

.clear-filters p {
    margin: 0;
}

.results-info {
    justify-content: space-between;
}

.bath-info {
    color: black;
    align-items: center;
}

.bath-info p {
    margin: 1rem;
}

.top-contact {
    color: #dbb641 !important;
    width: auto;
    align-items: center;
}

.top-contact p {
    margin: 0 !important;
}

.blurred-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(80%);
    background-color: rgba(8, 8, 8, 0.3);
}

.error-section {
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Small screens */
@media screen and (max-width: 600px) {
    .hide-mob {
        display: none;
    }

    .error-section {
        text-align: center;
    }
}

/* Medium to large screens (>= 1024px) */
@media (min-width: 1024px) {
    .project-container {
        flex-direction: row;
    }

    .project-text-column,
    .project-image-column {
        width: 50%;
        padding: 4rem;
    }

    .project-image-column {
        height: 100vh;
    }

    .hide-desk {
        display: none;
    }
}