/* Scroll to Top */

.scroll-top {
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
    background: #229b5d;
    color: #fff;
    opacity: 0.7;
    z-index: 999999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.scroll-top:hover {
    opacity: 1;
    color: #fff;
    background: #313131;
}



.section-title {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 0 15px;
    text-transform: uppercase;
    margin-top: 79px;
}

.section-title:before,
.section-title:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: #28a745;
    /* Màu xanh lá cây */
    transform: translateY(-50%);
}

.section-title:before {
    left: -60px;
}

.section-title:after {
    right: -60px;
}

.row-container {
    display: flex;
    flex-direction: column;
    /* Đặt các phần tử thành cột (hai hàng) */
    align-items: center;
    /* Căn giữa nội dung theo chiều ngang */
    gap: 10px;
    /* Khoảng cách giữa info-row và price-row */
}

.info-row,
.price-row {
    display: flex;
    /* Sắp xếp các phần tử trong hàng theo chiều ngang */
    justify-content: center;
    /* Căn giữa các phần tử trong hàng */
    align-items: center;
    /* Căn giữa các phần tử theo chiều dọc */
    gap: 20px;
    /* Khoảng cách giữa các phần tử trong hàng */
    text-align: center;
    /* Văn bản trong các phần tử được căn giữa */
}

.info-row h3,
.info-row h5 {
    color: #28a745;
}

.review,
.person {
    text-align: center;
    font-size: 18px;
}

.review i {
    color: #ffc107;
    /* Màu vàng cho ngôi sao */
}

.price {
    color: #d9534f;
    /* Màu đỏ nổi bật cho giá */
    font-weight: bold;
    font-size: 24px;
}

.price del {
    color: #6c757d;
    /* Màu xám nhạt cho giá cũ */
    font-size: 24px;
}

.person {
    color: #6c757d;
    /* Màu xám nhạt cho chữ "per person" */
    font-size: 12px;
}

.destination img {
    transition: 0.5s;
}

.destination a:hover img {
    transform: scale(1.1);
}

.h-100 {
    height: 100% !important;
}

.w-100 {
    width: 100% !important;
}

/* Container styling */

.nav-image-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

/* Each button container */

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    /* Default text color */
    transition: transform 0.3s, color 0.3s;
    position: relative;
}

/* Image styling */

.nav-img {
    width: 60px;
    height: 60px;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 5px;
    transition: all 0.3s ease-in-out;
}

/* Text below image */

.nav-text {
    margin-top: 5px;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

/* Hover effect for image */

.nav-btn:hover .nav-img {
    transform: scale(1.1);
    border-color: #4db06e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hover effect for text */

.nav-btn:hover .nav-text {
    color: #4db06e;
    opacity: 1;
}

/* Active state styling */

.nav-btn.active .nav-img {
    border-color: #4db06e;
}

.nav-btn.active .nav-text {
    color: #4db06e;
    font-weight: bold;
}

/* Tinh chỉnh formbooking */

/* Kết quả gợi ý */

.results-container {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    max-width: 520px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.result-item {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.result-item:hover {
    background-color: #f0f0f0;
}

/* Căn chỉnh số lượng người */

.results-container {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 150px;
    /* Chiều cao tối đa, điều chỉnh tùy ý */
    overflow-y: auto;
    /* Hiển thị thanh cuộn nếu vượt quá chiều cao */
    width: 100%;
    /* Kích thước khớp với ô input */
    z-index: 1000;
    /* Hiển thị nổi lên trên */
}

.result-item {
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.result-item:hover {
    background-color: #f5f5f5;
    color: #007bff;
}

.person-counter {
    display: flex;
    align-items: center;
    gap: 5px;
}

.person-counter input[type="number"] {
    text-align: center;
    width: 60px;
    height: 40px;
}

.person-counter button {
    width: 40px;
    height: 40px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.custom-width-container {
    width: calc(100vw - 20px);
    max-width: 100%;
    margin-left: -30px;
    margin-right: -45px;
}
