/* 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;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	font-weight: 600;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
}

h3 {
	font-size: 1.8rem;
	font-weight: 500;
}

p {
	margin-bottom: 1rem;
}

/* 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;
	transition: all 0.3s ease;
}

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

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
	color: #007acc;
}

.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.jpg') center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
}

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

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

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

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

.btn-primary {
	background: #007acc;
	color: white;
}

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

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

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

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

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

.section-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

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

.about h2 {
	text-align: center;
	margin-bottom: 2rem;
}

.about p {
	font-size: 1.1rem;
	text-align: left;
	margin-bottom: 1.5rem;
}

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

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

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

.feature-emoji {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1rem;
	display: block;
}

/* Stories Page */
.stories-hero {
	padding: 8rem 0 4rem;
	background: #f8f9fa;
	text-align: center;
}

.story-cards {
	padding: 4rem 0;
}

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

.story-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.story-image {
	height: 200px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	background-size: cover;
	background-position: center;
}

.story-image.career {
	background-image: url('../img/story-career.png');
}

.story-image.startup {
	background-image: url('../img/story-startup.png');
}

.story-image.product {
	background-image: url('../img/story-product.png');
}

.story-image.infrastructure {
	background-image: url('../img/story-infrastructure.png');
}

.story-content {
	padding: 1.5rem;
}

.story-category {
	display: inline-block;
	background: #007acc;
	color: white;
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	margin-top: 1rem;
}

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

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

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 5px;
	overflow: hidden;
}

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

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

.faq-toggle {
	font-size: 1.5rem;
	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: all 0.3s ease;
}

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

/* Contact Form */
.contact {
	text-align: center;
}

.contact-form {
	max-width: 600px;
	margin: 2rem auto 0;
	text-align: left;
}

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

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

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

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

.form-group-checkbox {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.form-group-checkbox input[type='checkbox'] {
	width: auto;
	flex-shrink: 0;
	accent-color: #007acc;
}

.form-group-checkbox label {
	margin-bottom: 0;
	font-weight: 400;
}

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

/* 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: 2000;
}

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

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

.btn-accept,
.btn-decline {
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-accept {
	background: #007acc;
	color: white;
}

.btn-decline {
	background: #6c757d;
	color: white;
}

.cookie-link {
	font-size: 0.9rem;
	color: #007acc;
	text-decoration: none;
}

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 3rem 0 1rem;
}

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

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

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

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

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.98);
		flex-direction: column;
		text-align: center;
		padding: 1rem 0;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		display: flex;
	}

	.nav-menu li {
		padding: 0.8rem 0;
	}

	.hamburger {
		display: flex;
	}

	.hamburger.active span:nth-child(1) {
		transform: rotate(-45deg) translate(-6px, 6px);
	}
	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active span:nth-child(3) {
		transform: rotate(45deg) translate(-6px, -6px);
	}

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

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

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

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.section {
		padding: 3rem 0;
	}

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

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

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

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

	.hero-buttons {
		gap: 0.5rem;
	}

	.btn-primary,
	.btn-secondary {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	.cookie-content {
		padding: 1.5rem;
		margin: 0 15px;
	}

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