/*
Theme Name: Hotel Engine Clean Grid Theme
Author: ChatGPT Builder
Description: Clean modern hotel theme with grid room layout and professional booking form UI.
Version: 1.0
*/

body{
    margin:0;
    font-family: system-ui, -apple-system, Arial, sans-serif;
    background:#f8fafc;
    color:#111827;
}

header{
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    padding:20px;
    text-align:center;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:30px 20px;
}

/* ROOM GRID */

.mhe-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
}

.mhe-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.mhe-card:hover{
    transform:translateY(-5px);
}

.mhe-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.mhe-card-body{
    padding:18px;
}

.mhe-price{
    color:#2563eb;
    font-weight:bold;
    margin:8px 0;
}

/* CLEAN BOOKING FORM */

.mhe-booking-box{
    margin-top:30px;
    background:#ffffff;
    padding:24px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    max-width:500px;
}

.mhe-booking-box input{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border-radius:8px;
    border:1px solid #d1d5db;
}

.mhe-book-btn{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:10px;
    width:100%;
    font-weight:600;
    cursor:pointer;
}

footer{
    text-align:center;
    padding:25px;
    margin-top:40px;
    background:#ffffff;
    border-top:1px solid #e5e7eb;
}
