/* Resort Room Cards Container */
.resort-room-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Individual Card */
.resort-room-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

.resort-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Image */
.resort-room-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Details Section */
.resort-room-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.resort-room-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25em;
    color: #333;
}

.resort-room-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.resort-room-price {
    font-size: 1.1em;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Book Button */
.resort-room-action {
    text-align: center;
}

.resort-book-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa; /* WordPress Blue */
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.resort-book-button:hover {
    background-color: #005177;
    color: #fff;
}
