/* Custom styles for the party theme */
body {
	font-family: 'Poppins', sans-serif;
	background-color: #4A148C; /* Deep Purple */
	background-image: linear-gradient(45deg, #4A148C 0%, #880E4F 100%);
	color: #ffffff;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

#confetti-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

/* Main content card */
.main-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	position: relative;
	z-index: 1;
	animation: popIn 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
	transform: scale(0.8);
	opacity: 0;
}

@keyframes popIn {
	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* Custom font for titles */
.title-font {
	font-family: 'Anton', sans-serif;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.highlight {
	color: #FFD600; /* Bright Yellow */
}

.subtitle {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #F06292; /* Bright Pink */
}

/* Countdown timer styling */
.countdown-box {
	background: rgba(0,0,0,0.2);
	border-radius: 0.5rem;
	padding: 0.5rem;
}
.countdown-number {
	font-family: 'Anton', sans-serif;
	color: #ffffff;
	line-height: 1;
}
.countdown-label {
	color: #E1BEE7;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Subscription form styling */
.subscribe-input {
	background: rgba(0,0,0,0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	transition: all 0.3s ease;
}
.subscribe-input::placeholder {
	color: #CE93D8;
}
.subscribe-input:focus {
	outline: none;
	border-color: #FFD600;
	background: rgba(0,0,0,0.3);
}
.subscribe-btn {
	background-image: linear-gradient(45deg, #F06292 0%, #FFD600 100%);
	color: #4A148C;
	border: none;
	transition: all 0.3s ease;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.subscribe-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
/* ------------------------------------------------------------------- 
 * ## home social - (_site-layout.scss) 
 * ------------------------------------------------------------------- */
.home-social {
  list-style: none;
  font-family: var(--thm-font);
}

.home-social a {
  color: #FFFFFF;
  -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: #d19c58;
	transition: color 0.2s ease;
}