@charset "utf-8";

img {
    width: 100%; /* need to overwrite inline dimensions */
    height: auto;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 1em;
    padding: 3% 3% 3% 3%;
}

/* hover styles */
.location-listing {
    position: relative;
    background: rgb(242,242,242)
}

.location-image {
    line-height: 0;
    overflow: hidden;
}

.location-image img {
    filter: blur(0px);
    transition: filter 0.3s ease-in;
    transform: scale(1.1);
}

.location-title {
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    z-index: 1;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    --opacity: 0;
    transition: opacity .5s;
    background: rgba(80,80,80, 0.2);
    color: white;

    /* position the text in t’ middle*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-listing:hover .location-title {
    opacity: 1;
}

.location-listing:hover .location-image img {
    --filter: blur(2px);
}


/* for touch screen devices */
@media (hover: none) { 
    .location-title {
        opacity: 1;
    }
    .location-image img {
        --filter: blur(2px);
    }
}