/* Room Cards - ROOMS PAGE */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.room-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-8px);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--dark-green);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.room-content {
    padding: 2rem;
}

.room-title {
    color: var(--dark-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.room-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.room-features {
    list-style: none;
    margin-bottom: 2rem;
}

.room-features li {
    padding: 0.3rem 0;
    color: #555;
}

.room-features li:before {
    content: "✓ ";
    color: var(--dark-green);
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {

    .room-content {
        padding: 1.5rem;
    }
}