
/* Custom styles for the minimalist futuristic theme */
body {
	font-family: 'Roboto', sans-serif;
	background-color: #030712; /* Nearly black */
	color: #F9FAFB; /* Off-white */
	overflow: hidden;
	margin: 0;
}
canvas {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}
.main-content {
	animation: fadeIn 2s ease-out;
	position: relative;
	z-index: 1;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
.title-font {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.highlight {
	color: #34D399; /* Emerald Green */
	text-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
}
.divider {
	height: 2px;
	width: 80px;
	background: linear-gradient(to right, transparent, #34D399, transparent);
	margin: 1.5rem auto;
}
.countdown-number {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
}
.countdown-label {
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	color: #9CA3AF;
	text-transform: uppercase;
}
.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: #34D399;
	background: rgba(52, 211, 153, 0.05);
}
.subscribe-btn {
	background-color: #34D399;
	color: #030712;
	border: none;
	transition: all 0.3s ease;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.subscribe-btn:hover {
	background-color: #fff;
	box-shadow: 0 0 15px rgba(52, 211, 153, 0.5);
}

/* ------------------------------------------------------------------- 
 * ## 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: #34D399;
	transition: color 0.2s ease;
}