#featureOfTheWeek {
	position: 		relative;
	height: 		400px;
	overflow: 		hidden;
}
.weekFeature {
	height: 	400px;
	width: 		calc(50% + 56px);
	position: 	absolute;
}
.featureimage {
	height:					400px;
	width:					100%;
	background-size:		cover;
	background-position:	center;
}
#weekBandContainer {
	left: -34px;
}
#weekConcertContainer {
	overflow: 	hidden;
	right: 		-40px;
	transform: 	skewX(-10deg);
}
#weekConcertContainer:before {
	background-image: 		var(--bgimg);
	width: 					100%;
	height: 				100%;
	content: 				'';
	position: 				absolute;
	color: 					#fff;
	background-size: 		cover;
	background-position: 	center;
	transform: 				skewX(10deg);
	top: 					0;
	left: 					-40px;
}
.weeklyLabel {
	position: relative;
	width: fit-content;
	margin: auto;
	padding: 10px 15px;
	font-size: 25px;
	background: #212121;
	border-bottom: 1px solid #37474F;
}
.weeklyLabel:before {
	position: 		absolute;
	width: 			19px;
	height: 		100%;
	transform: 		skewX(20deg);
	content: 		'';
	left: 			-9px;
	top: 			0;
	background: 	inherit;
	border-left: 	1px solid #37474F;
}
.weeklyLabel:after {
	position: 		absolute;
	width: 			19px;
	height: 		100%;
	transform: 		skewX(-20deg);
	content: 		'';
	right: 			-9px;
	top: 			0;
	background: 	inherit;
	border-right: 	1px solid #37474F;
}
.weeklyUnskew{
	transform: skewX(10deg);
}
.hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	max-width: 1200px;
	margin: auto;
	padding: 2rem 2rem;
	height: 354px;
}
.hero h1 {
	font-size: 3rem;
	font-weight: bold;
}
.hero p {
	margin-top: 1rem;
	color: #ccc;
}
.btn-red {
	background: #B71C1C;
}
.btn {
	display: 			inline-block;
	margin-top: 		1.5rem;
	margin-right: 		0.5rem;
	padding: 			0.75rem 1.5rem;
	border-radius: 		5px;
	text-decoration: 	none;
	font-weight: 		bold;
	font-size: 			0.9rem;
}
.btn-outline {
	border: 	1px solid #424242;
	color: 		#f5f5f5;
}
.card {
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.6);
}
.featured {
	max-width: 1200px;
	margin: auto;
	padding: 3rem 2rem;
	width: -webkit-fill-available;
}
.featured h2{
	margin-bottom: 1rem;
}
#featured-grid{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
}
.eventFeatureCard {
	padding: 1rem;
	border: 1px solid #424242;
	border-radius: 5px;
	background: #212121;
	height: 200px;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.eventFeatureCard:hover .eventDate{
	bottom: -10px;
}
.newsFeatureCard:hover .newsTitleCard{
	bottom: -10px;
}
.newsFeatureCard{
	position: relative;
	padding: 1rem;
	border: 1px solid #424242;
	border-radius: 5px;
	background: #212121;
	height: 200px;
	background-size: cover;
	text-align: center;
	overflow: hidden;
}
.newsTitleCard{
	position: absolute;
	background: rgba(0, 0, 0, 0.3);
	width: calc(100% - 1rem - 4px);
	bottom: -70px;
	left: 0px;
	padding: 10px;
	text-align: center;
	backdrop-filter: blur(11px);
	box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.6);
	border-top: 1px solid #424242;
	transition: bottom 0.6s cubic-bezier(0.87, 0, 0.13, 1);	
}
.readBtn {
	padding: 10px;
	border-radius: 5px;
	background: #607D8B;
	border: 1px solid #78909C;
	box-shadow: 0px 0px 5px #000;
	margin-top: 1rem;
	margin-bottom: 10px;
}
.eventDate {
	position: absolute;
	background: rgba(0, 0, 0, 0.3);
	width: calc(100% - 1rem - 4px);
	bottom: -70px;
	left: 0px;
	padding: 10px;
	text-align: center;
	backdrop-filter: blur(11px);
	box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.6);
	border-top: 1px solid #424242;
	transition: bottom 0.6s cubic-bezier(0.87, 0, 0.13, 1);
}
.buyBtn {
	padding: 10px;
	border-radius: 5px;
	background: #607D8B;
	border: 1px solid #78909C;
	box-shadow: 0px 0px 5px #000;
	margin-top: 1rem;
	margin-bottom: 10px;
}
.social-section {
	background: #111;
	padding: 3rem 1rem;
	text-align: center;
	border-top: 1px solid #222;
	border-bottom: 1px solid #222;
	position: relative;
	overflow: hidden;
	box-shadow: 0px 0px 2px 3px rgba(0, 0, 0, 0.6);
}
.social-section h2 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.social-section p {
	color: #aaa;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}
.social-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.social-links a {
	color: #f1f1f1;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid #444;
	padding: 0.5rem 1rem;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	transition: all 0.2s ease-in-out;
	display: inline-block;
}
/* Metal-style hover animation: red lightning strike */
.social-links a::before {
	content: "";
	position: absolute;
	top: 0;
	left: -110%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent, #607D8B, transparent);
	transform: skewX(-20deg);
}
.social-links a:hover::before {
	left: 100%;
	transition: left 0.4s ease;
}
.social-links a:hover {
	color: #fff;
	background: #607D8B;
	border-color: #607D8B;
	box-shadow: 0px 0px 3px #000, 0 0 15px #607D8B, 0 0 30px #607D8B;
	animation: distortion 0.3s linear 2;
}

/* Distortion / shake effect */
@keyframes distortion {
	0% { transform: translate(0, 0) skewX(0deg); }
	20% { transform: translate(-2px, 1px) skewX(-5deg); }
	40% { transform: translate(2px, -1px) skewX(5deg); }
	60% { transform: translate(-1px, 2px) skewX(-3deg); }
	80% { transform: translate(1px, -2px) skewX(3deg); }
	100% { transform: translate(0, 0) skewX(0deg); }
}

/* Music note popping animation */
@keyframes float-note {
	0% { opacity: 0; transform: translate(0, 0) scale(0.6) rotate(0deg); }
	5% { opacity: 1; }
	100% { opacity: 0; transform: translate(var(--x-move), -100px) scale(1) rotate(20deg); filter: blur(2px); }
}

.note{
	position: absolute;
	font-size: 1rem;
	color: #e11d48;
	pointer-events: none;
	z-index: 10;
	animation: float-note 1.5s forwards;
}
.reviewBar{
	background: #263238;
	padding: 5px;
	margin: 10px;
	border-radius: 5px;
	border: 1px solid #37474F;
	font-size: 1.2em;
}