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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
	overflow-x: hidden;
}

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

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

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

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 16px;
	color: #1a1a1a;
}

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

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

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

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a1a1a;
	text-decoration: none;
}

.nav-brand img {
	height: 40px;
	width: auto;
	object-fit: contain;
}

.nav-menu {
	display: flex;
	gap: 32px;
}

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

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

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	right: 0;
	height: 2px;
	background: #1a1a1a;
}

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

.nav-toggle span {
	width: 24px;
	height: 2px;
	background: #1a1a1a;
	transition: all 0.3s ease;
}

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

.btn-primary {
	background: #1a1a1a;
	color: white;
}

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

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

.btn-secondary:hover {
	background: #1a1a1a;
	color: white;
}

/* Hero Section */
.hero {
	padding: 140px 0 80px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 24px;
	color: #1a1a1a;
}

.hero-text {
	font-size: 1.3rem;
	color: #666;
	margin-bottom: 32px;
	line-height: 1.7;
}

.hero-buttons {
	margin-top: 20px;
	display: flex;
	gap: 16px;
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Featured Stories Section */
.featured-stories {
	background: #fff;
}

.stories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 32px;
}

.story-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.story-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.story-card img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.story-content {
	padding: 24px;
}

.story-content h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 12px;
	color: #1a1a1a;
}

.story-content p {
	color: #666;
	margin-bottom: 16px;
	line-height: 1.7;
}

.story-link {
	color: #1a1a1a;
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
}

.story-link:hover {
	border-bottom-color: #1a1a1a;
}

/* About Section */
.about {
	background: #f8f9fa;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 24px;
	color: #1a1a1a;
}

.about-text p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 20px;
	line-height: 1.7;
}

