/* 
 * Frontend CSS for Hospitality Master ERP 
 */

.h-erp-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.h-erp-room-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.h-erp-room-card:hover {
    transform: translateY(-10px);
}

.h-erp-room-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.h-erp-room-content {
    padding: 25px;
}

.h-erp-room-content h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    color: #333;
}

.h-erp-room-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.h-erp-room-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.h-erp-room-meta li {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
}

.h-erp-room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.h-erp-room-price {
    font-size: 16px;
}

.h-erp-room-price strong {
    font-size: 24px;
    color: #2c3e50;
}

.h-erp-btn {
    background: #2d5a27;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s;
}

.h-erp-btn:hover {
    background: #1e3d1a;
    color: #fff;
}

/* Single Room Page Layout */
.h-erp-single-room-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.h-erp-room-header-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.h-erp-room-gallery-main .h-erp-main-thumb img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.h-erp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.h-erp-gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.h-erp-room-sidebar {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.h-erp-room-sidebar h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.h-erp-spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #444;
}

.h-erp-amenities-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.h-erp-amenities-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.h-erp-booking-card {
    background: #f4f6f8;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.h-erp-price-display {
    margin-bottom: 20px;
}

.h-erp-amount {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
}

.h-erp-booking-btn {
    width: 100%;
    background: #2d5a27;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.h-erp-booking-note {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

.h-erp-room-description {
    margin-top: 50px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
    .h-erp-room-header-section {
        grid-template-columns: 1fr;
    }
}
