/* Navbar background color */

/* header css */
.custom-navbar {
  background-color: #57252D !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* ensures it stays above other elements */
  height: 118px;
}

.visited-link {
  color: #E7B061 !important;
  font-weight: 600;
}
 .nav-link.custom-hover:hover {
    background-color: #57252D;
    color: rgb(216, 219, 36) !important;
  }
/* header css */

  .banner-container {
  margin-top:110px; /* adjust this to match navbar height */
}

  /* Hover effect for nav links */
 
  

  .banner-container img{
     width: 100%;
    height: 550px;
  }

  .banner-container {
  position: relative;
  width: 100%;
  /* height: 400px; */
  /* overflow: hidden; */
}

 .banner-container{
  position: relative;
 } 

 .search-bar-container {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

.search-bar input {
  flex: 1;
}
.search-bar{
    background: white;
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display:flex;
  gap:10px;
   padding:10px;
  border-radius: 12px;
  align-items: center;
}
.search-btn {
  color: white;
  background-color: #57252D;
  border: none;
}

.search-btn:hover {
  background-color: #3e1b22; /* slightly darker for hover effect */
  color: beige;
}

 .category-section {
  padding: 40px 0;
}

.section-title {
  font-weight: 600;
  color: #57252D;
  font-size: 32px;
  margin-top: 55px;
}

.category-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-card:hover {
  background-color: #f9f2f2;
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.category-icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: #57252D;
}

.category-title {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

@media (max-width: 576px) {
  .category-card {
    padding: 20px 10px;
  }
}


.custom-footer {
  background-color: #57252D;
  color: white;
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-link:hover {
  color: #ffd700;
  text-decoration: underline;
}

.social-icons a {
  color: white;
  font-size: 18px;
  margin-right: 12px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
}

.footer-bottom {
  background-color: #3e1b22;
  font-size: 14px;
}

.contact-header {
  background-color: #57252D;
  color: white;
}

.contact-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 18px;
  margin: 0;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
}

.contact-form .submit-btn {
  background-color: #57252D;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-form .submit-btn:hover {
  background-color: #3e1b22;
  color: #ffd700;
}

.map-box {
  width: 100%;
  height: 250px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  border-radius: 12px;
  font-size: 18px;
}

.listing{
  background-color: #57252D;
  border: 2px solid orange;
  color: white;
}

.dropdown-menu-dark {
  background-color: #343a40;  /* Bootstrap dark background */
  color: white;
margin-top: -10px !important;
}

.dropdown-menu-dark .dropdown-item {
  color: white;
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
  background-color: #495057; /* Slightly lighter dark for hover */
  color: white;
}
.heading{
    color: #ffd700;

}