/* Custom styles for the kids theme */
body {
	font-family: 'Baloo 2', cursive;
	background-color: #87CEEB; /* Sky Blue */
	color: #333;
	position: relative;
	overflow: hidden;
}

/* Animated background elements */
.background-elements {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.sun {
	position: absolute;
	top: 10%;
	left: 10%;
	width: 120px;
	height: 120px;
	background: #FFD700;
	border-radius: 50%;
	animation: spin 20s linear infinite;
}
.cloud {
	position: absolute;
	background: #fff;
	border-radius: 50px;
	opacity: 0.8;
	animation: drift 60s linear infinite;
}
.cloud1 { top: 20%; left: -20%; width: 200px; height: 60px; animation-duration: 70s; }
.cloud2 { top: 40%; left: -20%; width: 150px; height: 45px; animation-duration: 50s; animation-delay: -10s; }
.cloud3 { top: 65%; left: -20%; width: 250px; height: 70px; animation-duration: 80s; animation-delay: -25s;}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}
@keyframes drift {
	from { left: -20%; }
	to { left: 120%; }
}

/* Hills at the bottom */
.hills {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20vh;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%234CAF50' fill-opacity='1' d='M0,160L48,170.7C96,181,192,203,288,208C384,213,480,203,576,176C672,149,768,107,864,112C960,117,1056,171,1152,181.3C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 0;
}


/* Main content container */
.main-content {
	animation: bounceIn 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
	background: #fff;
	border: 4px solid #5D4037; /* Brown border */
	box-shadow: 10px 10px 0px #5D4037;
}

@keyframes bounceIn {
	0% { transform: scale(0.5); opacity: 0; }
	60% { transform: scale(1.05); opacity: 1; }
	100% { transform: scale(1); }
}

/* Custom font for titles */
.title-font {
	font-family: 'Fredoka One', cursive;
	color: #E53935; /* Red */
}

.highlight {
	color: #1E88E5; /* Blue */
}

/* Countdown timer styling */
.countdown-number {
	font-family: 'Fredoka One', cursive;
	color: #43A047; /* Green */
	line-height: 1;
	background: #F1F8E9; /* Light green bg */
	border-radius: 0.5rem;
	padding: 0.5rem;
	border: 2px dashed #C5E1A5;
}
.countdown-label {
	color: #555;
	font-size: 0.8rem;
	font-weight: 700;
}

/* Subscription form styling */
.subscribe-input {
	background: #F5F5F5;
	border: 2px solid #ddd;
	color: #333;
	transition: all 0.3s ease;
}
.subscribe-input::placeholder {
	color: #aaa;
}
.subscribe-input:focus {
	outline: none;
	border-color: #FFB74D; /* Orange */
}
.subscribe-btn {
	background-color: #FFB74D;
	color: #fff;
	border: 2px solid #F57C00;
	transition: all 0.3s ease;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 4px 0 #F57C00;
}
.subscribe-btn:hover {
	transform: translateY(2px);
	box-shadow: 0 2px 0 #F57C00;
}
.subscribe-btn:active {
	transform: translateY(4px);
	box-shadow: 0 0px 0 #F57C00;
}
/* ------------------------------------------------------------------- 
 * ## home social - (_site-layout.scss) 
 * ------------------------------------------------------------------- */
.home-social {
  list-style: none;
  font-family: var(--thm-font);
}

.home-social a {
  color: #43A047;
  -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: #E53A35;
	transition: color 0.2s ease;
}