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-hotel{
    color:#008080;
    font-size: 2rem;
}
.nav-link{
    color:#222222 !important;
}
.f-info-link a{
    text-decoration: none;
    color:black;
}
.f-info-link{
gap:7.5px;
}
.f-info-link a:hover{
    text-decoration: underline;
    color:red;
}
.f-info-link ,.f-info-socials,.f-info-brand{
    width:100%;
    display:flex;
    align-items:center;
    justify-content: center;;
}
.f-info-socials i{
    font-size:1.5rem;
    margin-right:1rem;
}

.f-info{
    text-align:center;
    display:flex;
    height:8rem;
    background-color:#ebebeb;
    flex-wrap: wrap;
    justify-content: center;
    align-items: space-evenly;
}
.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 !important;
}
.listing-link{
    text-decoration:none;
}
.card-img-overlay{
    opacity:0;
}
.card-img-overlay:hover{
    opacity:0.2;
    background-color: white;
}
/* add page */
.add-btn{
    background-color: #008080 !important;
    border: none !important;
}
/* edit page */
.edit-btn{
    background-color:#008080 !important;
    border: none !important;
}
/* show page */
.show-img{
    width: 100% !important;
    height: auto !important;
    max-height: 35vh;
    object-fit: cover;
}
.btn-all{
    display:flex;
}
.btn-edit{
    margin-right: 4rem;
    background-color: black !important;
    border:none !important;
}
.btn-delete{
    background-color:#dc3545 !important;
    border:none !important;
}


/* map */
#map,
.map-box {
  width: 100% !important;
  max-width: 100% !important;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e5e5;
  margin: 0 auto;
}

#map {
  border-radius: 20px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

#map:hover {
  transform: scale(1.04);
  transition: all 0.7s ease;
}

.pulse-marker {
  width: 18px;
  height: 18px;
  background: red; 
  border-radius: 50%;
  position: relative;
}

/* outer pulse */
.pulse-marker::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0;
  background: red;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(2.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Pin wrapper */
.pin {
  position: relative;
  width: 30px;
  height: 30px;
}

/* Actual pin */
.pin::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: #e63946; /* red pin */
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  left: 4px;
  top: 0;
}

/* Center dot */
.pin::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  top: 6px;
  left: 10px;
}

/* Pulse effect */
.pulse {
  position: absolute;
  width: 22px;
  height: 22px;
  background: rgba(230, 57, 70, 0.5);
  border-radius: 50%;
  left: 4px;
  top: 0;
  animation: pulse 1.5s infinite;
  z-index: -1;
}

/* navbar */
.filters{
            display:flex;
            flex-wrap:wrap;
            align-items: center;
        }
        .filter{
            text-align: center;
            margin-right:2rem;
            margin-top: 2rem;
            opacity:0.7;
        }
        .filter:hover{
            opacity:1;
            cursor: pointer;
        }
        .filter p{
            font-size: 0.7rem;
        }
        .tax-info{
            display:none;
        }
        .tax-toggle{
            border:1px solid black;
            border-radius: 1rem;
            height:3.5rem;
            padding:1rem;
            margin-left: 3rem;
            cursor: pointer;
        }
        .tax-toggle:hover {
        transform: scale(1.01);
        transition: all 0.2s ;
        background-color: rgb(222, 222, 234);
}




p, li, h1, h2, h3, h4, h5 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}


/* Fix navbar collapse on mobile */
.navbar-collapse {
  background-color: white;
  padding: 1rem;
  width: 100%;
  left: 0;
}

body {
  overflow-x: hidden;
}
