@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

/* DESIGN SYSTEM  */

:root {
    --green-primary: #009E60;
}

.btn {
    width: 150px;
    height: 45px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-full, .btn-full:hover, .btn-full:focus, .btn-full:active {
    background-color: var(--green-primary);
    color: white;
}

.btn-trasnparent, .btn-trasnparent:hover, .btn-trasnparent:focus, .btn-trasnparent:active {
    background-color: white;
    border: solid var(--green-primary) 1px;
    color: var(--green-primary);
}



/* NAVBAR */
/* .navbar-custom, .nb-left, .nb-right {
    border: solid red 1px;
} */

.navbar-custom {
    width: 100%;
    height: 13vh;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0;
    padding: 10px 20px;

    border-radius: 0;
}


/* .nb-left, .nbl-logo, .nbl-title {
    border: solid red 1px;
} */

.nb-left {
    width: 70%;
    height: 100%;

    display: flex;
    justify-content: left;
    align-items: center;
}

.nbl-logo {
    width: 20%;
    height: 100%;

    display: flex;
    justify-content: left;
    align-items: center;

    border-right: solid gray 2px;
}

.nbl-title {
    width: 80%;
    height: 100%;

    font-size: 20px;
    font-weight: 500;
    color: black;

    display: flex;
    align-items: center;

    padding-left: 30px;
}



/* .nb-right, .nbr-anonymous, .btn-full {
    border: solid red 1px;
} */

.nb-right {
    width: 30%;
    height: 100%;
}

.nbr-anonymous {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: end;
    align-items: center;
}

.nbr-anonymous div {
    display: flex;
    justify-content: center;
    align-items: center;

    color: orange;
    text-decoration: underline;
}




/* MAP */
/* .container-custom, #map, .info-card {
    border: solid red 1px;
} */

.container-custom {
    width: 100%;
    height: 87vh;

    margin: 0;
    padding: 0;

}

#map { 
    width: 100%; 
    height: 100%;
}

/* MAP INFO */
.map-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    
    text-align: center;
    z-index: 1000;
}

.lock-icon {
    font-size: 3rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.map-info p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.login-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.login-buttons .btn {
    margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    /* Maintain original styles but adjust layout */
    .navbar-custom {
        padding: 10px 15px;
    }

    .nb-left {
        width: 65%;
    }

    .nb-right {
        width: 35%;
    }
}

@media screen and (max-width: 768px) {
    .navbar-custom {
        height: auto;
        flex-direction: column;
        padding: 10px;
    }

    .nb-left {
        width: 100%;
        border-bottom: solid gray 1px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .nbl-logo {
        width: 25%;
    }

    .nbl-title {
        width: 75%;
    }

    .nb-right {
        width: 100%;
    }

    .nbr-anonymous {
        justify-content: center;
    }

    /* Map Info adjustments */
    .map-info {
        width: 90%;
        max-width: 400px;
    }

    .login-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    .nb-left {
        flex-direction: column;
        align-items: center;
    }

    .nbl-logo {
        width: auto;
        border-right: none;
        border-bottom: solid gray 2px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .nbl-title {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }

    /* Maintain original font sizes but adjust container */
    .map-info {
        width: 95%;
        padding: 1.5rem;
    }
}