body{
    background-color: rgb(253, 245, 234);
}
:root .dark-mode{
    --bg-main: rgb(32, 32, 32);
    --bg-primary: rgb(253, 245, 234);
}
body .dark-mode{
    background-color: var(--bg-main);
    color: var(--bg-primary);
}
.booking-bg{
    background-image: url("../images/booking/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 330px;
}
body.dark-mode .search-main{
    background-color: rgb(32, 32, 32);
}
.search-main{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgb(253, 245, 234);
}
.search-container {
    position: absolute;
    top: -40px;
    display: flex;
    align-items: center;
    background-color: rgba(246, 238, 238, 0.9);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0px 0px 10px 3px #b1b1b1;
}
.input-box {
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 4px;
    padding: 10px 12px;
    margin: 0 5px;
    font-size: 14px;
    width: 200px;
    outline: none;
}
body.dark-mode .labels label{
    color: rgb(32, 32, 32);
}
.labels{
    display: flex;
    gap: 5px;
    flex-direction: column;
}
.labels label{
    margin-left: 10px;
    font-size: 17px;
    font-weight: 700;
}
.guest-dropdown-container {
    position: relative;
}
.guest-dropdown {
    position: absolute;
    top: 58px;
    left: 7px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 250px;
    display: none;
    z-index: 1000;
}
.guest-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.guest-item span {
    font-size: 14px;
}

.guest-control button {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.guest-control button:hover {
    background-color: #ddd;
}

.guest-control span {
    font-size: 14px;
    margin: 0 10px;
}

.done-btn {
    background-color: #fff;
    color: rgb(207, 92, 92);
    border: 1px solid rgb(207, 92, 92);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
}

.done-btn:hover {
    background-color: rgb(207, 92, 92);
    color: #fff;
}

.search-btn {
    margin-top: 21px;
    background-color: #fff;
    color: rgb(207, 92, 92);
    border: 1px solid rgb(207, 92, 92);
    padding: 9px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.search-btn:hover {
    background-color: rgb(207, 92, 92);
    color: #fff;
}
.color{
    color: rgb(32, 32, 32);
}
.best-offer-section{
    margin-top: 150px;
    width: 85%;
    height: auto;
    padding-bottom: 50px;
}
body.dark-mode .best-offer-section h1{
    color: rgb(253, 245, 234);
}
.best-offer-section h1{
    font-size: 45px;
    color: rgb(32, 32, 32);
    padding: 10px;
    margin-bottom: 20px;
}
.best-offer-container{
    display: flex;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.best-offer-card{
    width: 400px;
    height: 450px;
    background-color: #fff;
    border-radius: 10px;
}
.best-offer-card:hover{
    transform: scale(1.05);
}
.des-img{
    width: 400px;
    height: 250px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.package-name{
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
}
.package-city{
    padding-left: 10px;
    font-size: 18px;
    color: rgb(99, 98, 98);
}
.start-rate{
    margin-top: 15px;
    padding-left: 10px;
    font-size: 15px;
    font-weight: 700;
}
.rate{
    font-size: 22px;
    font-weight: 700;
    padding-left: 10px;
}
.person{
    margin-top: 5px;
    font-size: 15px;
    padding-left: 60px;
    color: rgb(99, 98, 98);
}
