body {
    margin: 0;
    padding: 0;
 }
 /* //NAVBAR SECTION// */


.navbar {
    background-color: white;
    padding: 10px 20px;
}

.navbar-brand {
    font-weight: bold;
    font-size: 24px;
    color: #fff !important;
}

.nav-link {
    color: #000;
    margin-right: 15px;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
  }
  .btn-outline{
    color:rgba(249, 159, 28, 1) ;
    text-decoration: none;
    margin-right: 15px;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    text-align: center;
    border: none !important;
  }
.button-section{
    background-color:rgba(249, 159, 28, 1) !important;
    border-radius: 5px;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    height: 39px;
    width: 126px;
    text-align: center;
  }
.button-section .add{
    color: #ffffff;
    background-color:rgba(249, 159, 28, 1) !important;
    border: none;
    padding: 5px;
}
 /* //NAVBAR SECTION END// */


 /*// CITY SECTION START //*/
 .city {
    position: relative;
    color: white;
    text-align: center;
    height:35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Background Image with Black Opacity */
.city::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('/storage/images/background.png') 
                no-repeat center center/cover;
    opacity: 1; 
    z-index: -1;
}
.city-text h1{
    font-size: 80px;
    font-weight: 800;
    font-family: 'Raleway', sans-serif;
    line-height: 60px;
    letter-spacing: 0%;
}
.search-bar {
    background:rgba(255, 255, 255, 1);
    border-radius: 100px;
    padding: 8px;
    width: 950px;
    height: 70px;
    border: 5px solid rgba(202, 202, 202, 1); 
  }
  
  .search-bar input,
  .search-bar select {
    border:none;
    outline: none;
    flex: 1;
    padding: 8px 10px;
  }
  .input-group-text{
    height: 42px;
    font-size: 16px;
    line-height: 18px;
    font-weight:300;
    font-family:'Poppins', sans-serif;
    background: none;border: none;

  }
  .search-bar .fa-solid {
    color:  #ff9800;
  }
  
  .search-btn {
    background: #ff9800;
    color: #000;
    border: none;
    font-family:'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    white-space: nowrap;
    min-width: 120px;
  }

  .category-buttons .btn{
    background: #D9D9D9;
    border-radius: 100px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    padding: 10px 20px;
    font-family:'Poppins', sans-serif;
  }
  .form-control:focus{
    box-shadow: none;
  }
.form-select:focus{
    box-shadow: none;
}
@media (max-width: 990px) {
    .city-text h1{
        font-size: 50px;
        font-weight: 600;
        line-height: 40px;
        letter-spacing: 0%;
    }
    .search-bar {
        flex-direction: column;
        align-items: stretch;
        width: auto;
        height: auto;
        background: none;
        border: none;
      }
      .search-bar .input-group-text {
        color:  #ff9800;
        background-color: #ddd;
      }
      .search-bar input,
      .search-bar select,
      .search-btn {
        width: 100%;
        margin-bottom: 10px;
      }
}


/*// CITY SECTION end//*/
/* second section start */
.category-card {
    width: 150px;
    padding: 20px;
    text-align: center;
    border-radius: 50%;
}
.category h5{
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    font-family:'Poppins', sans-serif;
        white-space: nowrap;
    }
  .category p{
    background-color: rgba(254, 242, 255, 1);
    border-radius: 10px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    font-family:'Poppins', sans-serif;
        white-space: nowrap;
    color: black !important;
    padding: 5px;
}
.active {
    background-color: rgba(249, 159, 28, 1);
    color: white;
}
.inactive {
    background-color: rgba(255, 238, 214, 1);
    color: black;
}
.category-img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
/* second section start */

/* //TOP RATED SECTION //*/


