@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

:root {
	--primary: #ff9900;
	--secondary: #1e90ff;
	--background: #0a0e17;
	--text: #f2f2f2;
}

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

body {
	font-family: "Inter", sans-serif;
	background-color: var(--background);
	color: var(--text);
	line-height: 1.6;
}

h2 {
	opacity: 0;
}

#particle-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.content {
	position: relative;
	padding-bottom: 100px;
	z-index: 1;
	min-height: 110vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.logo {
	font-size: 4rem;
	font-weight: 700;
	color: var(--primary);
	margin-top: 1rem;
}

.tagline {
	font-size: 2rem;
	opacity: 0;
}

.orange {
	/* target the .orange class within the .title element */
	color: #f79413; /* orange color */
}

.subtitle {
	font-size: 1.25rem; /* adjust subtitle font size as needed */
	font-weight: normal;
	opacity: 0;
}

.intro {
	width: 90%;
	max-width: 30rem;
	margin: 0rem 0 0rem 0;
	opacity: 0;
}

.block-margin {
	margin: 20px 0;
}

.countdown-message {
	width: 90%;
	max-width: 30rem;
	font-size: 1rem; /* adjust subtitle font size as needed */
	margin: 1rem; /* add minimal margin for spacing */
	font-weight: normal;
	font-style: italic;
	a {
		color: #fff;
	}
}

.image {
	width: 307px;
	height: 75px;
}

.construction {
	font-size: 1rem;
	margin-bottom: 2rem;
	opacity: 0;
}

.cta-button {
	background-color: transparent;
	color: var(--primary);
	padding: 0.8rem 1.5rem;
	border: 2px solid var(--primary);
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease;
	opacity: 0;
	position: relative;
	overflow: hidden;
}

.cta-button:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 153, 0, 0.4),
		transparent
	);
	transition: 0.5s;
}

.cta-button:hover:before {
	left: 100%;
}

.cta-button:hover {
	background-color: var(--primary);
	color: var(--background);
}

.countdown {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 1rem;
	opacity: 0;
}

.countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.countdown-value {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--primary);
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
}

.countdown-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	margin-top: 0.5rem;
}

.social {
	opacity: 0;
}

.social [class*="fab fa-"] {
	border-radius: 30px;
	color: #fff;
	display: inline-block;
	height: 30px;
	line-height: 30px;
	margin: auto 3px;
	width: 30px;
	font-size: 20px;
	text-align: center;
	text-decoration: none;
}

.social [class*="fab fa-"]:hover {
	background-color: #333;
}

.fa-x-twitter:hover {
	background-color: #000;
}

.fa-w:hover {
	background-color: #472a91;
}

.fa-linkedin:hover {
	background-color: #0072b1;
}

.fa-telegram:hover {
	background-color: #229ed9;
}

.countdown-container {
	display: flex;
	width: 90%;
	max-width: 30rem;
	align-items: center; /* Align items vertically in the container */
	border: 1px solid #ffc24d;
	padding: 0.05rem;
	border-radius: 8px;
	gap: 1rem; /* Add some spacing between the columns */
	opacity: 0;
}

.countdown-timer {
	flex: 1;
	display: flex;
	justify-content: space-around;
}

.image-container {
	flex: 1;
	display: flex;
	justify-content: flex-end; /* Align image to the right */
}

.careers {
}

.careers-link {
	margin: 1rem 0;
	font-size: 0.9rem; /* Slightly smaller font size */
	opacity: 0;
	transition: opacity 0.5s ease; /* Add a fade-in effect */
}

/* General FAQ styling */
#faqs {
	/* Adjust to fit your theme */
	width: 90%;
	max-width: 30rem;
}

#faqs.hidden {
	display: none; /* Initially hide the FAQs */
}

.faq-item {
	position: relative; /* Crucial for positioning the answer */
}

.faq-question {
	display: flex; /* Enable flexbox layout */
	align-items: center; /* Vertically align items */
	background-color: var(--background);
	color: #fff;
	border: 1px solid #ffc24d;
	width: 100%;
	text-align: left;
	padding: 15px;
	cursor: pointer;
	font-size: 1.1em;
	transition: background-color 0.3s ease;
}

.faq-answer {
	display: none;
	background-color: var(--background);
	text-align: left;
	border: 1px solid #444444;
	width: 100%;
	padding: 10px 15px;
	margin-top: 5px;
	z-index: 1; /* Ensure answer is above other elements */
}

.faq-answer ul {
	padding-left: 20px; /* Add padding to the list itself */
	list-style-position: outside; /* Ensure bullets are outside the list item box */
}

.faq-arrow {
	float: right;
	margin-right: 10px;
	transition: transform 0.3s ease;
	transform: rotate(
		-90deg
	); /* Rotate -90 degrees for the default left position */
}

/* Show the answer and rotate arrow on click */
.faq-question.active + .faq-answer {
	display: block;
}

/* Rotate the arrow when the FAQ is active */
.faq-question.active .faq-arrow {
	transform: rotate(0deg);
	color: #ffc24d;
}

#toggleFAQs {
	opacity: 0;
}

.modal {
	display: none; /* Hidden by default */
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
	margin: 15% auto;
	display: block;
	width: 80%; /* Adjust as needed */
	max-width: 700px; /* Adjust as needed */
}

.close-button {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close-button:hover,
.close-button:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.7;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.countdown-value {
	animation: pulse 2s infinite;
}
