/* Custom Styles for Accommodation Page */

.hotel-card {
    display: flex;
    flex-direction: row;
    margin-bottom: 3rem;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.hotel-gallery-container {
    flex: 1.2;
    padding: 1.5rem;
    background-color: #f8f9fa;
}

.main-image-container {
    width: 100%;
    height: 450px;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
    background-color: #e9ecef;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}

.thumbnail-gallery {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.thumbnail {
    width: 85px;
    height: 65px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    border: 3px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.thumbnail.active, .thumbnail:hover {
    border-color: #0056b3;
    transform: scale(1.05);
}

.hotel-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotel-info h3 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #343a40;
}

.hotel-info p {
    margin-bottom: 1rem;
    color: #495057;
    line-height: 1.6;
}

.hotel-info p strong {
    color: #343a40;
}

@media (max-width: 992px) {
    .hotel-card {
        flex-direction: column;
    }
    .hotel-info {
        padding: 2rem 1.5rem;
    }
}
