/* =============================================
   EVENTS OVERVIEW PAGE - EVENT DETAIL STYLE
   Orientiert am event-detail.html Design mit:
   - Gradient backgrounds
   - Glassmorphism (blur + transparency)
   - Große Typografie (42-48px titles)
   - Konsistente Shadows & Border-Radius
   ============================================= */

/* Main Container */
.elementor-events-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%);
}

/* Events Section - Full Width Background */
.elementor-events-overview .events-section {
	position: relative;
	padding: 40px 20px;
	background-color: #000000;
	overflow: hidden;
}

/* Map Wrapper - 1140px wie Navigation */
.events-map-wrapper {
	max-width: 1140px;
	margin: 0 auto 60px auto;
	width: 100%;
}

.events-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;
}

/* Leaflet Attribution Styling */
.events-map-container .leaflet-control-attribution,
.events-map-container .maplibregl-ctrl-attrib {
	background-color: #000000 !important;
	color: #666666 !important;
	border: none !important;
	padding: 4px 8px !important;
	font-size: 11px !important;
}

.events-map-container .leaflet-control-attribution a,
.events-map-container .maplibregl-ctrl-attrib a {
	color: #999999 !important;
	text-decoration: none !important;
}

.events-map-container .leaflet-control-attribution a:hover,
.events-map-container .maplibregl-ctrl-attrib a:hover {
	color: #dc0000 !important;
}

/* MapLibre GL Popup Styling */
.maplibregl-popup-content {
	background: rgba(0, 0, 0, 0.95) !important;
	color: #ffffff !important;
	border-radius: 12px !important;
	padding: 16px !important;
	box-shadow: 0 8px 24px rgba(220, 0, 0, 0.4) !important;
}

.maplibregl-popup-tip {
	border-top-color: rgba(0, 0, 0, 0.95) !important;
}

/* Leaflet Popup Styling */
.leaflet-popup-content-wrapper {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1a1a1a !important;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.95) !important;
}

.leaflet-popup-content {
    margin: 15px 18px;
}

.leaflet-popup-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.leaflet-popup-content p {
    font-size: 14px;
    color: #555;
    margin: 4px 0;
}

/* Content Section */
.elementor-events-overview > .e-con:not(.events-map-section) {
    max-width: 1200px;
    margin: 0 auto;
}

.elementor-events-overview > .e-con:not(.events-map-section) > .e-con-inner {
    /* Kein Glass hier - nur Container */
}

