/**
 * Hotel UI Styles
 * Supplemental styles for hotel listing and detail pages.
 */

/* Hotel card layout */
.hotel-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hotel-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
}

.hotel-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.hotel-card__body {
    padding: 16px;
}

.hotel-card__name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.hotel-card__location {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.hotel-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-blue-1, #3554D1);
}

.hotel-card__price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: #6b7280;
}

/* Star rating */
.hotel-stars {
    display: inline-flex;
    gap: 2px;
    color: var(--brand-primary, #31964a);
    font-size: 0.85rem;
}

/* Amenity badges */
.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.hotel-amenity-badge {
    background: #f3f4f6;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.75rem;
    color: #374151;
}

/* Hotel detail hero */
.hotel-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 16px;
}

.hotel-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .hotel-hero {
        height: 240px;
        border-radius: 0;
    }

    .hotel-card__image {
        height: 180px;
    }
}
