/* 
 * Custom Image Filters
 * Subtle elegant filter inspired by Ritz-Carlton website
 */

.cool-filter {
    position: relative;
}

.cool-filter::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 45, 60, 0.1); /* Very subtle blue tint */
    mix-blend-mode: multiply;
    z-index: 1;
}

.cool-filter::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15)); /* Very subtle gradient */
    z-index: 1;
}

/* Price tag and featured tag need to be above the filter overlay */
.property-price, .featured-tag {
    z-index: 2;
    position: relative;
}
