/* newstyle3.css */

/* Room Container Layout */
.room-container {
    display: flex;
    flex-direction: column; /* Forces room name & price to stack */
    align-items: flex-start; /* Keeps text aligned properly */
    width: 100%;
}

.room-price-container {
    width: 100%;
    margin-top: 5px; /* Adds spacing between room name & price */
}

.fixed-width {
    min-width: 80px;
    text-align: center;
}

.booking-form .input-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .booking-form {
        max-width: 400px;
        margin: auto;
    }
}

#backToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
}

#backToTop:hover {
    background-color: #555;
}

.places-section {
            padding: 50px 0;
            text-align: center;
        }

        .place-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
            margin-bottom: 15px;
        }

        .place-item img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .place-item:hover {
            transform: scale(1.05);
        }

        .place-info {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(255, 255, 255, 0.8);
            padding: 5px 10px;
            border-radius: 5px;
        }

        .place-info h4 {
            margin: 0;
            font-size: 1rem;
        }

        .place-info span {
            color: #28a745;
            font-size: 0.9rem;
        }

        .places-section h2 {
            margin-bottom: 40px;
        }