/* Custom styles for the healthcare theme */
body {
	font-family: 'Nunito Sans', sans-serif;
	background-color: #F0F7F7; /* Very light, calming cyan */
	color: #4A5568; /* Slate Gray */
	position: relative;
}

/* Background pattern */
.background-pattern {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	
	background-image: url(../images/temp-30.webp);
}

/* Main content container */
.main-content {
	animation: fadeIn 2s ease-out;
	background: #ffffff;
	border: 1px solid #E2E8F0;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Custom font for titles */
.title-font {
	font-family: 'Lora', serif;
	font-weight: 600;
	color: #2C5282; /* Dark Blue */
}

.highlight {
	color: #38A169; /* Green */
}

.divider {
	height: 2px;
	width: 100px;
	background-color: #38A169;
	margin: 1.5rem auto;
	opacity: 0.5;
}

/* Countdown timer styling */
.countdown-number {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 600;
	color: #2D3748;
	line-height: 1;
}
.countdown-label {
	color: #718096;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Subscription form styling */
.subscribe-input {
	background: #F7FAFC;
	border: 1px solid #E2E8F0;
	color: #2D3748;
	transition: all 0.3s ease;
}
.subscribe-input::placeholder {
	color: #A0AEC0;
}
.subscribe-input:focus {
	outline: none;
	border-color: #38A169;
	box-shadow: 0 0 0 2px rgba(56, 161, 105, 0.2);
}
.subscribe-btn {
	background-color: #38A169;
	color: #fff;
	border: none;
	transition: all 0.3s ease;
	font-weight: 600;
}
.subscribe-btn:hover {
	background-color: #2F855A;
}

/* Social media icons styling */
.social-icon {
	color: #A0AEC0;
	transition: color 0.3s ease;
}
.social-icon:hover {
	color: #2C5282;
}

/* ------------------------------------------------------------------- 
 * ## home social - (_site-layout.scss) 
 * ------------------------------------------------------------------- */
.home-social {
  list-style: none;
  font-family: var(--thm-font);
}

.home-social a {
  color: #2C5282;
  -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: #31855B;
	transition: color 0.2s ease;
}
