body{
    font-family: "Plus Jakarta Sans", sans-serif !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container{
    flex: 1;
}
/* navbar */
.navbar{
    height: 5rem;
    background-color: white;
}

.fa-compass{
    color : #fe424d;
    font-size: 2rem;
}

.nav-link{
    color : #222222 !important;
}

/* footer */
.f-info-links a{
    text-decoration: none;
}

.f-info-links a:hover{
    text-decoration: underline;
}

.f-info-social ,.f-info-links, .f-info-brand{
    width : 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.f-info-socials i{
    font-size: 1.2rem;
    margin-right: 1rem;
}

.f-info {
    text-align: center;
    display: flex;
    height: 8rem;
    background-color: #ebebeb;
    flex-wrap: wrap;
    justify-content: center;
    align-items: space-between;
}

/* cards */

.listing-card{
    border: none !important;
    margin-bottom: 2rem;
}

.card-img-top {
    border-radius: 1rem !important;
    width: 100% !important;
    object-fit: cover !important;
}

.card-body{
    padding: 0 !important;
}

.card-text p{
    font-weight: 400  ;
}

.listing-link{
    text-decoration: none;
    color: black;
}

/* card effect */
.card-img-overlay{
    opacity: 0;
}
.card-img-overlay:hover{
    opacity: 0.2;
    background-color: white;
}

.add-btn , .edit-btn{
    background-color:#fe424d !important;
    border: none !important;
}

/* show page */
.show-img{
    height: 30vh;
}

.btns{
    display: flex;
}



/* MAP */

#map {
     height: 400px;
     width: 80vh;
}


/* Responsive */

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {

    /* map fix */
    #map {
        width: 100%;
        height: 300px;
    }

    /* navbar spacing */
    .navbar {
        height: auto;
        padding: 1rem;
    }

    /* buttons stack */
    .btns {
        flex-direction: column;
        gap: 10px;
    }
}


/* Mobile */
@media (max-width: 600px) {

    /* body padding for small screens */
    body {
        padding: 0 10px;
    }

    /* cards spacing */
    .listing-card {
        margin-bottom: 1.5rem;
    }

    /* image height control */
    .card-img-top {
        height: 200px;
    }

    /* show page image */
    .show-img {
        height: 25vh;
    }

    /* footer fix */
    .f-info {
        height: auto;
        padding: 1rem 0;
    }

    .f-info-social,
    .f-info-links,
    .f-info-brand {
        margin-bottom: 10px;
    }

    /* navbar links center */
    .nav-link {
        text-align: center;
        padding: 0.5rem 0;
    }

    /* buttons full width */
    .btns button {
        width: 100%;
    }

    /* map full width */
    #map {
        width: 100%;
        height: 250px;
    }
}