/* Common Overview Styles - Shared by Bands and Locations */

/* Base Overview Container */
.elementor-bands-overview,
.elementor-locations-overview {
    min-height: 100vh;
    padding: 140px 20px 60px 20px;
    background: linear-gradient(135deg, rgba(220, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
}

/* Section Layout */
.bands-section,
.locations-section {
    position: relative;
    padding: 40px 20px;
    background-color: #000000;
    overflow: hidden;
}

/* Map Wrapper */
.bands-map-wrapper,
.locations-map-wrapper {
    max-width: 1140px;
    margin: 0 auto 60px auto;
    width: 100%;
}

/* Map Container */
.bands-map-container,
.locations-map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.8);
    border: none;
}

/* List Container */
.bands-container,
.locations-container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.bands-container .events-list,
.locations-container .events-list {
    display: block;
    grid-template-columns: none !important;
}

/* Card Styles - List Layout */
.band-card,
.location-card {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.band-card:hover,
.location-card:hover {
    background: rgba(30, 30, 30, 0.98);
    transform: translateX(5px);
}

/* Card Image */
.band-image,
.location-image {
    background: rgba(40, 40, 40, 0.5);
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.band-image img,
.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.band-image svg,
.location-image svg {
    width: 60px;
    height: 60px;
    opacity: 0.3;
}

/* Card Details */
.band-card .event-details,
.location-card .event-details {
    flex: 1;
    padding: 20px 20px 20px 0;
}

.band-card .event-content,
.location-card .event-content {
    width: 100%;
}

.band-card .event-title,
.location-card .event-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.band-card .event-meta,
.location-card .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

/* Events Sub-List */
.band-events,
.location-events {
    margin-top: 15px;
}

.band-event-item,
.location-event-item {
    display: grid;
    grid-template-columns: 100px 1fr 200px;
    align-items: center;
    gap: 20px;
    padding: 10px 15px;
    background: rgba(40, 40, 40, 0.5);
    border-radius: 6px;
    margin-bottom: 8px;
    color: #fff;
    transition: all 0.3s ease;
}

.band-event-item:hover,
.location-event-item:hover {
    background: rgba(220, 0, 0, 0.2);
    transform: translateX(5px);
}

.band-event-name-link,
.band-event-location-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.band-event-location-link:hover {
    color: #DC0000;
}

.band-event-date,
.location-event-date {
    font-weight: bold;
    color: #DC0000;
    font-size: 13px;
    white-space: nowrap;
}

.band-event-location,
.location-event-band {
    color: #ccc;
    font-size: 13px;
}

.band-event-name,
.location-event-name {
    color: #fff;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .elementor-bands-overview,
    .elementor-locations-overview {
        padding: 120px 10px 40px 10px;
    }
    
    .bands-section,
    .locations-section {
        padding: 20px 10px;
    }
    
    .band-card,
    .location-card {
        flex-direction: column;
        gap: 0;
    }
    
    .band-image,
    .location-image {
        width: 100%;
        height: 200px;
    }
    
    .band-card .event-details,
    .location-card .event-details {
        padding: 20px;
    }
    
    .band-event-item,
    .location-event-item {
        grid-template-columns: 80px 1fr;
        gap: 10px;
    }
    
    .band-event-location,
    .location-event-band {
        grid-column: 1 / -1;
    }
}
