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

body,
html {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background-color: #212121;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

/* Logo animation container */
#logo-container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #212121;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: opacity 1s ease-in-out;
	z-index: 10;
}

#logo-text {
	color: #e8e8e8;
	margin-top: 20px;
	font-size: 1.5rem;
	text-align: center;
	animation: fadeOut 3s forwards;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* Hide logo container after animation */
.hide-logo {
	opacity: 0;
	visibility: hidden;
}

/* Spinner CSS */
.spinner {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-left: -75px;
}

.spinner span {
	position: absolute;
	top: 50%;
	left: var(--left);
	width: 35px;
	height: 7px;
	background: #ffff;
	animation: dominos 1s ease infinite;
	box-shadow: 2px 2px 3px 0px black;
}

.spinner span:nth-child(1) {
	--left: 80px;
	animation-delay: 0.125s;
}

.spinner span:nth-child(2) {
	--left: 70px;
	animation-delay: 0.3s;
}

.spinner span:nth-child(3) {
	left: 60px;
	animation-delay: 0.425s;
}

.spinner span:nth-child(4) {
	animation-delay: 0.54s;
	left: 50px;
}

.spinner span:nth-child(5) {
	animation-delay: 0.665s;
	left: 40px;
}

.spinner span:nth-child(6) {
	animation-delay: 0.79s;
	left: 30px;
}

.spinner span:nth-child(7) {
	animation-delay: 0.915s;
	left: 20px;
}

.spinner span:nth-child(8) {
	left: 10px;
}

@keyframes dominos {
	50% {
		opacity: 0.7;
	}

	75% {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	80% {
		opacity: 1;
	}
}

/* LANDING PAGE */
#landing-page {
	opacity: 0;
	visibility: hidden;
	text-align: center;
	animation: fadeIn 1.5s forwards 3s;
	width: 100%;

	display: flex;
	flex-direction: column; /* Stack heading and cards vertically */
	justify-content: flex-start; /* Align elements starting from the top */
	align-items: center; /* Center horizontally */
	/* width: 100%; */
	height: 100vh;
	background-color: #212121;
	padding-top: 100px; /* Add some space at the top if needed */
}

/* Slide up heading */
#heading {
	color: #faf0e6;
	font-size: 3rem;
	margin-bottom: 20px;
	position: relative;
	top: 20px;
	animation: slideUp 2s forwards 3.5s;
	text-align: center;
}

#icon-img {
	height: 47px;
	margin-right: 15px;
	padding-top: 10px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
		visibility: visible;
	}
}

@keyframes slideUp {
	0% {
		top: 20px; /* Initially in center */
	}
	100% {
		top: -98px; /* Slide up */
	}
}

/* Footer */
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: #212121; /* Dark background */
	color: #faf0e6; /* Linen text */
	text-align: center;
	padding: 10px 0;
}

footer a {
	color: #faf0e6;
	margin: 0 15px;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}



.card-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto; /* Center horizontally */
	padding: 20px; /* Add padding to separate from other content */
	box-sizing: border-box;
}

.card-video {
	width: 100%;
	height: 200px;
	/* object-fit: cover; */
	object-fit: cover;
}

.card {
	background-color: #212121;
	color: #faf0e6;
	border-radius: 8px;
	overflow: hidden;
	margin: 20px 50px;
	width: 300px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
}

.card.show {
	opacity: 1;
	transform: translateY(0);
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 15px 25px 80px #514c46;
}

.card-gif {
	width: 100%;
	height: 200px;
	object-fit: fill;
}

.card-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.card-title {
	font-size: 24px;
	margin-bottom: 10px;
}

.card-text {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 20px;
}

.card-button {
	display: inline-block;
	background-color: #faf0e6;
	color: #212121;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

.card-button:hover {
	background-color: #e6d8c0;
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
	.card-container {
		flex-direction: column; /* Stack cards vertically on small screens */
	}
	.card {
		margin-bottom: 20px; /* Space between stacked cards */
	}
}


