/* Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
}

body {
	background-color: #111;
	color: #fff;
	font-family: sans-serif;
	overflow: hidden;
}

.main-container {
	position: relative;
	height: 100%;
	min-width: 100%;
	overflow-y: auto;
	z-index: 0;
}

.main-container::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #111;
	opacity: 0.4;
	z-index: -1;
}

#wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}

.center {
	/*max-width: 1020px;*/
	margin: 0 auto;
	padding: 0 10px;
	text-align: center;
}


.site-title {
	font-weight: lighter;
	padding-bottom: 20px;
}

.site-content {
	position: absolute;
	top: 90px;
	/* kept as in original */
	width: 100%;
	color: #fff;
}

.heading {
	font-size: 45px;
	font-weight: bold;
	font-style: normal;
}

.description {
    padding: 0px 15px 0px 15px;
}

.description h3 {
	font-size: 28px;
	font-weight: 300;
	font-style: normal;
}

.bg-img {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}

.bg-img img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center;
	display: block;
}

.desktop {
	display: block;
}

.mobile {
	display: none;
}



/* Newsletter Section Layout */
.newsletter-section {
	padding: 20px 20px 0px;
	border-radius: 20px;
	display: inline-block;
}

/* Newsletter Form */
.newsletter-form {
    padding: 20px;
	display: flex;
	flex-direction: column; /* stack items vertically */
	align-items: center; /* center them horizontally */
	gap: 12px; /* spacing between items */
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
	padding: 14px 20px;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	width: 280px;
	background-color: #fff;
	color: #111;
	transition: 0.3s;
}

.newsletter-form input[type="email"]::placeholder,
.newsletter-form input[type="text"]::placeholder {
	color: #888;
}

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus {
    outline: none;
    background-color: #f8f8f8;
}


.newsletter-form button {
	padding: 14px 28px;
	border: none;
	border-radius: 30px;
	color: white;
    background-color: #c0b100;
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
	/*background-color: #e6b800;*/
	color: white;
    background-color: #decd03;
}

.newsletter-response {
	margin-top: 20px;
	font-size: 18px;
	font-weight: 600;
	color: white;
	min-height: 24px;
}


/*Count down section*/
.countdown-timer {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 18px;
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	padding: 20px;
	border-radius: 20px;
	flex-wrap: wrap;
}

.countdown-item {
	text-align: center;
}

.countdown-item span {
	display: block;
	font-size: 55px;
	/*color: #ffcc00;*/
	color: #f1df0b;
}

.countdown-item small {
	display: block;
	font-size: 16px;
	color: white;
}

.countdownFinished {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	color: #ffcc00;
	/*margin-top: 60px;*/
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease;
	padding: 70px 30px;
}

.countdownFinished.active {
	opacity: 1;
	transform: translateY(0);
	animation: pulse-glow 1s ease-in-out 2;
}

@keyframes pulse-glow {
	0% {
		text-shadow: 0 0 5px #ffcc00;
	}

	50% {
		text-shadow: 0 0 20px #ffcc00, 0 0 30px #ff9900;
	}

	100% {
		text-shadow: 0 0 5px #ffcc00;
	}
}


@media (max-width: 670px) {
	.desktop {
		display: none;
	}
	.mobile {
		display: block;
	}

	.heading {
		font-size: 32px;
	}
	.description h3,
	.description h2 {
		font-size: 20px;
	}
	.countdown-timer {
		font-size: 22px;
		padding: 15px 20px;
	}
	.countdown-item span {
		font-size: 30px;
	}
	.countdown-item small {
		font-size: 14px;
	}
	.newsletter-form input[type="email"],
	.newsletter-form input[type="text"],
	.newsletter-form button {
		font-size: 14px;
		padding: 12px 20px;
	}
	.newsletter-response {
		font-size: 16px;
	}
	.countdownFinished {
		font-size: 20px;
		padding: 50px 20px;
	}
	
	.site-content {  
		top: 50px;
	}
}

@media (max-width: 560px) {
	.heading {
		font-size: 28px;
	}
	.countdown-item span {
		font-size: 30px;
	}
	.countdown-item small {
		font-size: 13px;
	}
	.newsletter-form input[type="email"],
	.newsletter-form input[type="text"]	{
		width: 220px;
	}
}

@media (max-width: 400px) {
	.countdown-timer {
		margin-top:45px;
	}
	
	.newsletter-section{
		padding: 10px 10px;
	}
}

@media (max-width: 350px) {
	.heading {
		font-size: 24px;
	}
	.description h3,
	.description h2 {
		font-size: 16px;
	}
	.countdown-item span {
		font-size: 30px;
	}
	.countdown-item small {
		font-size: 12px;
	}
	.newsletter-form input[type="email"],
	.newsletter-form input[type="text"],
	.newsletter-form button {
		font-size: 12px;
		padding: 10px 16px;
	}
	.newsletter-response {
		font-size: 14px;
	}
}


.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid #111;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}