/* Festivals page specific styles */

/* Controls with festival selector */
.controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	gap: 1rem;
}

.festival-selector {
	min-width: 200px;
}

.controls-right {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.filter-controls {
	display: flex;
	align-items: center;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--text-secondary);
	cursor: pointer;
	user-select: none;
}

.checkbox-input {
	width: 1rem;
	height: 1rem;
	cursor: pointer;
}

.checkbox-text {
	font-weight: 500;
}

.festival-select {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	font-size: 1rem;
	background-color: var(--background-color);
	color: var(--text-primary);
	cursor: pointer;
}

.festival-select:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

.search-container {
	flex: 1;
	max-width: 400px;
}

/* Festival-specific components */
.festival-container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

/* Artists section */
.artists-section {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.artists-section h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0;
}

/* Artists grid - reuse from base */
.artists-grid {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* Festival-specific responsive design */
@media (max-width: 768px) {
	.controls {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.festival-selector {
		min-width: auto;
	}

	.controls-right {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.search-container {
		max-width: none;
	}

	.festival-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.festival-details {
		align-items: flex-start;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.festival-name {
		font-size: 1.5rem;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.stat-value {
		font-size: 1.25rem;
	}
}
