
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #222;
}

.explore-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px 40px;
}

.explore-container h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.subtitle {
    color: #717171;
    margin-bottom: 30px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    row-gap: 40px;
}

/* Stile della singola Card */
.room-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

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

.room-image-container {
    width: 100%;
    aspect-ratio: 1 / 1; /* Rende l'immagine perfettamente quadrata */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #ddd;
}

.room-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.room-info {
    margin-top: 10px;
    font-size: 0.95rem;
}

.room-header-info {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.room-title {
    color: #717171;
    margin: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-details {
    color: #717171;
    margin: 2px 0;
    font-size: 0.9rem;
}

.room-price {
    margin-top: 6px;
    font-size: 1rem;
    color: #222;
}

.empty-state {
    text-align: center;
    padding: 50px;
    font-size: 1.2rem;
    color: #717171;
}