/* Custom styles for the podcast theme */
body {
	font-family: 'Inter', sans-serif;
	background-color: #121212;
	color: #E5E7EB;
	position: relative;
}

/* Background Gradient */
.background-gradient {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: radial-gradient(circle at top, rgba(139, 92, 246, 0.15), transparent 40%);
}

/* Main content container */
.main-content {
	animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Custom font for titles */
.title-font {
	font-family: 'Inter', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.05em;
}

.highlight {
	color: #8B5CF6; /* Violet */
}

/* Podcast Cover Art Styling */
.cover-art {
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease;
}
.cover-art:hover {
	transform: scale(1.03);
}

/* Countdown timer styling */
.countdown-number {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	color: #ffffff;
	line-height: 1;
}
.countdown-label {
	color: #9CA3AF;
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

/* Subscription form styling */
.subscribe-input {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid #374151;
	color: #ffffff;
	transition: all 0.3s ease;
}
.subscribe-input::placeholder {
	color: #6B7280;
}
.subscribe-input:focus {
	outline: none;
	border-color: #8B5CF6;
	background: rgba(139, 92, 246, 0.1);
}
.subscribe-btn {
	background-color: #8B5CF6;
	color: #fff;
	border: none;
	transition: all 0.3s ease;
	font-weight: 700;
}
.subscribe-btn:hover {
	background-color: #7C3AED;
}

/* ------------------------------------------------------------------- 
 * ## 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: #7C3AED;
	transition: color 0.2s ease;
}