/* techy */

:root {
	--bg-main: #0a1128;
	--bg-secondary: #001f54;
	--text-main: #ffffff;
	--text-muted: #c3d2e0;
	--accent: #0077ff;
	--accent-hover: #005fcc;
	--card-bg: rgba(0, 119, 255, 0.1);
}

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

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: var(--bg-main);
	color: var(--text-main);
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}

.logo-container img,
.logo img {
	width: 200px;
}

/* Animated background */
.background-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(45deg, var(--bg-main), var(--bg-secondary));
}

.background-animation::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--accent) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: float 20s ease-in-out infinite;
	opacity: 0.1;
}

.floating-shapes {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.shape {
	position: absolute;
	background: linear-gradient(45deg, var(--accent), var(--accent-hover));
	border-radius: 50%;
	opacity: 0.1;
	animation: floatShapes 15s ease-in-out infinite;
}

.shape:nth-child(1) {
	width: 80px;
	height: 80px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.shape:nth-child(2) {
	width: 120px;
	height: 120px;
	top: 60%;
	right: 15%;
	animation-delay: -5s;
}

.shape:nth-child(3) {
	width: 60px;
	height: 60px;
	top: 40%;
	left: 80%;
	animation-delay: -10s;
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(30px, -30px) rotate(120deg);
	}
	66% {
		transform: translate(-20px, 20px) rotate(240deg);
	}
}

@keyframes floatShapes {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 2rem;
	position: relative;
}

/* MOBILE MENU %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%** */
.nav-menu {
	display: none;
	list-style: none;
	gap: 2rem;
	/* background-color: var(--bg-main); */
}
.nav-menu a {
	text-decoration: none !important;
	color: var(--text-main);
}
.mobile-menu-toggle {
	display: none;
}
button.mobile-menu-toggle {
	background-color: unset;
	background: unset;
	border: none;
}
.mobile-menu-toggle svg {
	/* display: none; */
	width: 20px;
	height: 20px;
}
.mobile-menu-toggle svg path {
	fill: white !important;
}

/* .nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
} */

.hero-section-main {
	text-align: center;
	margin-bottom: 4rem;
	animation: slideDown 1s ease-out;
}

.logo-container {
	position: relative;
	margin-bottom: 2rem;
}

.logo-bg {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, var(--accent), var(--accent-hover));
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	animation: pulse 2s ease-in-out infinite;
	box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.logo-text {
	font-size: 2rem;
	font-weight: bold;
	color: white;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--text-main), var(--text-muted));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.subtitle {
	font-size: 1.2rem;
	color: var(--text-muted);
	margin-bottom: 3rem;
	opacity: 0;
	animation: fadeInUp 1s ease-out 0.5s forwards;
}

.selection-section {
	background: var(--card-bg);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 3rem;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
	animation: slideUp 1s ease-out 0.7s both;
	max-width: 600px;
	width: 100%;
}

.selection-title {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 2.5rem;
	color: var(--text-main);
}

.countries-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.country-option {
	background: var(--bg-secondary);
	border: 2px solid transparent;
	border-radius: 16px;
	padding: 2rem 1.5rem;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
}

.country-option::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(124, 58, 237, 0.1),
		transparent
	);
	transition: left 0.5s;
}

.country-option:hover::before {
	left: 100%;
}

.country-option:hover {
	border-color: var(--accent);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.flag {
	width: 80px;
	height: 60px;
	margin: 0 auto 1rem;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.belgium-flag img {
	width: 100%;
	height: 100%;
}

.poland-flag img {
	width: 100%;
	height: 100%;
}

.language-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-main);
	margin-bottom: 0.5rem;
}

.country-subtitle {
	font-size: 0.9rem;
	color: var(--text-muted);
}

.footer {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.9rem;
	color: var(--text-muted);
	animation: fadeIn 2s ease-out;
}

.activate-windows {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	font-size: 0.8rem;
	color: var(--text-muted);
	opacity: 0.6;
	animation: fadeIn 2s ease-out 1s both;
}

.person-illustration {
	position: fixed;
	top: 20%;
	right: 10%;
	width: 200px;
	height: 200px;
	animation: bounce 3s ease-in-out infinite;
	z-index: 1;
}

.person {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
	position: relative;
	transform-origin: center bottom;
}

.person::before {
	content: "🎉";
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 2rem;
	animation: celebrate 2s ease-in-out infinite;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

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

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes celebrate {
	0%,
	100% {
		transform: translateX(-50%) rotate(0deg);
	}
	25% {
		transform: translateX(-50%) rotate(-10deg);
	}
	75% {
		transform: translateX(-50%) rotate(10deg);
	}
}

/* *******************************************************************************ABOUT US */

/* body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: var(--bg-main);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        } */

/* Animated background */

.background-gradient {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 80%,
			var(--bg-secondary) 0%,
			var(--bg-main) 50%
		),
		radial-gradient(circle at 80% 20%, var(--accent) 0%, transparent 30%),
		radial-gradient(circle at 40% 40%, var(--bg-secondary) 0%, transparent 50%);
	z-index: -2;
	animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.8;
	}
}