/* Tabs Container sollte das Glass haben */
.events-tabs-wrapper {
    background: transparent;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.events-tabs-content {
    background: transparent;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tab Navigation */
.events-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.events-tab-btn {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(220, 0, 0, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.events-tab-btn:hover {
    background: rgba(220, 0, 0, 0.1);
    border-color: rgba(220, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 0, 0, 0.2);
}

.events-tab-btn.active {
    background: linear-gradient(135deg, #dc0000 0%, #990000 100%);
    border-color: #dc0000;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.3);
}

.events-tab-btn svg {
    margin-right: 8px;
    vertical-align: middle;
}

/* Tab Content */
.events-tabs-content {
    min-height: 400px;
}

.events-tab-content {
    display: none;
}

.events-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* List Containers */
.events-list-container,
.bands-list-container,
.locations-list-container {
    width: 100%;
}

/* Grid Layout für Cards */
.events-list,
.bands-list,
.locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    width: 100%;
}

/* === OVERVIEW EVENT ITEMS - Startseiten-Design === */
.overview-items-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
}

/* Event Card - wie auf Startseite */
.overview-item.event-item {
	display: flex;
	background: rgba(0, 0, 0, 0.5) !important;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(220, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
	border: none;
}

.overview-item.event-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(220, 0, 0, 0.5);
}

/* Event Flyer - 4:5 Format */
.event-item .overview-item-image {
	flex: 0 0 280px;
	width: 280px;
	height: 350px;
	position: relative;
	overflow: hidden;
}

.event-item .overview-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Event Details Container */
.event-item .overview-item-content {
	flex: 1;
	padding: 30px;
	display: flex;
	flex-direction: column;
	position: relative;
}

/* Datum Box */
.event-item .overview-item-date {
	position: absolute;
	top: 30px;
	right: 30px;
	text-align: center;
	background: linear-gradient(135deg, #dc0000 0%, #990000 100%);
	border-radius: 10px;
	padding: 15px;
	min-width: 80px;
	box-shadow: 0 5px 15px rgba(220, 0, 0, 0.4);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.event-item .overview-item-date-day {
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
	font-family: "Rubik", sans-serif;
}

.event-item .overview-item-date-month {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 5px;
	font-family: "Rubik", sans-serif;
}

/* Event Title */
.event-item .overview-item-header {
	padding-right: 110px; /* Platz für Datum-Box */
	margin-bottom: 20px;
}

.event-item .overview-item-title {
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	font-family: "Rubik", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
	padding: 0;
}

/* Event Location */
.event-item .overview-item-location {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.event-item .overview-item-location svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* Event Bands */
.event-item .overview-item-bands {
	margin-top: auto;
}

.event-item .overview-item-bands-label {
	font-size: 14px;
	font-weight: 600;
	color: #dc0000;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
	display: block;
}

.event-item .overview-item-bands-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.event-item .overview-item-band {
	background: rgba(220, 0, 0, 0.1);
	border: 1px solid rgba(220, 0, 0, 0.3);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 16px;
	color: #ffffff;
	font-weight: 500;
	transition: all 0.3s ease;
}

.event-item .overview-item-band:hover {
	background: rgba(220, 0, 0, 0.2);
	border-color: #dc0000;
	transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
	.event-item {
		flex-direction: column;
	}

	.event-item .overview-item-image {
		flex: none;
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 5;
	}

	.event-item .overview-item-date {
		position: absolute;
		top: 20px;
		right: 20px;
		min-width: 60px;
		padding: 10px;
	}

	.event-item .overview-item-date-day {
		font-size: 32px;
	}

	.event-item .overview-item-date-month {
		font-size: 14px;
	}

	.event-item .overview-item-header {
		padding-right: 80px;
	}

	.event-item .overview-item-title {
		font-size: 24px;
	}
}
}

.event-compact-item:hover {
    background: rgba(220, 0, 0, 0.1);
    border-color: rgba(220, 0, 0, 0.3);
    transform: translateX(5px);
}

.event-compact-time {
    background: linear-gradient(135deg, #dc0000 0%, #990000 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(220, 0, 0, 0.3);
}

.event-compact-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.event-compact-bands {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Event Card - Event Detail Style */
.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(220, 0, 0, 0.3);
    border-color: rgba(220, 0, 0, 0.3);
}

.event-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.event-card-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #dc0000 0%, #990000 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.4);
    text-align: center;
    min-width: 70px;
    backdrop-filter: blur(5px);
}

.event-card-date-day {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.event-card-date-month {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.event-card-content {
    padding: 25px;
}

.event-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.event-card-location,
.event-card-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.event-card-location svg,
.event-card-time svg {
    color: #dc0000;
    flex-shrink: 0;
}

.event-card-bands {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(220, 0, 0, 0.1);
}

.event-card-bands-title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.event-card-bands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.event-card-band {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(220, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #dc0000;
    transition: all 0.2s ease;
}

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

/* Band Card */
.band-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.band-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(220, 0, 0, 0.3);
    border-color: rgba(220, 0, 0, 0.3);
}

.band-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.band-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc0000 0%, #990000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.3);
}

.band-card-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.band-card-events {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(220, 0, 0, 0.1);
}

.band-card-events-title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.band-card-event {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    transition: all 0.2s ease;
}

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

.band-card-event svg {
    color: #dc0000;
    flex-shrink: 0;
}

/* Location Card */
.locations-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

/* === OVERVIEW SECTIONS === */
.overview-section {
	padding: 40px 20px;
	background: rgba(0, 0, 0, 0.02);
	max-width: 1140px;
	margin: 0 auto;
}

.overview-section:nth-child(even) {
	background: rgba(0, 0, 0, 0.05);
}

.overview-section-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 32px;
	padding-bottom: 20px;
	border-bottom: 2px solid rgba(220, 0, 0, 0.3);
}

.overview-section-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #dc0000 0%, #990000 100%);
	border-radius: 16px;
	color: white;
	box-shadow: 0 4px 16px rgba(220, 0, 0, 0.4);
}

.overview-section-icon svg {
	width: 32px;
	height: 32px;
}

.overview-section-title {
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	font-family: "Rubik", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* === UNIFIED GRID === */
.overview-items-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
}

.overview-item {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 24px;
	transition: all 0.3s ease;
	text-decoration: none;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
	min-height: 200px;
}

.overview-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #dc0000 0%, #ff3333 100%);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.overview-item:hover {
	background: rgba(220, 0, 0, 0.08);
	border-color: rgba(220, 0, 0, 0.3);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(220, 0, 0, 0.2);
}

.overview-item:hover::before {
	transform: scaleX(1);
}

.overview-item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

/* Event-specific date display */
.event-item .overview-item-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #dc0000 0%, #990000 100%);
	border-radius: 12px;
	padding: 12px 16px;
	color: white;
	box-shadow: 0 4px 12px rgba(220, 0, 0, 0.3);
	min-width: 70px;
}

.overview-item-date-day {
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	font-family: "Rubik", sans-serif;
}

.overview-item-date-month {
	font-size: 11px;
	text-transform: uppercase;
	margin-top: 4px;
	opacity: 0.9;
	font-weight: 600;
	letter-spacing: 1px;
}

/* Icon display for bands and locations */
.overview-item-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #dc0000 0%, #990000 100%);
	border-radius: 12px;
	color: white;
	box-shadow: 0 4px 12px rgba(220, 0, 0, 0.3);
	flex-shrink: 0;
}

.overview-item-icon svg {
	width: 28px;
	height: 28px;
}

.overview-item-badge {
	background: rgba(220, 0, 0, 0.15);
	color: #dc0000;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 1px solid rgba(220, 0, 0, 0.3);
	white-space: nowrap;
}

.overview-item-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.overview-item-title {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	line-height: 1.3;
	font-family: "Rubik", sans-serif;
}

.overview-item-location,
.overview-item-bands,
.overview-item-genre {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.overview-item-location svg,
.overview-item-bands svg,
.overview-item-genre svg {
	opacity: 0.6;
	flex-shrink: 0;
}

.overview-item-description,
.overview-item-address {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
}

.overview-item-footer {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.overview-item-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #dc0000;
	font-weight: 600;
	font-size: 14px;
	transition: gap 0.3s ease;
}

.overview-item:hover .overview-item-link {
	gap: 12px;
}

/* Empty State */
.empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
}

.empty-state svg {
	width: 64px;
	height: 64px;
	margin-bottom: 20px;
	opacity: 0.4;
}

.empty-state h3 {
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 10px 0;
}

.empty-state p {
	font-size: 16px;
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.overview-section {
		padding: 30px 16px;
	}
	
	.overview-section-header {
		gap: 16px;
		margin-bottom: 24px;
	}
	
	.overview-section-icon {
		width: 56px;
		height: 56px;
	}
	
	.overview-section-icon svg {
		width: 28px;
		height: 28px;
	}
	
	.overview-section-title {
		font-size: 24px;
	}
	
	.overview-items-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.overview-item {
		padding: 20px;
	}
	
	.overview-item-title {
		font-size: 18px;
	}
}

/* Old tabs styles - now hidden */
.events-tabs-wrapper {
	display: none;
}

.events-tab-content {
	display: block !important;
}

/* === OLD LOCATION STYLES (backwards compatibility) === */
.locations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
	padding: 20px 0;
}

