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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		Roboto, 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', 'Noto Sans', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

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

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

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

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

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

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

.btn-accept {
	background-color: #000;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
}

.btn-decline {
	background-color: transparent;
	color: #000;
	padding: 10px 20px;
	border: 2px solid #000;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
}

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

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

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

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

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

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

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

.checkbox-group label {
	margin-bottom: 0;
	font-size: 0.9rem;
	line-height: 1.4;
	cursor: pointer;
}

/* Navigation */
.navbar {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	text-align: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

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

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

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

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

/* Section Styles */
.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

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

.section-header p {
	font-size: 1.2rem;
	color: #666;
}

/* About Section */
.about {
	padding: 80px 0;
	background: #fff;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
}

.about-item {
	text-align: center;
}

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

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

.about-item h3 {
	margin-bottom: 1rem;
	color: #000;
}

.about-item p {
	color: #666;
}

/* Featured Section */
.featured {
	padding: 80px 0;
	background: #f8f9fa;
}

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

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

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

.story-image {
	/* height: 100%; */
}

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

.story-content {
	padding: 1.5rem;
}

.story-content h3 {
	margin-bottom: 1rem;
	color: #000;
}

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

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

.story-link:hover {
	opacity: 0.7;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: #fff;
}

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

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

.contact-info p {
	color: #666;
	margin-bottom: 2rem;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.contact-emoji {
	font-size: 1.5rem;
	margin-top: 0.2rem;
}

.contact-item strong {
	display: block;
	margin-bottom: 0.5rem;
	color: #000;
}

.contact-item p {
	color: #666;
	margin: 0;
}

/* Form Styles */
.contact-form {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 12px;
}

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

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

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

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

.form-success {
	background: #d4edda;
	color: #155724;
	padding: 1rem;
	border-radius: 6px;
	margin-top: 1rem;
}

/* FAQ Section */
.faq {
	padding: 80px 0;
	background: #f8f9fa;
}

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

.faq-item {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
	margin-bottom: 1rem;
	color: #000;
}

.faq-item p {
	color: #666;
}

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

.categories {
	padding: 80px 0;
	background: #fff;
}

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

.category-card {
	text-align: center;
	padding: 2rem;
	background: #f8f9fa;
	border-radius: 12px;
	transition: transform 0.3s ease;
}

.category-card:hover {
	transform: translateY(-5px);
}

.category-emoji {
	font-size: 3rem;
	display: block;
	margin-bottom: 1rem;
}

.category-card h3 {
	margin-bottom: 1rem;
	color: #000;
}

.category-card p {
	color: #666;
}

.latest-stories {
	padding: 80px 0;
	background: #f8f9fa;
}

.stories-list {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.story-full {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 0;
}

.story-full:nth-child(even) {
	grid-template-columns: 1fr 300px;
}

.story-full:nth-child(even) .story-image {
	order: 2;
}

.story-full .story-content {
	padding: 2rem;
}

.story-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.story-category {
	background: #000;
	color: #fff;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
}

.story-date {
	color: #666;
}

.story-full h2 {
	margin-bottom: 1rem;
	color: #000;
}

.story-author {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid #e0e0e0;
	color: #666;
}

.submit-cta {
	padding: 80px 0;
	background: #000;
	color: #fff;
	text-align: center;
}

.cta-content h2 {
	color: #fff;
	margin-bottom: 1rem;
}

.cta-content p {
	color: #ccc;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

.submit-cta .btn-primary:hover {
	background-color: #f0f0f0;
}

/* Footer */
.footer {
	background: #000;
	color: #fff;
	padding: 60px 0 20px;
}

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

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

.footer-section p {
	color: #ccc;
	margin-bottom: 1rem;
}

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

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

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

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

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

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

/* Submission Modal */
.submission-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10001;
}

.submission-modal-content {
	background: #fff;
	padding: 3rem;
	border-radius: 12px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 200px;
	min-width: 300px;
}

.loader {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #333;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1.5s linear infinite;
}

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

#successMessage h3 {
	margin-bottom: 1rem;
}

#successMessage p {
	color: #666;
	margin: 0;
}

/* Animations */
.animate-section {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

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

/* Legal Pages */
.legal-page {
	padding: 120px 0 80px;
	background: #fff;
}

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

.legal-content h1 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: #000;
}

.legal-content h2 {
	margin: 2rem 0 1rem;
	color: #000;
	font-size: 1.5rem;
}

.legal-content p {
	margin-bottom: 1rem;
	color: #666;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: #fff;
		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-toggle {
		display: flex;
	}

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

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

	.nav-toggle.active span:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}

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

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

	.story-full {
		grid-template-columns: 1fr !important;
	}

	.story-full .story-image {
		order: 1 !important;
	}

	.story-full .story-image img {
		height: 200px;
	}

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

	.about-grid,
	.stories-grid,
	.category-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}
}

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

	.nav-container {
		padding: 1rem 15px;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.section-header {
		margin-bottom: 2rem;
	}

	.about,
	.featured,
	.contact,
	.faq,
	.categories,
	.latest-stories,
	.submit-cta {
		padding: 60px 0;
	}

	.contact-form {
		padding: 1.5rem;
	}

	.faq-item,
	.category-card {
		padding: 1.5rem;
	}

	.story-full .story-content {
		padding: 1.5rem;
	}
}
