/* PrimeVenue Search & Filter Styles */

.primevenue-search-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.primevenue-search-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.search-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-field {
    flex: 1;
    min-width: 200px;
}

.search-input,
.search-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.search-button {
    padding: 12px 30px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.search-button:hover {
    background: #b8941f;
}

.toggle-filters {
    display: inline-block;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.toggle-filters:hover {
    text-decoration: underline;
}

.advanced-filters {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.filter-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.filter-field {
    flex: 1;
    min-width: 200px;
}

.filter-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 10px;
}

.search-loading {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
}

.search-results {
    margin-top: 30px;
}

.results-count {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.venue-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.venue-image {
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    color: #999;
    font-size: 16px;
}

.venue-content {
    padding: 20px;
}

.venue-content h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.venue-content h3 a {
    color: #333;
    text-decoration: none;
}

.venue-content h3 a:hover {
    color: #d4af37;
}

.venue-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.venue-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.venue-meta span {
    display: inline-block;
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 5px;
    font-size: 13px;
    color: #666;
}

.venue-price {
    background: #d4af37 !important;
    color: #000 !important;
    font-weight: bold;
}

.venue-button {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.venue-button:hover {
    background: #333;
}

.no-results {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-row {
        flex-direction: column;
    }
    
    .search-field {
        min-width: 100%;
    }
    
    .filter-row {
        flex-direction: column;
    }
    
    .filter-field {
        min-width: 100%;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}
