@font-face {
	font-family: 'Ranger Italic';
	src: url('../Fonts/Ranger Italic.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

#Btn_Nav_Back {
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-white);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 8px;
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: normal;
	padding: 0.35em 1em;
	align-self: center;
	width: fit-content;
	margin-left: 8px;
}

#Btn_Nav_Back:hover {
	background: rgba(255, 255, 255, 0.2);
}

.Event_Page {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 0;
	padding: 64px 0 0;
	box-sizing: border-box;
}

.Event_Content_Full {
	max-width: 1200px;
	width: 100%;
	z-index: 1;
}

/* ── Corner strip: cover (left) + venue logo (right) ── */
.Event_Corner_Strip {
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	pointer-events: none;
	z-index: 10;
	padding: 1rem;
	box-sizing: border-box;
}

.Event_Corner_Cover {
	justify-self: start;
	pointer-events: auto;
}

.Event_Corner_Venue {
	justify-self: end;
	pointer-events: auto;
}

.Event_Corner_Venue_Logo {
	height: clamp(8rem, 16vw, 12rem);
	width: auto;
	display: block;
}

.Event_Main {
	display: grid;
	grid-template-rows: auto auto auto auto auto auto;
	justify-items: center;
	text-align: center;
	gap: 0.4rem;
	margin-bottom: 2rem;
}

.Event_Main_Logo {}

.Event_Main_Recurring {
	font-size: clamp(1rem, 2vw, 1.5rem);
	color: var(--color-gray);
	font-style: italic;
}

.Event_Main_Title {
	font-size: clamp(3rem, 10vw, 8rem);
	color: var(--color-white);
	font-weight: bold;
}

