/* BoxOfficeHero Venue Hub Styling */
:root {
	--boh-red: #c0392b;
	--boh-red-dark: #962d22;
	--boh-gold: #f39c12;
	--boh-gold-hover: #d68910;
	--boh-dark-bg: #11141a;
	--boh-card-bg: #ffffff;
	--boh-text-main: #2c3e50;
	--boh-text-muted: #64748b;
	--boh-border: #e2e8f0;
	--boh-bsky-blue: #1185fe;
}

/* Venue Hero Header */
.boh-venue-hero {
	background: linear-gradient(135deg, #0d1117 0%, #161b22 60%, #21262d 100%);
	color: #ffffff;
	border-radius: 12px;
	padding: 32px 28px;
	margin-bottom: 24px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
	border-bottom: 4px solid var(--boh-red);
}

.boh-venue-hero::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(243, 156, 18, 0.12) 0%, rgba(192, 57, 43, 0) 70%);
	pointer-events: none;
}

.boh-venue-hero-grid {
	display: grid;
	grid-template-columns: 140px 1fr auto;
	gap: 24px;
	align-items: center;
	position: relative;
	z-index: 2;
}

@media (max-width: 991px) {
	.boh-venue-hero-grid {
		grid-template-columns: 100px 1fr;
	}
	.boh-venue-hero-actions {
		grid-column: 1 / -1;
		margin-top: 12px;
	}
}

@media (max-width: 575px) {
	.boh-venue-hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.boh-venue-thumb-wrap {
		margin: 0 auto;
	}
	.boh-venue-hero-actions {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}
}

.boh-venue-thumb {
	width: 130px;
	height: 130px;
	border-radius: 12px;
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	background-color: #1a1e24;
}

.boh-venue-title {
	font-size: 2.1rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	color: #ffffff;
	margin: 0 0 8px 0;
	line-height: 1.2;
}

.boh-venue-location {
	font-size: 1.05rem;
	color: #cbd5e1;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.boh-venue-metrics {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.boh-metric-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.82rem;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.08);
	color: #f1f5f9;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.boh-metric-badge.highlight {
	background: rgba(243, 156, 18, 0.15);
	color: #f1c40f;
	border-color: rgba(243, 156, 18, 0.3);
}

.boh-venue-pill-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border-radius: 25px;
	font-size: 0.88rem;
	font-weight: 700;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}

.boh-venue-pill-btn:hover {
	background: rgba(255, 255, 255, 0.22);
	color: #ffffff;
	transform: translateY(-2px);
	text-decoration: none;
}

.boh-venue-pill-btn.pill-gold {
	background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
	color: #11141a;
	border: none;
	box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.boh-venue-pill-btn.pill-gold:hover {
	background: linear-gradient(135deg, #f1c40f 0%, #d35400 100%);
	color: #000000;
}

.boh-venue-pill-btn.pill-red {
	background: linear-gradient(135deg, #c0392b 0%, #962d22 100%);
	color: #ffffff;
	border: none;
	box-shadow: 0 4px 10px rgba(192, 57, 43, 0.3);
}

.boh-venue-pill-btn.pill-red:hover {
	background: linear-gradient(135deg, #e74c3c 0%, #7b241c 100%);
	color: #ffffff;
}

/* Tabs Navigation */
.boh-venue-tabs-wrap {
	border-bottom: 2px solid var(--boh-border);
	margin-bottom: 24px;
	background: #ffffff;
	border-radius: 8px 8px 0 0;
	padding: 0 8px;
}

.boh-venue-tabs {
	display: flex;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	scrollbar-width: thin;
}

.boh-venue-tab-link {
	display: inline-block;
	padding: 14px 20px;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--boh-text-muted);
	text-decoration: none;
	border-bottom: 3px solid transparent;
	transition: all 0.2s ease;
	cursor: pointer;
	white-space: nowrap;
}

.boh-venue-tab-link:hover {
	color: var(--boh-red);
	text-decoration: none;
}

.boh-venue-tab-link.active {
	color: var(--boh-red);
	border-bottom-color: var(--boh-red);
}

.boh-tab-pane {
	display: none;
	animation: bohFadeIn 0.3s ease-in-out;
}

.boh-tab-pane.active {
	display: block;
}

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

/* Event Filter Toolbar */
.boh-events-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
	gap: 16px;
	flex-wrap: wrap;
}

.boh-events-search {
	position: relative;
	max-width: 340px;
	width: 100%;
}

.boh-events-search input {
	width: 100%;
	padding: 10px 16px 10px 38px;
	border-radius: 20px;
	border: 1px solid var(--boh-border);
	font-size: 0.9rem;
	background: #ffffff;
	outline: none;
	transition: border-color 0.2s;
}

.boh-events-search input:focus {
	border-color: var(--boh-red);
	box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.boh-events-search i {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--boh-text-muted);
}

/* Rich Event Cards */
.boh-event-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.boh-venue-event-card {
	display: grid;
	grid-template-columns: 85px 75px 1fr auto;
	gap: 18px;
	background: #ffffff;
	border: 1px solid var(--boh-border);
	border-radius: 10px;
	padding: 14px 18px;
	align-items: center;
	transition: all 0.25s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.boh-venue-event-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	border-color: #cbd5e1;
}

@media (max-width: 767px) {
	.boh-venue-event-card {
		grid-template-columns: 75px 1fr;
		gap: 12px;
	}
	.boh-event-thumb-wrap {
		display: none;
	}
	.boh-event-card-actions {
		grid-column: 1 / -1;
		display: flex;
		justify-content: stretch;
		gap: 8px;
		margin-top: 8px;
	}
	.boh-event-card-actions a {
		flex: 1;
		text-align: center;
	}
}

/* Calendar Badge */
.boh-event-cal {
	background: #f8fafc;
	border: 1px solid var(--boh-border);
	border-radius: 8px;
	text-align: center;
	overflow: hidden;
}

.boh-cal-month {
	background: var(--boh-red);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.5px;
	padding: 3px 0;
	text-transform: uppercase;
}

.boh-cal-day {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--boh-text-main);
	line-height: 1.1;
	padding: 4px 0 0 0;
}

.boh-cal-dayname {
	font-size: 0.65rem;
	color: var(--boh-text-muted);
	font-weight: 600;
	padding-bottom: 4px;
	text-transform: uppercase;
}

.boh-event-thumb {
	width: 70px;
	height: 70px;
	border-radius: 8px;
	object-fit: cover;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
}

.boh-event-info {
	min-width: 0;
}

.boh-event-name {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 4px 0;
	line-height: 1.3;
}

.boh-event-name a {
	color: var(--boh-text-main);
	text-decoration: none;
}

.boh-event-name a:hover {
	color: var(--boh-red);
}

.boh-event-subinfo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.85rem;
	color: var(--boh-text-muted);
	flex-wrap: wrap;
}

