/* Wedding Venues Listing Styles */
.wvb-venues-listing {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wvb-venue-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

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

.wvb-venue-image {
    flex: 0 0 400px;
    position: relative;
    overflow: hidden;
}

.wvb-venue-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wvb-venue-card:hover .wvb-venue-image img {
    transform: scale(1.05);
}

.wvb-no-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.wvb-price-range {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.wvb-price-label {
    display: block;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.wvb-price-amount {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #2c5aa0;
    line-height: 1;
}

.wvb-price-range small {
    font-size: 11px;
    color: #888;
}

.wvb-venue-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.wvb-venue-header {
    margin-bottom: 20px;
}

.wvb-venue-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.wvb-venue-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wvb-venue-title a:hover {
    color: #2c5aa0;
}

.wvb-venue-location {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.wvb-location-icon {
    margin-right: 8px;
    font-size: 14px;
}

.wvb-venue-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.wvb-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
}

.wvb-meta-icon {
    font-size: 16px;
}

.wvb-meta-text {
    font-weight: 500;
}

.wvb-venue-description {
    margin-bottom: 20px;
    flex: 1;
}

.wvb-venue-description p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.wvb-venue-features {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.wvb-feature-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wvb-venue-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.wvb-view-details-btn {
    background: #2c5aa0;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #2c5aa0;
}

.wvb-view-details-btn:hover {
    background: transparent;
    color: #2c5aa0;
}

.wvb-book-now-btn {
    background: transparent;
    color: #2c5aa0;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #2c5aa0;
}

.wvb-book-now-btn:hover {
    background: #2c5aa0;
    color: white;
}

/* Pagination */
.wvb-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.wvb-pagination .page-numbers {
    padding: 10px 18px;
    margin: 0 5px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wvb-pagination .page-numbers.current,
.wvb-pagination .page-numbers:hover {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

/* No venues found */
.wvb-no-venues {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.wvb-no-venues p {
    font-size: 18px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .wvb-venue-card {
        flex-direction: column;
    }
    
    .wvb-venue-image {
        flex: none;
        height: 250px;
    }
    
    .wvb-venue-image img {
        height: 250px;
    }
    
    .wvb-no-image {
        height: 250px;
    }
    
    .wvb-venue-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .wvb-venues-listing {
        padding: 15px;
        gap: 20px;
    }
    
    .wvb-venue-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .wvb-venue-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .wvb-view-details-btn,
    .wvb-book-now-btn {
        text-align: center;
        width: 100%;
    }
    
    .wvb-price-range {
        top: 15px;
        right: 15px;
        padding: 10px 12px;
    }
    
    .wvb-price-amount {
        font-size: 18px;
    }
}