/* Custom styles for the portfolio theme */
body {
	font-family: 'Inter', sans-serif;
	background-color: #111111;
	color: #E5E7EB;
}

/* Main content container */
.main-content {
	animation: fadeIn 2s ease-out;
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Custom font for titles */
.title-font {
	font-family: 'Source Serif Pro', serif;
	font-weight: 700;
}

/* Animated text reveal */
.reveal-text {
	background: linear-gradient(90deg, #4F46E5, #EC4899, #F59E0B);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	animation: gradient-flow 5s ease-in-out infinite;
}

@keyframes gradient-flow {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* Countdown timer styling */
.countdown-number {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
}
.countdown-label {
	color: #9CA3AF;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	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: #4F46E5; /* Indigo */
	background: rgba(79, 70, 229, 0.1);
}
.subscribe-btn {
	background-color: #4F46E5;
	color: #fff;
	border: none;
	transition: all 0.3s ease;
	font-weight: 700;
}
.subscribe-btn:hover {
	background-color: #6366F1;
}

/* ------------------------------------------------------------------- 
 * ## 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: #5B46DF;
	transition: color 0.2s ease;
}