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

container{
    flex: 1;
}

.navbar {
    height: 5rem;
    background-color: white;
}

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

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

.f-info-links a {
    text-decoration: none;
    color: #222222;
}

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

.f-info {
    text-align: center;
    height: 8rem;
    background-color: #bebebe;
    display: flex;
    flex-direction: column; /* Stack elements */
    justify-content: center;
    align-items: center;
    gap: 0.5rem; /* Space between sections */
}

.f-info-socials {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Space between icons */
}

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

.f-info-links {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Space between links */
}


/* cards */
.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;
}

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

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

/*card effect*/
.card-img-overlay{
    opacity: 0;
}

.card-img-overlay:hover{
    opacity: 0.2;
    background-color: white;
    
}

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


.card:hover {
    transform: translateY(-4px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

/* footer style */
.footer {
    background-color: #f9f9f9;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    font-family: sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .footer-socials a {
    color: #555;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
    text-decoration: none;
  }
  
  .footer-socials a:hover {
    color: #000;
  }
  
  .footer-links a {
    color: #555;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-brand {
    font-weight: 500;
    color: #333;
  }
  
  