:root {
    --verde-lima: #606c38;
    --verde-lima-claro: #91a54e;
    --verde-esc: #283618;
    --branco: #fefae0;
    --bege: #dda15e;
    --ouro: #bc6c25;
    --preto: #0e0d0d;
}

@font-face {
    font-family: "harmond";
    src: url(../assests/fonts/Harmond/Harmond/Harmond-SemBdItaCond.otf);
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    font-family: "outfit";
    width: 100%;
    height: 100%;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s;
    user-select: none;
}

p {
    font-size: 14px;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    user-select: none;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: var(--branco);
}

.site-info {
    position: absolute;
    top: 50%;
    left: 1.5em;
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.site-info p {
    font-size: 1em;
    color: var(--verde-esc);
}

.site-info p span {
    color: var(--ouro);
    font-family: "harmond";
    font-size: 2em;
}

.img-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    height: 80%;
    overflow: hidden;
}

.img-preview img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.minimap {
    position: absolute;
    top: 50%;
    right: 8em;
    width: 100px;
}

.indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    border: 1px solid var(--verde-esc);
    z-index: 2;
}

.items {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    will-change: transform;
}

.item {
    width: 100%;
    height: 60px;
    padding: 5px;
    cursor: pointer;
}

@media (max-width: 900px) {
    body {
        overflow: hidden;
        touch-action: none;
    }

    .container {
        touch-action: none;
    }

    .site-info {
        top: 50%;
        right: 10%;
        transform: translateX(-50%) rotate(-90deg);
    }

    .site-info p {
        font-size: 0.8em;
    }

    .site-info p span {
        font-size: 1.2em;
    }

    .minimap {
        top: auto;
        right: auto;
        bottom: 3em;
        left: 50%;
        width: auto;
        height: 80px;
        touch-action: none;
    }

    .indicator {
        top: 0;
        left: 0;
        width: 60px;
        height: 100%;
    }

    .items {
        flex-direction: row;
        width: max-content;
        height: 100%;
        touch-action: none;
    }

    .item {
        width: 60px;
        height: 100%;
        padding: 5px;
    }

    .img-preview {
        top: 45%;
        width: 75%;
        height: 50%;
    }
}

