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

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: #e5e5e5;
	background-color: #0a0a0a;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
	font-family: 'Cal Sans', sans-serif;
	font-weight: 600;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
	line-height: 1.2;
}

h2 {
	font-size: 2.5rem;
	line-height: 1.3;
}

h3 {
	font-size: 1.5rem;
	line-height: 1.4;
}

p {
	margin-bottom: 1rem;
	color: #b5b5b5;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.btn-primary {
	background-color: #2563eb;
	color: white;
}

.btn-primary:hover {
	background-color: #1d4ed8;
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: transparent;
	color: #e5e5e5;
	border: 2px solid #374151;
}

.btn-secondary:hover {
	background-color: #374151;
	transform: translateY(-2px);
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
}

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

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;

	font-family: 'Cal Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: #2563eb;
	text-decoration: none;
}

.nav-logo img {
	height: 40px;
	width: auto;
}

.nav-menu {
	display: flex;
	gap: 2rem;
}

.nav-link {
	color: #e5e5e5;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: #2563eb;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background-color: #e5e5e5;
	margin: 3px 0;
	transition: 0.3s;
}

.nav-menu.active {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.98);
	backdrop-filter: blur(10px);
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	border-top: 1px solid #1f2937;
}

.nav-menu.active .nav-link {
	padding: 1rem 0;
	border-bottom: 1px solid #1f2937;
	font-size: 1.1rem;
}

.nav-menu.active .nav-link:last-child {
	border-bottom: none;
}

/* Hero Section */
.hero {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	background-image: radial-gradient(
			circle at 20% 50%,
			rgba(37, 99, 235, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(147, 51, 234, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 80%,
			rgba(59, 130, 246, 0.1) 0%,
			transparent 50%
		);
	z-index: -1;
}

.hero-content {
	max-width: 800px;
	padding: 0 20px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #b5b5b5;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Sections */
.section {
	padding: 5rem 0;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

.section.animate {
	opacity: 1;
	transform: translateY(0);
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.1rem;
	color: #9ca3af;
}

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 3rem;
	align-items: center;
}

.about-text h3 {
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.about-emoji {
	font-size: 4rem;
}

/* Features Section */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: #111111;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	border: 1px solid #1f2937;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.feature-image {
	margin-bottom: 1.5rem;
}

.feature-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 8px;
}

.feature-card h3 {
	color: #ffffff;
	margin-bottom: 1rem;
}

/* Courses Grid */
.courses-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.course-card {
	background: #111111;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #1f2937;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.course-image {
	height: 200px;
	overflow: hidden;
}

.course-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.course-content {
	padding: 1.5rem;
}

.course-content h3 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.course-meta {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.course-meta span {
	background: #1f2937;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	color: #9ca3af;
}

/* Learning Path */
.path-content {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3rem;
	align-items: center;
}

.path-emoji {
	font-size: 4rem;
}

.path-text h3 {
	color: #ffffff;
	margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item h3 {
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.contact-form {
	background: #111111;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid #1f2937;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	background: #1f2937;
	border: 1px solid #374151;
	border-radius: 8px;
	color: #e5e5e5;
	font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2563eb;
}

/* Checkbox styles */
.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #b5b5b5;
}

.checkbox-container input[type='checkbox'] {
	width: auto;
	margin: 0;
	opacity: 0;
	position: absolute;
}

.checkmark {
	width: 18px;
	height: 18px;
	background: #1f2937;
	border: 1px solid #374151;
	border-radius: 4px;
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
	transition: all 0.3s ease;
}

.checkbox-container input[type='checkbox']:checked + .checkmark {
	background: #2563eb;
	border-color: #2563eb;
}

.checkbox-container input[type='checkbox']:checked + .checkmark::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-container:hover .checkmark {
	border-color: #2563eb;
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: #111111;
	border: 1px solid #1f2937;
	border-radius: 8px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #111111;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background: #1a1a1a;
}

.faq-question h3 {
	color: #ffffff;
	margin: 0;
	font-size: 1.1rem;
}

.faq-toggle {
	font-size: 1.5rem;
	color: #2563eb;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 0 1.5rem 1.5rem;
}

/* Footer */
.footer {
	background: #111111;
	border-top: 1px solid #1f2937;
	padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #2563eb;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #1f2937;
}

.footer-bottom p {
	color: #6b7280;
	margin: 0;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #111111;
	border-top: 1px solid #1f2937;
	padding: 2rem;
	z-index: 1001;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-modal.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.cookie-content h3 {
	color: #ffffff;
	margin: 0;
}

.cookie-content p {
	flex: 1;
	margin: 0;
	min-width: 300px;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

/* Submission Modal */
.submission-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1002;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.submission-modal.show {
	opacity: 1;
	visibility: visible;
}

.submission-content {
	background: #111111;
	border: 1px solid #1f2937;
	border-radius: 12px;
	padding: 3rem;
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.submission-modal.show .submission-content {
	transform: scale(1);
}

.submission-content h3 {
	color: #ffffff;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.submission-content p {
	color: #b5b5b5;
	margin-bottom: 0;
}

/* Loading Spinner */
.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #1f2937;
	border-top: 4px solid #2563eb;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1.5rem;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Success Icon */
.success-icon {
	width: 60px;
	height: 60px;
	background: #10b981;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	margin: 0 auto 1.5rem;
	font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.about-content,
	.path-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.section {
		padding: 3rem 0;
	}

	h1 {
		font-size: 2rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.features-grid,
	.courses-container {
		grid-template-columns: 1fr;
	}
}

/* Legal Pages Styles */
.legal-page {
	padding-top: 8rem;
	min-height: 100vh;
}

.legal-content {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.legal-content h1 {
	color: #ffffff;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid #2563eb;
	padding-bottom: 1rem;
}

.legal-content h2 {
	color: #ffffff;
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.legal-content p {
	margin-bottom: 1.5rem;
	color: #b5b5b5;
}

.legal-content ul {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.legal-content ul li {
	color: #b5b5b5;
	margin-bottom: 0.5rem;
}

.legal-content strong {
	color: #ffffff;
}
