
/* Custom styles for the minimalist gym theme */
body {
	font-family: 'Inter', sans-serif;
	background-color: #000000;
	color: #E5E7EB; /* Light Gray */
	position: relative;
}

/* Static Image Background with Ken Burns effect */
.image-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?q=80&w=2070&auto=format&fit=crop');
	background-size: cover;
	background-position: center;
	animation: kenburns 40s ease-out infinite;
}

@keyframes kenburns {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

/* Dark overlay for better text readability */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85));
	z-index: -1;
}

/* Main content fade-in animation */
.main-content {
	animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Custom font for the main title */
.title-font {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1;
}

.highlight {
	color: #FDE047; /* Yellow-300 */
}

.divider {
	height: 3px;
	width: 80px;
	background-color: #FDE047;
	margin: 1.5rem auto;
}

/* Countdown timer styling */
.countdown-number {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
}
.countdown-label {
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	color: #9CA3AF;
}

/* Subscription form styling */
.subscribe-input {
	background: transparent;
	border: 1px solid #4B5563; /* Gray-600 */
	color: #ffffff;
	transition: all 0.3s ease;
}
.subscribe-input::placeholder {
	color: #9CA3AF;
}
.subscribe-input:focus {
	outline: none;
	border-color: #FDE047;
	background: rgba(253, 224, 71, 0.05);
}
.subscribe-btn {
	background-color: #FDE047;
	color: #000;
	border: none;
	transition: all 0.3s ease;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.subscribe-btn:hover {
	background-color: #fff;
}

/* ------------------------------------------------------------------- 
 * ## 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: #FDE047;
	transition: color 0.2s ease;
}