.rooms-section {
    margin: 0 auto;
    padding: 40px 80px;
}

.rooms-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.rooms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background-color: #004822;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: left;
}

.carousel {
    position: relative;
    aspect-ratio: 1/1;
}

.carousel-inner {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.carousel-control {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.room-info {
    padding-top: 10px;
}

.room-title {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.room-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.feature i {
    font-size: 1.2rem;
}

.room-description {
    color: #b0b0b0;
    margin-bottom: 10px;
    line-height: 1.2;
    font-size: 1.4rem;
}

.discover-more {
    display: inline-block;
    background: none;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.discover-more:hover {
    background-color: white;
    color: black;
}

@media (max-width: 768px) {
    .rooms-container {
        grid-template-columns: 1fr;
    }

    .rooms-section{
        padding: 40px 10px;
    }
}