.location-item {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 24px;
	transition: all 0.3s ease;
	text-decoration: none;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.location-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #dc0000 0%, #ff3333 100%);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.location-item:hover {
	background: rgba(220, 0, 0, 0.08);
	border-color: rgba(220, 0, 0, 0.3);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(220, 0, 0, 0.2);
}

.location-item:hover::before {
	transform: scaleX(1);
}

.location-item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.location-item-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #dc0000 0%, #990000 100%);
	border-radius: 12px;
	color: white;
	box-shadow: 0 4px 12px rgba(220, 0, 0, 0.3);
}

.location-item-icon svg {
	width: 28px;
	height: 28px;
}

.location-item-badge {
	background: rgba(220, 0, 0, 0.15);
	color: #dc0000;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 1px solid rgba(220, 0, 0, 0.3);
}

.location-item-content {
	flex: 1;
}

.location-item-name {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 12px 0;
	line-height: 1.3;
	font-family: "Rubik", sans-serif;
}

.location-item-city {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 8px;
}

.location-item-city svg {
	opacity: 0.6;
	flex-shrink: 0;
}

.location-item-address {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
}

.location-item-footer {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.location-item-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #dc0000;
	font-weight: 600;
	font-size: 14px;
	transition: gap 0.3s ease;
}

.location-item:hover .location-item-link {
	gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
	.locations-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.location-item {
		padding: 20px;
	}
	
	.location-item-name {
		font-size: 20px;
	}
}

