/**
 * Hotels Custom Styles
 * أنماط عرض الفنادق
 */

.hotels-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.hotel-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hotel-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-content {
    padding: 20px;
}

.hotel-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.hotel-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.hotel-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.hotel-rating,
.hotel-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-weight: bold;
    color: #555;
}

.stars {
    font-size: 1.1rem;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e60000;
}

.book-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: #e60000;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.book-btn:hover {
    background: #cc0000;
    color: white;
}

.no-hotels {
    text-align: center;
    font-size: 1.2rem;
    color: #999;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .hotels-container {
        grid-template-columns: 1fr;
    }
}
