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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Cal Sans', sans-serif;
	font-weight: 600;
	line-height: 1.2;
}

h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

h3 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

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

.btn-primary {
	background-color: #000;
	color: #fff;
}

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

.btn-secondary {
	background-color: #f4f4f4;
	color: #333;
	border: 1px solid #ddd;
}

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

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

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

.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: 700;
	text-decoration: none;
	color: #000;
}

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

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

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

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

.nav-dropdown {
	position: relative;
}

.dropdown-content {
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	border-radius: 5px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	min-width: 180px;
	padding: 0.5rem 0;
}

.nav-dropdown:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-content a {
	display: block;
	padding: 0.5rem 1rem;
	color: #333;
	text-decoration: none;
	font-size: 0.9rem;
	transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
	background-color: #f8f8f8;
}

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

.hamburger span {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
		url('../img/hero-bg.png');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	padding: 0 10px;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	animation: fadeInUp 1s ease;
}

.hero-content p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	max-width: 600px;
	animation: fadeInUp 1s ease 0.2s both;
}

.hero-content .btn {
	animation: fadeInUp 1s ease 0.4s both;
}

/* Page Header */
.page-header {
	padding: 120px 0 80px;
	text-align: center;
	background: #f8f8f8;
}

.page-header h1 {
	margin-bottom: 1rem;
}

.page-header p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

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

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

.section:nth-child(even) {
	background: #f8f8f8;
}

/* Content Grid */
.content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.content-grid.reverse {
	direction: rtl;
}

.content-grid.reverse > * {
	direction: ltr;
}

.text-content {
	padding: 0 1rem;
}

.image-content {
	text-align: center;
}

.image-content img {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Simple Section */
.simple-section {
	text-align: center;
	padding: 100px 0;
}

.simple-content {
	max-width: 800px;
	margin: 0 auto;
}

.emoji-large {
	font-size: 4rem;
	margin-bottom: 2rem;
}

/* Cards Section */
.cards-section {
	text-align: center;
}

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

.card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card img {
	width: 80px;
	height: 80px;
	margin-bottom: 1.5rem;
	border-radius: 10px;
}

.card h3 {
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.card p {
	color: #666;
	font-size: 1rem;
}

/* FAQ Section */
.faq-section {
	background: white;
}

.faq-grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
}

.faq-item {
	border: 1px solid #e9e9e9;
	border-radius: 8px;
	overflow: hidden;
}

.faq-question {
	padding: 1.5rem;
	background: #f8f8f8;
	margin: 0;
	cursor: pointer;
	font-size: 1.1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: bold;
	transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-answer p {
	padding: 1.5rem;
	margin: 0;
	color: #666;
}

/* Contact Section */
.contact-section {
	background: white;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-info h2 {
	margin-bottom: 1rem;
}

.contact-details {
	margin-top: 2rem;
}

.contact-details p {
	margin-bottom: 1rem;
	color: #666;
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.3s ease;
}

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

.form-message {
	padding: 1rem;
	border-radius: 5px;
	margin-top: 1rem;
}

.form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.9rem;
	line-height: 1.4;
	cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}

.cookie-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	max-width: 500px;
	margin: 20px;
	text-align: center;
}

.cookie-content h3 {
	margin-bottom: 1rem;
}

.cookie-content p {
	margin-bottom: 1.5rem;
	color: #666;
}

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

.cookie-modal.hidden {
	display: none;
}

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

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

.form-submit-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	max-width: 400px;
	margin: 20px;
	transform: translateY(-30px);
	transition: transform 0.3s ease;
}

.form-submit-modal.show .form-submit-content {
	transform: translateY(0);
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #000;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

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

#modal-message {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 500;
}

/* Footer */
.footer {
	background: #000;
	color: white;
	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 {
	margin-bottom: 1rem;
	color: white;
}

.footer-section p {
	color: #ccc;
	font-size: 0.9rem;
}

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

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

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: white;
}

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

.footer-bottom p {
	color: #666;
	font-size: 0.9rem;
	margin: 0;
}

/* Legal Pages */
.legal-page {
	padding: 120px 0 80px;
	min-height: calc(100vh - 200px);
}

.legal-page h1 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

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

.legal-page h3 {
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

.legal-page ul {
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.legal-page ul li {
	margin-bottom: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu a {
		padding: 0.5rem;
		display: block;
		margin: 0.5rem 0;
	}

	.dropdown-content {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: #f8f8f8;
		margin-top: 0.5rem;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

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

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

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

	.content-grid.reverse {
		direction: ltr;
	}

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

	.section {
		padding: 60px 0;
	}

	.simple-section {
		padding: 80px 0;
	}

	.emoji-large {
		font-size: 3rem;
	}

	.cookie-buttons {
		flex-direction: column;
	}

	.legal-page {
		padding: 100px 0 60px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

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

	.hero-content h1 {
		font-size: 2rem;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.section {
		padding: 40px 0;
	}

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

	.card {
		padding: 1.5rem;
	}
}
