@import url('../fonts/SofiaSansCondensed-Italic-VariableFont_wght.ttf');
@import url('../fonts/SofiaSansCondensed-VariableFont_wght.ttf');

body {
    margin: 0;
    background: black;
    font-family: 'Sofia Sans Condensed', sans-serif;
}
.selected {
    outline: azure 3px solid;
    z-index: 2;
}

.selected img{
    z-index: 5;
}
.map_tile {
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.map_tile:hover {
    outline: azure 3px solid;
    cursor: pointer;
    z-index: 2;
}
.btn_container {
    position: fixed;
    bottom: 3vh;
    right: 3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn_container .zoom_button {
    cursor: pointer;
    border-radius: 9999px;
    --un-backdrop-blur: blur(8px);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    font-size: 30px;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5%;
    transition: transform 0.4s ease-in-out;
}

.zoom_button:hover {
    transform: scale(1.15);
}

.image_description {
    position: fixed;
    left: 0;
    top: 0;
    width: 40%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    color: azure;
    z-index: 3;
}

.image_description .close_description {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    width: 20px;
    background-color: rgba(255,255,255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    border-radius: 20px;
}

.close_description:hover {
    background-color: #f0e68c;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 0 10px #f0e68c;
}

.description_container {
    width: 80%;
}

.description_container div{
    display: flex;
    justify-content: space-between;
}

.description_container a{
    width: 100%;
    height: 40px;
    background: rgba(255,255,255, 0.7);
    text-align: center;
    line-height: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    text-decoration: none;
    color: black;
}

.description_container a:hover{
    background-color: #f0e68c;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 0 10px #f0e68c;
}



.tile_pinned {
    position: relative;
    top: -34%;
    left: -36%;
    width: 25px;
    height: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: azure;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.map_tile.unavailable_tile {
    -webkit-filter: brightness(0.5);
    -moz-filter: brightness(0.5);
    -o-filter: brightness(0.5);
    -ms-filter: brightness(0.5);
    filter: brightness(0.5);
    transition: filter 0.3s ease-in-out;

}

.navi_container{
    position: fixed;
    top: 3vh;
    right: 3vw;
    display: flex;
    width: 20vw;
    justify-content: space-between;
    z-index: 15;
}

.navi_container .search_btn {
    cursor: pointer;
    border-radius: 9999px;
    --un-backdrop-blur: blur(8px);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    font-size: 30px;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5%;
    transition: transform 0.4s ease-in-out;
}

.search_btn img {
    width: 20px;
    height: 20px;
}

.search_container{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.search_container input {
    width: 20vw;
    height: 5vh;
    text-align: center;
    border-radius: 20px;
    color: rgb(255,255,255);
    background: rgba(0,0,0,0.8);
    border: none;
}

.filters_container {
    background: rgba(0,0,0,0.6);
    width: 60%;
    height: 50px;
    border-radius: 20px;
    margin-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filters_container .filters_btn {
    color: rgba(255, 255 ,255, 0.6);
    background: rgba(0, 0, 0, 0.4) ;
    display: flex;
    height: 70%;
    border-radius: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 5%;
    width: 45%;
    cursor: pointer;
}

.filters_container .filters_btn.active {
    background: rgba(0, 0, 0, 1);
    color: rgb(255, 255 ,255);
}

.search_message {
    position: fixed;
    top: 30vh;
    left: 40vw;
    display: flex;
    width: 20vw;
    height: 7vh;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 25px;
    color: rgba(224, 17, 17, 0.9);
    background: rgba(0, 0, 0, 0.8);
    border-radius: 25px;
}