.about-stats {
	display: flex;
	gap: 40px;
	margin-top: 40px;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.stat-label {
	color: #666;
	font-size: 0.95rem;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.contact-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
}

.contact-form {
	display: grid;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-weight: 500;
	margin-bottom: 8px;
	color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 14px 16px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	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: #1a1a1a;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.checkbox-label {
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 0 !important;
}

.checkbox-label input[type='checkbox'] {
	appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #e9ecef;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	margin: 0;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-label input[type='checkbox']:checked {
	background: #1a1a1a;
	border-color: #1a1a1a;
}

.checkbox-label input[type='checkbox']:checked::after {
	content: '✓';
	position: absolute;
	top: -2px;
	left: 2px;
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.checkbox-label input[type='checkbox']:focus {
	outline: 2px solid #1a1a1a;
	outline-offset: 2px;
}

.form-success {
	text-align: center;
	padding: 40px;
	background: #f8f9fa;
	border-radius: 12px;
}

.form-success h3 {
	color: #1a1a1a;
	margin-bottom: 12px;
}

.contact-info {
	background: #f8f9fa;
	padding: 32px;
	border-radius: 12px;
	height: fit-content;
}

.contact-info h3 {
	margin-bottom: 24px;
	color: #1a1a1a;
}

.contact-item {
	margin-bottom: 24px;
}

.contact-item strong {
	display: block;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.contact-item p {
	color: #666;
	line-height: 1.6;
}

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

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

.form-modal-content {
	background: white;
	border-radius: 12px;
	padding: 40px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

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

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

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

.form-modal-content .success-icon {
	font-size: 3rem;
	margin-bottom: 16px;
}

.form-modal-content h3 {
	color: #1a1a1a;
	margin-bottom: 12px;
	font-size: 1.5rem;
}

.form-modal-content p {
	color: #666;
	line-height: 1.6;
}

/* Stories Page Styles */
.stories-hero {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 140px 0 80px;
	text-align: center;
}

.stories-hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 24px;
	color: #1a1a1a;
}

.stories-hero > .container > p {
	font-size: 1.3rem;
	color: #666;
	max-width: 800px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.stories-stats {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-top: 40px;
}

.stories-stat {
	display: flex;
	align-items: center;
	gap: 16px;
}

.stories-stat .emoji {
	font-size: 2rem;
}

.stories-stat div strong {
	display: block;
	font-size: 1.1rem;
	color: #1a1a1a;
	margin-bottom: 4px;
}

.stories-stat div p {
	color: #666;
	font-size: 0.9rem;
}

/* Story Meta and Tags */
.story-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	background: #f8f9fa;
	border-bottom: 1px solid #e9ecef;
}

.story-category {
	font-size: 0.85rem;
	font-weight: 600;
	color: #1a1a1a;
	background: white;
	padding: 4px 8px;
	border-radius: 4px;
}

.story-date {
	color: #666;
	font-size: 0.85rem;
}

.story-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 16px;
}

.tag {
	font-size: 0.8rem;
	background: #e9ecef;
	color: #666;
	padding: 4px 8px;
	border-radius: 4px;
}

.story-card.featured {
	grid-column: 1 / -1;
}

.story-card.featured .story-content {
	padding: 32px;
}

.story-card.featured h3 {
	font-size: 1.8rem;
	margin-bottom: 16px;
}

.story-card.featured p {
	font-size: 1.1rem;
	margin-bottom: 20px;
}

/* FAQ Section */
.faq {
	background: #f8f9fa;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border-radius: 8px;
	margin-bottom: 16px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
	padding: 24px 32px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background: #f8f9fa;
}

.faq-question h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #1a1a1a;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	color: #666;
	transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
	color: #666;
	line-height: 1.7;
}

/* Footer */
.footer {
	background: #1a1a1a;
	color: white;
	padding: 60px 0 24px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-brand h3 {
	font-size: 1.5rem;
	margin-bottom: 12px;
}

.footer-brand p {
	color: #ccc;
	line-height: 1.6;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.footer-column h4 {
	margin-bottom: 16px;
	font-size: 1.1rem;
}

.footer-column a {
	display: block;
	color: #ccc;
	text-decoration: none;
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

.footer-column a:hover {
	color: white;
}

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

.footer-bottom p {
	color: #ccc;
}

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: white;
	border-radius: 12px;
	padding: 24px;
	max-width: 400px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	z-index: 2000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.5s ease;
}

.cookie-modal.show {
	display: block;
	transform: translateY(0);
	opacity: 1;
}

.cookie-content h3 {
	margin-bottom: 12px;
	color: #1a1a1a;
}

.cookie-content p {
	color: #666;
	margin-bottom: 20px;
	font-size: 0.9rem;
	line-height: 1.6;
}

.cookie-buttons {
	display: flex;
	gap: 12px;
	align-items: center;
}

.cookie-buttons .btn {
	padding: 10px 20px;
	font-size: 0.9rem;
}

.cookie-link {
	color: #666;
	text-decoration: none;
	font-size: 0.85rem;
	margin-left: auto;
}

.cookie-link:hover {
	text-decoration: underline;
}

/* Legal Pages */
.legal-page {
	padding: 140px 0 80px;
	background: white;
}

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

.legal-content h1 {
	font-size: 1.5rem;
	margin-bottom: 16px;
	color: #1a1a1a;
}

.legal-content .last-updated {
	color: #666;
	margin-bottom: 40px;
	font-style: italic;
}

.legal-content h2 {
	font-size: 1.5rem;
	margin: 40px 0 16px;
	color: #1a1a1a;
}

.legal-content h3 {
	font-size: 1.4rem;
	margin: 32px 0 12px;
	color: #333;
}

.legal-content p {
	margin-bottom: 16px;
	line-height: 1.7;
	color: #444;
}

.legal-content ul {
	margin: 16px 0 16px 24px;
}

.legal-content li {
	margin-bottom: 8px;
	line-height: 1.6;
	color: #444;
}

.contact-info-legal {
	background: #f8f9fa;
	padding: 24px;
	border-radius: 8px;
	margin: 32px 0;
}

.contact-info-legal h3 {
	margin-top: 0;
	margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero .container,
	.about-content,
	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.stories-stats {
		gap: 40px;
	}

	.about-stats {
		justify-content: center;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-links {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}

	.nav-menu {
		position: fixed;
		top: 73px;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 20px;
		border-top: 1px solid rgba(0, 0, 0, 0.1);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
		transform: translateX(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 999;
		height: calc(100vh - 73px);
		overflow-y: auto;
	}

	.nav-menu.active {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu .nav-link {
		padding: 16px 0;
		border-bottom: 1px solid #f0f0f0;
		font-size: 1.1rem;
		text-align: left;
		display: block;
	}

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

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-text {
		font-size: 1.1rem;
	}

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

	.section-header h2 {
		font-size: 2rem;
	}

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

	.stories-hero > .container > p {
		font-size: 1.1rem;
	}

	.stories-stats {
		flex-direction: column;
		gap: 24px;
	}

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

	.about-stats {
		gap: 24px;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}

	.cookie-modal {
		bottom: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
	}

	.cookie-buttons {
		flex-direction: column;
		gap: 8px;
	}

	.cookie-buttons .btn {
		width: 100%;
	}

	.cookie-link {
		margin: 8px 0 0 0;
		text-align: center;
	}
}

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

	.hero-title {
		font-size: 2rem;
	}

	.section-header h2 {
		font-size: 1.8rem;
	}

	.about-stats {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.faq-question {
		padding: 20px 24px;
	}

	.faq-answer {
		padding: 0 24px;
	}

	.faq-item.active .faq-answer {
		padding: 0 24px 20px;
	}
}
