/*
    ░█████╗░░█████╗░██████╗░██╗░░██╗██╗░░░██╗
    ██╔══██╗██╔══██╗██╔══██╗██║░░██║██║░░░██║
    ███████║███████║██║░░██║███████║██║░░░██║
    ██╔══██║██╔══██║██║░░██║██╔══██║██║░░░██║
    ██║ ░██║██║░░██║██████╔╝██║░░██║╚██████╔╝
    ╚═╝░░╚═╝╚═╝░░╚═╝╚═════╝░╚═╝░░╚═╝░╚═════╝░
*/

/* @import url('https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Turret+Road:wght@200;300;400;500;700;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	/* Ensures the body takes up at least the full height of the viewport */
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 0 0;
	border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
}

.nav-logo {
	height: 80px;
}

.nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	color: #ffffff;
	text-decoration: none;
	font-family: "Jura", sans-serif;
	font-size: 1.1rem;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: #ff6b6b;
}

.nav-link:hover::after {
	width: 100%;
}

.nav-button {
	padding: 0.5rem 1.5rem;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	border: none;
	border-radius: 5px;
	color: white;
	font-family: "Jura", sans-serif;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
	color: #000000;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
}

.menu-toggle span {
	width: 30px;
	height: 3px;
	background: #ffffff;
	transition: all 0.3s ease;
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
	.menu-toggle {
		display: flex;
		z-index: 1001;
	}

	.nav-links {
		display: none;
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		height: auto;
		background: rgba(0, 0, 0, 0.95);
		backdrop-filter: blur(10px);
		flex-direction: column;
		padding: 2rem 0;
		text-align: center;
		gap: 2rem;
	}

	.nav-links.active {
		display: flex;
	}

	.nav-link {
		opacity: 0;
		transform: translateY(10px);
		transition: opacity 0.3s ease, transform 0.3s ease;
	}

	.nav-links.active .nav-link {
		opacity: 1;
		transform: translateY(0);
	}

	.menu-toggle span {
		transition: all 0.3s ease-in-out;
	}
}

