﻿.photo-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
}

.photo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    transform: scale(1.1); /* Optional: prevents edges from showing due to blur */
    z-index: 0;
}

.photo-foreground {
    position: relative;
}

@media only screen and (max-width: 600px) {
    .mobile-250 {
        height: 250px
    }

    .room-200 {
        height: 200px
    }
}

@media (min-width: 576px) {
    .mobile-250 {
        height: 250px
    }

    .room-200 {
        height: 200px
    }
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .mobile-250 {
        height: 500px
    }

    .room-200 {
        height: 350px
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .mobile-250 {
        height: 500px
    }

    .room-200 {
        height: 350px
    }
}

/*X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .mobile-250 {
        height: 500px
    }

    .room-200 {
        height: 350px
    }
}

/*XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
    .mobile-250 {
        height: 500px
    }

    .room-200 {
        height: 350px
    }
}