.top-rated {
    padding: 20px;
}
.top-rated-places   {
    text-align: center;
    align-items: center;
    margin-top: 50px;

}
.top-rated-places h1{
  font-size: 50px;
  line-height: 50px;
  font-family: 'Raleway', sans-serif;
  color: rgba(0, 0, 0, 1);
  font-weight: 700;

}
.top-rated-places p{
  color: rgba(0, 0, 0, 1);
  font-weight: 300;
  text-align: center;
  line-height: 18px;
  font-size: 12px;

}
.places-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.place-card {
    background: white;
    border: 1px solid rgba(167, 167, 167, 1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}
.place-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.card-content {
    padding: 15px;
}
.card-content p{
    font-size: 16px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    line-height: 18px;
    color: #838383;
}
.price-view h3{
  font-size: 18px;
  margin-top: 10px;
  line-height: 25px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}
.user-info {
    display: flex;
   text-align: center;
    justify-content: space-between;
    color: gray;
    font-family: 'Poppins', sans-serif;
}
.user-info .aniel{
    margin-right: 42px;
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    font-family: 'Poppins', sans-serif;
}

.user-info img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.rating {
    color:rgba(137, 137, 137, 1);
    margin: 10px 0;
    line-height: 18px;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;

}

.price-view {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.price {
    font-size: 25px;
    font-weight: 600;
    color:rgba(237, 29, 38, 1);
    font-family: 'Poppins', sans-serif;
    line-height: 18px;
}

 .view {
    background:#F99F1C;
    color: white;
    border: none;
    padding: 8px 15px;
    width: 100%;
    border-radius: 100px;
    height: 40px;
}   
/* //TOP RATED SECTION END //*/
 


/* FOOTER  section start */
.footer {
    background-color: rgba(44, 44, 44, 1);
    color: white;
    padding: 40px 0;
}
.footer h2{
    margin-bottom: 30px;
}
.flud {
    padding-left: 45px;
    padding-right: 30px;
}
.flud img{
    color: #fff;
}
.list-unstyled{
    text-decoration: none;
    line-height: 30px;
    font-size: 15px;
}
.col-md-2 {
    margin-left: 40px;
}

@media (max-width: 991px) {
    .col-md-2 {
        margin-left: 0px;
        margin-top: 20px;
    }
  
}
.footer a {
    color: white;
    text-decoration: none;
   
}
.footer hr{
    border: 1px solid white;
    color: white;
}

.social-icons a {
    margin-right: 10px;
    font-size: 20px;
    color: white;
}

.social-icons a:hover {
    color: #ddd;
}

body {
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.form-control:focus {
    box-shadow: none;
    border-radius: none;
}

.form-select:focus {
    box-shadow: none;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    padding: 40px;
    line-height: 30px;
}

.login-box h2 {
    font-family: 'Aleo', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 50px;
    letter-spacing: normal;
    color: black;


}

.login-box p {
    font-family: 'Popins', serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: normal;
    color: black;


}

.form-label {
    font-family: 'Popins', serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: normal;
    color: black;
}

.form-control {
    font-family: 'Popins', serif;
    font-weight: 275;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: normal;
    color: rgba(132, 132, 132, 1);
    box-shadow: none;
    height: auto;
}

.form-label {
    box-shadow: none;

}

.submit {
    background-color: rgba(126, 0, 134, 1);
    color: white;
    border-radius: 5px;
    border: none;
    padding: 10px;
    height: auto;
    width: 756px;
    font-family: 'Popins', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: normal;
    color: white;
}

.submit:hover {
    background-color: rgba(126, 0, 134, 1);
    color: white;
    border-radius: 5px;

}

.image-grid {
    height: 100%;
    width: 100%;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 200px;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid rgba(185, 185, 185, 1);
    white-space: nowrap;
    height: auto;
}

.btn-social:hover {
    border: 1px solid rgba(185, 185, 185, 1);
}

.btn-google {
    background: white;
    border: 1px solid rgba(185, 185, 185, 1);
}

.btn-facebook {
    background: none;
    border: 1px solid rgba(185, 185, 185, 1);
}

@media (max-width: 576px) {
    .d-flex.flex-wrap {
        flex-direction: column;
    }
}

.last {
    font-family: 'Popins', serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: normal;
    color: black;
}