/* Stili generali per i titoli */
.room-title {
    padding-bottom: 10px;
    cursor: pointer;
	color: var(--white);
}

.room-title.active {
    color: var(--yellow);
    border-bottom: 2px solid var(--yellow);
}

/* Impostazioni dei container immagini */
.room-images-set {
    display: none;
}

.room-images-set:first-of-type {
    display: block;
}

/* Stili delle immagini */
.image-box {
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    transition: transform 0.3s ease;
}

.image-box.full-width {
    height: 400px;
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;
    border: none !important;
}

.lb-outerContainer {
    background-color: transparent !important;
}

/* Stili responsive */
@media (max-width: 768px) {
    .room-title-wrapper {
        flex: 1 0 33.33%; /* 3 titoli per riga */
        max-width: 33.33%;
        text-align: center;
    }

    .rooms-section .row.mb-4 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

@media (min-width: 769px) {
    .room-title-wrapper {
        flex: 1 0 16.66%; /* 6 titoli distribuiti equamente su una sola riga */
        max-width: 16.66%;
    }

    .rooms-section .row.mb-4 {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}