body {
	font-family: "Jura", sans-serif;
	background-image: url('/Files/Images/bg1.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
	box-sizing: border-box;
	/* Include padding and border in the element's total width and height */
}


.back-button {
	font-family: sans-serif;
	font-weight: 400;
	position: fixed;
	top: 20px;
	left: 20px;
	padding: 10px 20px;
	font-size: 1rem;
	color: #fff;
	background-color: transparent;
	border: 2px solid #ff0000;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease
}

.back-button:hover {
	background-color: #ff0000;
}


section {
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content {
	position: relative;
	top: 20%
}

.content h2 {
	color: #fff;
	font-size: 8em;
	position: absolute;
	transform: translate(-50%, -50%);
}

.content h2:nth-child(1) {
	color: transparent;
	-webkit-text-stroke: 2px #ff0000;
}

.content h2:nth-child(2) {
	color: #ff0000;
	animation: animate 4s ease-in-out infinite;
}

.zioninfo {
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	max-width: 90%;
	display: flex;
	font-size: x-large;
	font-family: "Jura", sans-serif;
	color: #c2c2c2;
	padding-top: 200px;
}

.button {
	position: absolute;
	bottom: 10%;
}

.real-btn {
	height: 50px;
	margin: 5px;
	width: 100%;
	background: transparent;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	align-items: center;
	font-family: Consolas, Courier New, monospace;
	border: solid #404c5d 1px;
	font-size: 20px;
	color: rgb(161, 161, 161);
	-webkit-transition: 500ms;
	transition: 500ms;
	border-radius: 5px;
	-webkit-box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
		inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
	box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
		inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
}

button:hover {
	-webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
	box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
	color: #d6d6d6;
	-webkit-transition: 500ms;
	transition: 500ms;
}

button:active {
	-webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
	box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
	color: #d6d6d6;
	-webkit-transition: 100ms;
	transition: 100ms;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	background-color: transparent;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section {
	margin-bottom: 40px;
}

.section h2 {
	background-color: transparent;
	color: #fa3636;
	padding: 20px;
	border-radius: 44px;
	text-align: center;
	font-family: "Jura", sans-serif;
	font-size: 50px;
}

.team-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 0px;
}

.team-member {
	text-align: center;
	color: #fff;
	padding: 10px;
	border-radius: 8px;
	width: 200px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	font-size: large;
	font-family: "Jura", sans-serif;
}

.team-role {
	padding: 0.8rem 2rem;
	border-radius: 20px;
	font-size: medium;
	font-family: "Jura", sans-serif;
	margin-bottom: 0.5rem;
	color: white;
	background: linear-gradient(45deg, rgb(255, 0, 0), #ff6b6b);
	width: 40%;
	text-align: center;

}

.team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0px 0px 6px 6px rgb(255, 0, 0);
}

.team-member img {
	width: 100%;
	border-radius: 50%;
	margin-bottom: 10px;
}

.team-member p {
	margin: 5px 0 0;
	font-size: 0.9em;
}

@keyframes animate {

	0%,
	100% {
		clip-path: polygon(0% 45%,
				16% 44%,
				33% 50%,
				54% 60%,
				70% 61%,
				84% 59%,
				100% 52%,
				100% 100%,
				0% 100%);
	}

	50% {
		clip-path: polygon(0% 60%,
				15% 65%,
				34% 66%,
				51% 62%,
				67% 50%,
				84% 45%,
				100% 46%,
				100% 100%,
				0% 100%);
	}
}


.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1000;
	cursor: pointer;
	font-size: 24px;
	box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.back-to-top.visible {
	opacity: 1;
}

.back-to-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.footer {
	color: #ffffff;
	text-align: center;
	padding: 20px 0;
	position: relative;
	bottom: 0;
	width: 100%;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer-logo {
	margin-top: 16px;
	width: 27px;
	height: 27px;
}

.footer p {
	margin: 0;
	font-size: 1.7rem;
	font-family: "Jura", sans-serif;
	/* font-family: "Turret Road", serif; */
	font-weight: 600;
	margin-bottom: 5px;
	color: #fff;
	text-decoration: none;
}

.footer a {
	text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

.zionlogo3 {
	width: 600px;
}

/* Custom dialog box styles */
.custom-dialog {
	display: none;
	position: fixed;
	top: -100px;
	/* Initial position for drop effect */
	left: 50%;
	transform: translateX(-50%);
	background-color: #000000;
	color: white;
	padding: 20px;
	width: 90%;
	max-width: 600px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
	z-index: 1001;
	font-family: Arial, sans-serif;
	text-align: center;
	border-radius: 10px 10px;
	opacity: 0;
	/* Hidden by default */
	transition: top 0.5s ease, opacity 0.5s ease;
	/* Smooth drop effect */
}

.custom-dialog.show {
	top: 15px;
	/* Final position for drop effect */
	opacity: 1;
	/* Make it visible */
}

.dialog-logo {
	width: 140px;
	margin-bottom: 10px;
}

.dialog-buttons {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 3px;
	padding-inline: 10px;
}

.dialog-button {
	margin-right: 10px;
	padding: 10px 20px;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	color: #ffffff;
	border: none;
	border-radius: 15px;
	cursor: pointer;
	font-family: fantasy;
	letter-spacing: 1px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dialog-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.dialog-button:last-child {
	margin-right: 0;
}

.dialog-button:active {
	box-shadow: inset 4px 4px 12px #ff0019, inset -4px -4px 12px #ff0019;
}

#close-btn:active {
	box-shadow: inset 4px 4px 12px #1900ff, inset -4px -4px 12px #1900ff;
}

#contact-dev-btn {
	background: linear-gradient(45deg, #00aaff, #00ffaa);
	/* Teal color gradient */
}

#join-discord-btn {
	background: linear-gradient(45deg, #7289da, #002aff);
	/* Discord color gradient */
}

/* Add these responsive styles at the end of the file */

@media screen and (max-width: 1200px) {
	.container {
		padding: 10px;
	}

	.team-grid {
		gap: 15px;
	}
}

@media screen and (max-width: 992px) {
	.section h2 {
		font-size: 40px;
	}

	.team-member {
		width: 180px;
	}

	.team-role {
		width: 60%;
	}
}

@media screen and (max-width: 768px) {
	.content h2 {
		font-size: 4em;
	}

	.zioninfo {
		font-size: 90%;
		padding: 20px;
		top: 60%;
	}

	.zionlogo3 {
		width: 300px;
	}

	.team-grid {
		gap: 10px;
	}

	.team-member {
		width: 160px;
	}

	.team-member img {
		width: 90%;
	}
}

@media screen and (max-width: 576px) {
	.section h2 {
		font-size: 30px;
	}

	.team-grid {
		justify-content: space-around;
	}

	.team-member {
		width: 140px;
	}

	.team-role {
		width: 80%;
		font-size: small;
	}

	.back-button {
		font-size: 0.8rem;
		padding: 8px 16px;
		position: absolute;
	}
}

@media screen and (max-width: 320px) {
	.team-member {
		width: 120px;
	}

	.team-member h3 {
		font-size: 0.9em;
	}

	.team-role {
		width: 90%;
		padding: 0.6rem 1rem;
	}
}


.trail-dot {
	width: 1px;
	height: 1px;
	background: rgb(1, 203, 254, 255);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	transform: translate(-50%, -50%);
	transition: width 0.2s, height 0.2s;
	z-index: 9999;
	mix-blend-mode: screen;
	filter: blur(0px);
}

.trail-dot:nth-child(2n) {
	background: rgb(1, 203, 254, 255);
	width: 6px;
	height: 6px;
}

.trail-dot:nth-child(3n) {
	background: rgb(1, 203, 254, 255);
	width: 4px;
	height: 4px;
}

.trail-dot:nth-child(4n) {
	background: rgb(1, 203, 254, 255);
	width: 3px;
	height: 3px;
}