@import url("https://fonts.cdnfonts.com/css/museo-sans-rounded");

body {
  height: 1000px;
}
* {
  padding: 0;
  margin: 0;
  font-family: "Museo Sans Rounded", Helvetica;
  box-sizing: border-box;
} 

.description {
  font-size: 12px;
  font-weight: 200;
}
  

.mb-100{
    margin-bottom: 50px;
}

 
.app-body {
  /* position: absolute;
  top: 80px; */
  margin: 20px;
  width: 100%;
  margin: 30px auto; 
  padding: 20px;
  margin-bottom: 50px;
  margin-top: -20px;
}
.slider-with-controls{
  background-color: green;
  width: 100%;
  height: 500px;
  position: relative;
}
/* .row-slider-section {
  margin: 30px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;  
  gap: 20px;

  position: relative;
  overflow: hidden;
 
} */

/* 
.items-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;  
} */
 

.prev-btn, .next-btn {
  cursor: pointer;
  position: absolute;
  background-color: rgba(0, 225, 255, 0.2);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;

  color: rgb(0, 225, 255);
  z-index: 2;
  top: 150px;
}

.slick-prev, .slick-next{
  display: none !important;
}

.prev-btn{ 
  left: 10px;
  top: 200px;
}
.next-btn{
  right: 10px;
}



.custom-item {
  width: 350px;
  height: 300px; 
}
.custom-item .image{
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 14px;
  height: 160px !important; 
}

.custom-item .image img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  transition: all 0.3s ease-in-out;

}
.custom-item .description {
  margin: 10px 0px;
}

.custom-item .title {
  color: grey;
  font-weight: 600;
}

.custom-item .location {
  font-size: 10px;
  color: grey;
  font-weight: 500; 
  margin: 5px 0px;
}


.custom-item .price{
  color: black;
  font-weight: 600;
  font-size: 16px;
}

.custom-item .rating{
  color:rgb(0, 225, 255) ;
}

.custom-item:hover .image img {
  transform: scale(1.2);
} 


.slider{
  margin: 20px 0px; 
}

.custom-slide {
  width: 350px; 
  margin: 0px 10px;
}





@media only screen and (min-width: 768px) {
  .mobile-view {
    display: none;
  }
  .menu-section img {
    display: none;
  }

  .logo-section {
    width: 10%;
  }

  .nav-search-container {
    width: 50%;
  }

  .hero-section {
    display: none;
  }

  .desktop-nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;
    list-style-type: none;
    gap: 20px;
    font-size: 14px;
  }
  .desktop-nav-links li {
    cursor: pointer;
    transition: all 0.3s linear;
    &:hover {
      color: #518cc7;
    }
  }

  .bottom-navigation {
    display: none;
  }
 
 
}





@media (max-width:500px){
  .custom-item{
    width: 250px;
  }
  .next-btn,  .prev-btn{
    top: 750px ;
    /* display: none; */
    
  }

  .prev-btn{
    left: 2px;
  }
  .next-btn{
    right: 2px;
  }
}

/* 
@media (max-width: 768px) {
  .items-container { 
      scroll-behavior: smooth;  
      scroll-snap-align: center; 
      overflow-x: scroll;  
      -webkit-overflow-scrolling: touch;  
  }

  .custom-item {
      flex: 0 0 auto;  
      scroll-snap-stop: always;  
      width: 100%; 
  }
} */