.spektrix-event-detail {
	background: #fff;
	color: #081d3a;
}

.event-hero {
	width: 100%;
	height: 400px;
	overflow: hidden;
	background: #f0f0f0;
	margin-bottom: 40px;
}

.event-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.event-hero-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #081d3a 0%, #0f4c75 100%);
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}

.event-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px;
}

.event-header {
	margin-bottom: 40px;
	border-bottom: 2px solid #e0e0e0;
	padding-bottom: 20px;
}

.event-title {
	font-family: Raleway, sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #081d3a;
	margin: 0 0 10px 0;
	line-height: 1.2;
}

.event-genre {
	font-size: 14px;
	font-weight: 700;
	color: #c23030;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 15px 0;
}

.event-meta {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 15px;
}

.event-meta span {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.event-description {
	font-size: 16px;
	line-height: 1.6;
	color: #444;
	margin-bottom: 40px;
}

.event-performances {
	margin: 40px 0;
}

.event-performances h2 {
	font-family: Raleway, sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #081d3a;
	margin: 0 0 20px 0;
}

.performances-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
}

.performances-table thead {
	background: #081d3a;
	color: #fff;
}

.performances-table th {
	padding: 15px;
	text-align: left;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.performances-table td {
	padding: 15px;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
}

.performance-row:hover {
	background: #f9f9f9;
}

.perf-price {
	font-weight: 700;
	color: #c23030;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border: none;
	border-radius: 3px;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	text-transform: uppercase;
	transition: all 0.3s ease;
	font-family: Raleway, sans-serif;
}

.btn-primary {
	background: #c23030;
	color: #fff;
}

.btn-primary:hover {
	background: #a92727;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary:focus {
	outline: 3px solid #26e78a;
	outline-offset: 2px;
}

.event-no-performances {
	background: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	padding: 30px;
	text-align: center;
}

@media (max-width: 768px) {
	.event-title { font-size: 24px; }
	.event-hero { height: 250px; margin-bottom: 20px; }
	.event-container { padding: 20px; }
	.performances-table th, .performances-table td { padding: 10px; }
	.btn { padding: 10px 16px; font-size: 11px; }
}

@media (max-width: 480px) {
	.event-title { font-size: 20px; }
	.event-meta { flex-direction: column; gap: 8px; }
	.performances-table { display: block; overflow-x: auto; }
}
