<%- include('../layouts/header.ejs') %>
<%- include('../layouts/navbar.ejs', { client: client }) %>

<section class="section split-section">

    <div class="room-card">
        <div class="room-image" style="height:420px;"></div>
    </div>

    <div class="glass-box">

        <p class="section-kicker">Room Details</p>

        <h2>Room <%= room.room_number %></h2>

        <p class="section-intro">
            Enjoy a comfortable stay in our <%= room.room_type %> room,
            designed for relaxation, convenience and excellent service.
        </p>

        <br>

        <p><strong>Room Type:</strong> <%= room.room_type %></p>
        <p><strong>Floor:</strong> <%= room.floor %></p>
        <p><strong>Capacity:</strong> <%= room.capacity %> guest(s)</p>
        <p><strong>Status:</strong> <%= room.status %></p>

        <div class="room-price">
            $<%= room.price %> / night
        </div>

        <% if(room.status === "available"){ %>

            <a href="/book/<%= room.id %>" class="primary-btn">
                Book This Room
            </a>

        <% } else { %>

            <p style="color:#dc2626;font-weight:bold;">
                This room is currently not available.
            </p>

        <% } %>

    </div>

</section>

<%- include('../layouts/footer.ejs') %>