body {
    margin: 0;
    padding: 0;
    background-color: #fbfbfb;
    font-family: "inter", sans-serif;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.4);
}

.location-container {
    width: 84%;
    height: 52vh;
    margin: 15vh auto; /* Centers the div with margin-top */
    position: relative; /* To position the content on top of the image */
    /* overflow: hidden; */
    border: 1px solid #fbfbfb;
}

/* Style for the image to make it cover the full width and height of the container */
.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area without distortion */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Puts the image behind the content */
    overflow: hidden;
}

/* Style for the name container with no space at the bottom and left */
.location-name-container {
    width: 350px;
    height: 60px;
    position: absolute;
    bottom: -1px; /* No space from the bottom */
    left: -1px; /* No space from the left */
    background-color: #fbfbfb;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fbfbfb;
}

.location-name {
    font-size: 22px;
    color: #333;
    text-align: center;
    font-weight: bold;
    margin: 0;
    margin-right: 10px;
    font-family: "Quattrocento", serif;
    font-weight: 700;
}

@media screen and (max-width: 520px) {
    .location-container {
        width: 90%;
    }
    .location-name-container {
        bottom: -3px;
        left: -3px;
        width: 270px;
        height: 80px;
        clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    }
    .location-name {
        font-size: 18px;
        margin-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    .location-container {
        width: 86%;
        height: 45vh;
        margin-top: 12vh;
    }
}