.Event_Main_Days_Away {
	font-size: clamp(1.2rem, 2.5vw, 2rem);
	color: var(--color-accent, #f0c);
	font-style: italic;
}

.Event_Main_Date_Venue {
	font-size: clamp(1.2rem, 2.5vw, 2rem);
	color: var(--color-white);
	display: flex;
	gap: 0.4em;
	align-items: baseline;
	justify-content: center;
}

.Event_Main_At {
	color: var(--color-gray);
}

.Event_Main_Venue_Text {
	color: var(--color-white);
}

.Event_Main_Time {
	font-size: clamp(1.2rem, 2.5vw, 2rem);
	color: var(--color-white);
}

.Event_Title_SVG {
	max-width: min(90vw, 700px);
	height: 8vh;
	width: auto;
	display: block;
}

.Event_Logo_Image {
	max-width: min(90vw, 500px);
	max-height: 25vh;
	width: auto;
	height: auto;
	display: block;
	margin: 1rem auto;
}

/* Recurring label now uses .Event_Main_Recurring */

.Event_Actions {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	flex-direction: column;
	align-items: center;
}

.Event_Time_Display {
	font-size: clamp(3rem, 6vw, 5rem);
	color: #f0f;
	font-weight: bold;
	text-align: center;
	margin-bottom: 1rem;
}

.Event_Buttons_Row {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.Event_Button {
	padding: 1.5rem 3rem;
	font-size: clamp(1.2rem, 2.5vw, 2rem);
	font-weight: bold;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s;
}

.Event_Button.facebook {
	background: none;
	color: white;
	display: flex;
	align-items: center;
	gap: 0.6em;
}

.Event_Btn_Icon {
	width: 2.8em;
	height: 2.8em;
	display: block;
}

.Event_Button.facebook:hover {
	background: #145dbf;
}

.Event_Button.tickets {
	background: var(--color-cover);
	color: white;
}

.Event_Button.tickets:hover {
	background: var(--color-cover-bright);
}

.Event_Button.back {
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-white);
	border: 2px solid var(--color-white);
}

.Event_Button.back:hover {
	background: rgba(255, 255, 255, 0.2);
}

.Event_Button.request_song {
	background: transparent;
	color: rgb(0, 250, 250);
	border: 2px solid rgb(0, 250, 250);
	cursor: pointer;
	font-family: inherit;
	letter-spacing: 0.05em;
	padding: 0.75rem 4rem;
	white-space: nowrap;
}

.Event_Button.request_song:hover {
	background: rgba(0, 250, 250, 0.15);
}

.Event_Button.request_song:disabled {
	opacity: 0.5;
	cursor: wait;
}

.Song_Request_Toast {
	position: fixed;
	bottom: 8rem;
	left: 50%;
	transform: translateX(-50%) translateY(30px);
	background: rgb(0, 200, 100);
	color: rgb(0, 0, 0);
	font-weight: bold;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	font-size: 1rem;
	opacity: 0;
	pointer-events: none;
	z-index: 500;
	transition: opacity 0.3s, transform 0.3s;
	white-space: nowrap;
}

.Song_Request_Toast.Visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.Event_NoCover_Sticker {
	height: clamp(8rem, 16vw, 12rem);
	width: auto;
}

.Event_NoCover_Inline {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	padding-left: 1rem;
	margin-bottom: -2.5rem;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}

.Event_NoCover_Inline .Event_NoCover_Sticker {
	height: clamp(6rem, 12vw, 9rem);
}

.Cover_Info {
	text-align: center;
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	margin-bottom: 2rem;
}

.Cover_Label {
	color: var(--color-gray);
	margin-right: 1rem;
}

.Cover_Amount {
	color: var(--color-cover-bright);
	font-weight: bold;
}

/* ======================================================================================== */
/* CALENDAR EVENT COVER */
/* ======================================================================================== */

.Main_No_Cover {
	text-align: center;
	font-size: var(--Text_Large);
	color: var(--color-cover-gold);
	background: var(--color-cover-gold-dark);
	font-weight: bold;
	text-transform: uppercase;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
}

.Event_Cover {
	display: none; /* Hidden for now - will be positioned as absolute sticker later */
	position: absolute;
	top: 40px;
	left: 0;
	width: 100vw;
	height: 3.5rem;
	z-index: 3;
	grid-template-columns: 1fr 2fr 1fr;
	grid-template-rows: 1fr;
	gap: 0;
	justify-items: center;
	align-items: center;
}

.Cover_Advanced {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.Cover_GetTickets {
	width: 100%;
	height: 100%;
}

.Cover_Door {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-cover-dark);
	color: #888;
	font-size: var(--Text_Mid);
}

.Cover_Door .Main_Cover_Value {
	color: var(--color-cover-bright);
}

.Main_Cover_Value {
	color: var(--color-cover-bright);
	font-weight: bold;
	font-size: var(--Text_Large);
}

.Cover_GetTickets_Link {
	background: var(--color-cover);
	color: var(--color-gray-bright);
	text-decoration: none;
	font-weight: bold;
	font-size: var(--Text_Large);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.Cover_GetTickets_Link .Main_Cover_Value {
	color: var(--color-cover-bright);
	font-size: var(--Text_Large);
	font-weight: bold;
}

.Cover_GetTickets_Link:hover {
	background: var(--color-cover-bright);
	color: var(--color-white);
}

.Cover_GetTickets_Link:hover .Main_Cover_Value {
	color: var(--color-white);
}

/* ======================================================================================== */
/* ARTIST */
/* ======================================================================================== */

.Event_Artist {
	background: var(--color-gray-darker);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-shrink: 0;
	box-sizing: border-box;
}

.Event_Artist .Artist_Link {
	text-decoration: none;
	background: #1877F2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.Event_Main_Date_Venue,
	.Event_Main_Time {
		font-size: 3rem;
	}
	.Event_Main_Days_Away,
	.Event_Main_Recurring {
		font-size: 2rem;
	}
	.Event_NoCover_Sticker,
	.Event_Corner_Venue_Logo {
		height: clamp(12rem, 24vw, 18rem);
	}
	.Event_Button.back {
		font-size: 2.4rem;
	}
	.Event_Button.request_song {
		font-size: 2.4rem;
	}
}

@media (max-width: 480px) {
	.Event_Page {
		padding-top: 48px;
	}

	.Event_Corner_Strip {
		top: 48px;
	}
}
