/* === LAYOUT CONTAINER === */
.mrb-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    font-family: 'Inter', sans-serif;
}

/* === HERO SECTION === */
.mrb-hero {
    background: url('../images/hero-banner.jpg') center/cover no-repeat;
    height: 380px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.mrb-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.mrb-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.mrb-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.mrb-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* === CATEGORY FILTER === */
.mrb-categories {
        display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 1rem;
}
.mrb-category-btn {
    border: 1px solid #0073aa;
    background: white;
    font-size:0.715rem;
    color: #0073aa;
    padding: 0.4rem 1.3rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}
.mrb-category-btn:hover,
.mrb-category-btn.active {
    background: #0073aa;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 115, 170, 0.3);
}

/* === ROOM CARDS === */
.mrb-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.mrb-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.mrb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.mrb-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.mrb-card-content {
    padding: 1rem 1.2rem;
}
.mrb-card-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}
.mrb-card-location {
    color: #777;
    font-size: 0.9rem;
}
.mrb-card-details {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* === BOOKING FORM === */
.mrb-form-section {
    margin: 2rem 0;
    border-radius: 16px;
    padding: 2rem;
    max-width: 800px;
}
.mrb-booking-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.mrb-booking-form h2 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
}
.mrb-subtext {
    text-align: center;
    color: #555;
}
.mrb-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.mrb-field {
    flex: 1;
    min-width: 220px;
}
.mrb-field label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
    font-size:0.715rem;
}
.mrb-field input,
.mrb-field select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    transition: border 0.3s, box-shadow 0.3s;
    font-size: 0.715rem;
}
.mrb-field select {
    width: 40%;
}
.mrb-field input:focus,
.mrb-field select:focus {
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.2);
}
.mrb-submit-btn {
    background: #0073aa;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.7405rem;
    align-self: center;
    transition: background 0.3s, transform 0.2s;
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
    .mrb-hero-content h1 {
        font-size: 1.8rem;
    }
    .mrb-form-section {
        padding: 1.5rem;
    }
}
/* === HORIZONTAL ROOM CARDS === */
.mrb-rooms-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mrb-card-horizontal {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* LEFT SIDE (IMAGE) */
.mrb-card-left {
    flex: 0 0 40%;
    min-width: 260px;
    max-width: 400px;
}
.mrb-card-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mrb-card-placeholder {
    background: #f2f2f2;
    color: #666;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* RIGHT SIDE (DETAILS) */
.mrb-card-right {
    flex: 1;
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mrb-room-title {
   font-size: 1.125rem;
    color: #0073aa;
    margin: 0 0 4px;
    font-weight: 600;
}
.mrb-room-type {
   font-size: 0.65rem;
    font-weight: 600;
    color: #555;
}
.mrb-room-location {
        color: #777;
     font-size: 0.715rem; 
    margin-bottom: 0.5rem;
}
.mrb-room-price {
    font-size: 0.715rem;
    margin-bottom: 0.3rem;
}
.mrb-room-capacity {
    font-size: 0.715rem;
    color: #333;
    margin-bottom: 0.6rem;
}

/* FACILITIES */
.mrb-facilities-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0.5rem 0;
    padding: 0;
}
.mrb-facilities-inline li {
    background: #eef6fb;
    color: #0073aa;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.715rem;
}

/* THUMBNAILS */
.mrb-card-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 0.5rem;
}
.mrb-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    transition: transform 0.3s;
}
.mrb-thumb:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mrb-card-horizontal {
        flex-direction: column;
    }
    .mrb-card-left {
        flex: 0 0 auto;
        max-width: 100%;
    }
}