/* Floating elements */
.floating-elements {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}

.float-element {
	position: absolute;
	background: linear-gradient(45deg, var(--accent), var(--accent-hover));
	border-radius: 50%;
	opacity: 0.1;
	animation: floatAnimation 15s ease-in-out infinite;
}

.float-element:nth-child(1) {
	width: 100px;
	height: 100px;
	top: 10%;
	left: 85%;
	animation-delay: 0s;
}

.float-element:nth-child(2) {
	width: 60px;
	height: 60px;
	top: 70%;
	left: 10%;
	animation-delay: -5s;
}

.float-element:nth-child(3) {
	width: 80px;
	height: 80px;
	top: 30%;
	left: 20%;
	animation-delay: -10s;
}

@keyframes floatAnimation {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-30px) rotate(180deg);
	}
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(10, 17, 40, 0.9);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 119, 255, 0.1);
	padding: 1rem 0;
	animation: slideDown 0.8s ease-out;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.5rem;
	font-weight: 700;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--accent), var(--accent-hover));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	animation: pulse 2s ease-in-out infinite;
}

/* .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a:hover::after {
            width: 100%;
        } */
.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-container a {
	color: var(--text-muted);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav-container a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s ease;
}

.nav-container a:hover {
	color: var(--accent);
}

.nav-container a:hover::after {
	width: 100%;
}

/* Main content */
.main-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 8rem 2rem 4rem;
}

.hero-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 6rem;
}

.hero-content {
	animation: slideInLeft 1s ease-out;
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.1;

	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--text-main), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	width: max-content;
}

.hero-subtitle {
	font-size: 1.2rem;
	color: var(--text-muted);
	margin-bottom: 2rem;
}

/* TEXT *******)))))))))))))))))))))))))))))))))))))))))))))))))))))))(*)(*_)(* */
.privacy-section b {
	display: block;
	margin-top: 15px;
}
.privacy-section p {
	font-size: 18px;
}
/* .privacy-section span{
    padding-left: 10px;
} */

/* TEXT *******)))))))))))))))))))))))))))))))))))))))))))))))))))))))(*)(*_)(* */
/* About section */
.about-section,
.privacy-section {
	animation: fadeInUp 1s ease-out 0.5s both;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	text-align: center;
	color: var(--text-main);
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.content-card {
	background: var(--card-bg);
	border: 1px solid rgba(0, 119, 255, 0.2);
	border-radius: 20px;
	padding: 2.5rem;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.content-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 119, 255, 0.1),
		transparent
	);
	transition: left 0.6s;
}

.content-card:hover::before {
	left: 100%;
}

.content-card:hover {
	transform: translateY(-10px);
	border-color: var(--accent);
	box-shadow: 0 20px 40px rgba(0, 119, 255, 0.2);
}

.card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent), var(--accent-hover));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.card-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-main);
}

.card-text {
	color: var(--text-muted);
	line-height: 1.7;
}

.cta-section {
	text-align: center;
	margin-top: 4rem;
	animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-text {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: var(--text-main);
	font-weight: 600;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(135deg, var(--accent), var(--accent-hover));
	color: white;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 119, 255, 0.3);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 119, 255, 0.4);
}

/* Footer elements */
.activate-windows {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	font-size: 0.8rem;
	color: var(--text-muted);
	opacity: 0.6;
	animation: fadeIn 2s ease-out 2s both;
}

/* Animations */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		transform: translateX(-50px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(50px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

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

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

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-15px);
	}
}

/* Responsive design */
/* @media (max-width: 968px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .nav-links {
                display: none;
            }

            .main-container {
                padding: 6rem 1rem 2rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
            }

            .characters {
                gap: 1rem;
            }

            .character {
                width: 100px;
                height: 140px;
            }
        } */

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.content-card {
		padding: 1.5rem;
	}

	.nav-container {
		padding: 0 1rem;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 1rem;
	}

	.selection-section {
		padding: 2rem 1.5rem;
		margin: 1rem;
	}

	.countries-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	h1 {
		font-size: 2.5rem;
	}
	.hero-section {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.main-container {
		padding: 6rem 1rem 2rem;
	}

	.content-grid {
		grid-template-columns: 1fr;
	}
	.hero-title {
		width: auto;
	}
}
@media (max-width: 1024px) {
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--bg-main);
		flex-direction: column;
		padding: 1rem 2rem;
	}
	.mobile-menu-toggle {
		display: inline-block;
	}
	.nav-menu.active {
		display: flex;
	}

	.nav-links {
		display: none;
	}
}