/* Old location-card styles (fallback/backwards compatibility) */
.location-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    text-decoration: none;
    align-items: start;
    backdrop-filter: blur(10px);
    overflow: visible;
    cursor: pointer;
}

.location-card:hover {
    background: rgba(220, 0, 0, 0.1);
    border-color: rgba(220, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.2);
}

.location-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc0000 0%, #990000 100%);
    border-radius: 8px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(220, 0, 0, 0.3);
}

.location-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.location-card-icon svg {
    width: 32px;
    height: 32px;
}

.location-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.location-card-address {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.location-card-events-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.location-card-event {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
    align-items: center;
}

.location-card-event:hover {
    background: rgba(220, 0, 0, 0.1);
    transform: translateX(3px);
}

.location-card-event-date {
    background: linear-gradient(135deg, #dc0000 0%, #990000 100%);
    color: white;
    padding: 6px 8px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(220, 0, 0, 0.3);
}

.location-card-event-day {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.location-card-event-month {
    font-size: 9px;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.9;
}

.location-card-event-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.location-card-event-time {
    font-size: 11px;
    color: #dc0000;
    font-weight: 600;
}

.location-card-event-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.location-card-more {
    text-align: center;
    padding: 8px;
    margin-top: 4px;
}

.location-card-more a {
    font-size: 12px;
    color: #dc0000;
    font-weight: 600;
    text-decoration: none;
}

.location-card-more a:hover {
    text-decoration: underline;
}

.location-card-no-events {
    font-size: 13px;
    color: #999;
    font-style: italic;
    padding: 8px 0;
}

.location-card-events-title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.location-card-event {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

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

.location-card-event-date {
    background: linear-gradient(135deg, #dc0000 0%, #990000 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    min-width: 55px;
}

.location-card-event-date-day {
    font-size: 18px;
    display: block;
    line-height: 1;
}

.location-card-event-date-month {
    font-size: 10px;
    text-transform: uppercase;
    margin-top: 2px;
    display: block;
}

.location-card-event-title {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.location-card-event-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.location-card-event-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.location-card-event-bands {
    font-size: 12px;
    color: #666;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.empty-state svg {
    width: 64px;
    height: 64px;
    color: rgba(220, 0, 0, 0.3);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    font-weight: 700;
    color: #666;
    margin: 0 0 10px 0;
}

.empty-state p {
    font-size: 16px;
    color: #999;
    margin: 0;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #999;
}

.loading::after {
    content: "...";
    animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
    0%, 20% { content: "."; }
    40% { content: ".."; }
    60%, 100% { content: "..."; }
}

/* Empty State */
.no-items {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-items svg {
    font-size: 64px;
    color: rgba(220, 0, 0, 0.3);
    margin-bottom: 20px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .events-list,
    .bands-list,
    .locations-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .elementor-events-overview {
        padding: 120px 15px 40px 15px;
    }

    .elementor-events-overview > .e-con:not(.events-map-section) > .e-con-inner {
        padding: 25px 20px;
    }

    .events-map-container {
        height: 300px;
    }

    .events-tabs-wrapper {
        gap: 10px;
    }

    .events-tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .events-list,
    .bands-list,
    .locations-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-card-title,
    .band-card-name,
    .location-card-name {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .events-tabs-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .events-tab-btn {
        width: 100%;
    }
}