/* Status Badges */
.boh-status-pill {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
}

.boh-status-pill.badge-live {
	background: #e74c3c;
	color: #ffffff;
	animation: pulseLive 2s infinite;
}

.boh-status-pill.badge-upcoming {
	background: rgba(243, 156, 18, 0.15);
	color: #d68910;
	border: 1px solid rgba(243, 156, 18, 0.4);
}

.boh-status-pill.badge-onsale {
	background: #27ae60;
	color: #ffffff;
}

.boh-status-pill.badge-today {
	background: #8e44ad;
	color: #ffffff;
}

@keyframes pulseLive {
	0% { opacity: 1; }
	50% { opacity: 0.7; }
	100% { opacity: 1; }
}

.boh-event-card-actions {
	display: flex;
	gap: 8px;
	align-items: center;
}

.boh-btn-event-view {
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
	background: linear-gradient(135deg, #c0392b 0%, #962d22 100%);
	color: #ffffff;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.boh-btn-event-view:hover {
	color: #ffffff;
	background: linear-gradient(135deg, #e74c3c 0%, #7b241c 100%);
	text-decoration: none;
}

.boh-btn-event-pc {
	padding: 8px 14px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
	background: #f8fafc;
	color: #d68910;
	border: 1px solid rgba(243, 156, 18, 0.4);
	white-space: nowrap;
	transition: all 0.2s ease;
}

.boh-btn-event-pc:hover {
	background: #fef9e7;
	color: #b7770d;
	border-color: #f39c12;
	text-decoration: none;
}

/* Bluesky Widget */
.boh-bsky-card {
	background: #ffffff;
	border: 1px solid #bfdbfe;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: 0 4px 14px rgba(17, 133, 254, 0.08);
}

.boh-bsky-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.boh-bsky-user {
	display: flex;
	align-items: center;
	gap: 14px;
}

.boh-bsky-avatar {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: linear-gradient(135deg, #1185fe 0%, #0062cc 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
}

.boh-bsky-handle {
	font-size: 1.15rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
}

.boh-bsky-handle a {
	color: #0f172a;
	text-decoration: none;
}

.boh-bsky-meta {
	font-size: 0.88rem;
	color: var(--boh-text-muted);
}

.boh-bsky-follow-btn {
	background: #1185fe;
	color: #ffffff;
	font-weight: 700;
	font-size: 0.9rem;
	padding: 8px 20px;
	border-radius: 25px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background 0.2s;
}

.boh-bsky-follow-btn:hover {
	background: #006ce6;
	color: #ffffff;
	text-decoration: none;
}

/* Location & Guide Tab */
.boh-guide-card {
	background: #ffffff;
	border: 1px solid var(--boh-border);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 20px;
}

.boh-map-container {
	border-radius: 10px;
	overflow: hidden;
	height: 360px;
	border: 1px solid var(--boh-border);
}

.boh-map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Nearby Venues Grid */
.boh-nearby-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}

.boh-nearby-card {
	background: #ffffff;
	border: 1px solid var(--boh-border);
	border-radius: 10px;
	padding: 16px;
	transition: all 0.2s ease;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.boh-nearby-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
	border-color: var(--boh-gold);
	text-decoration: none;
}

.boh-nearby-card h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--boh-text-main);
	margin: 0 0 6px 0;
}

.boh-nearby-card p {
	font-size: 0.85rem;
	color: var(--boh-text-muted);
	margin: 0;
}
