 /* Custom styles for the VIP ticket theme */
body {
	font-family: 'Roboto Condensed', sans-serif;
	background-color: #1a1a1a;
	background-image: radial-gradient(circle at top, #4a4a4a 0%, #1a1a1a 70%);
	color: #ffffff;
	overflow-x: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 1rem;
}

/* The main ticket container */
.ticket {
	background: #282828;
	border-radius: 1rem;
	box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
	position: relative;
	animation: floatIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	transform: translateY(50px);
	opacity: 0;
	max-width: 400px;
	width: 100%;
}

@keyframes floatIn {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Shimmer effect on the ticket */
.ticket::before {
	content: '';
	position: absolute;
	top: 0;
	left: -150%;
	width: 70%;
	height: 100%;
	background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
	transform: skewX(-25deg);
	animation: shimmer 5s infinite;
}

@keyframes shimmer {
	100% {
		left: 150%;
	}
}

/* Custom font for titles */
.title-font {
	font-family: 'Ultra', serif;
	color: #D4AF37; /* Gold color */
	text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.brand-name {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: #ccc;
}

/* Perforated line effect */
.perforated-line {
	height: 1px;
	width: 100%;
	background-image: linear-gradient(to right, #555 50%, transparent 50%);
	background-size: 10px 1px;
	border: none;
}

/* Countdown timer styling */
.countdown-number {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
}
.countdown-label {
	color: #888;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Subscription form styling */
.subscribe-input {
	background: rgba(0,0,0,0.3);
	border: 1px solid #444;
	color: #ffffff;
	transition: all 0.3s ease;
}
.subscribe-input::placeholder {
	color: #777;
}
.subscribe-input:focus {
	outline: none;
	border-color: #D4AF37;
	background: rgba(0,0,0,0.4);
}
.subscribe-btn {
	background-color: #D4AF37;
	color: #1a1a1a;
	border: none;
	transition: all 0.3s ease;
	font-weight: 700;
	text-transform: uppercase;
}
.subscribe-btn:hover {
	background-color: #fff;
	color: #1a1a1a;
}

/* Barcode styling */
.barcode {
	background-image: linear-gradient(to right, 
		#fff 2%, transparent 2%, transparent 4%, #fff 4%, #fff 5%, transparent 5%, transparent 8%, #fff 8%, #fff 10%, transparent 10%, transparent 12%, #fff 12%, #fff 16%, transparent 16%, transparent 17%, #fff 17%, #fff 18%, transparent 18%, transparent 22%, #fff 22%, #fff 24%, transparent 24%, transparent 25%, #fff 25%, #fff 26%, transparent 26%, transparent 29%, #fff 29%, #fff 30%, transparent 30%, transparent 33%, #fff 33%, #fff 35%, transparent 35%, transparent 40%, #fff 40%, #fff 43%, transparent 43%, transparent 44%, #fff 44%, #fff 45%, transparent 45%, transparent 47%, #fff 47%, #fff 52%, transparent 52%, transparent 54%, #fff 54%, #fff 55%, transparent 55%, transparent 56%, #fff 56%, #fff 60%, transparent 60%, transparent 63%, #fff 63%, #fff 64%, transparent 64%, transparent 68%, #fff 68%, #fff 70%, transparent 70%, transparent 72%, #fff 72%, #fff 73%, transparent 73%, transparent 75%, #fff 75%, #fff 78%, transparent 78%, transparent 82%, #fff 82%, #fff 84%, transparent 84%, transparent 86%, #fff 86%, #fff 88%, transparent 88%, transparent 92%, #fff 92%, #fff 94%, transparent 94%, transparent 95%, #fff 95%, #fff 98%, transparent 98%);
	height: 50px;
}

/* ------------------------------------------------------------------- 
 * ## home social - (_site-layout.scss) 
 * ------------------------------------------------------------------- */
.home-social {
  list-style: none;
  font-family: var(--thm-font);
}

.home-social a {
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.home-social li {
  position: relative;
  display: inline-block;
}

.home-social li a {
  display: block;
  width: 36px;
  height: 36px;
}

.home-social i,
.home-social span {
  position: absolute;
  top: 0;
  line-height: 36px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.home-social i {
  right: 0;
  text-align: center;
  display: inline-block;
  width: 36px;
  height: 36px;
}

.home-social a:hover  {
  color: #D4AF37;
	transition: color 0.2s ease;
}