﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	background: white;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	background: white;
}

header {
	background: #105D73;
	color: white;
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.auth-buttons {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.auth-btn {
	padding: 0.5rem 1.25rem;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
	font-weight: 500;
	font-size: 0.9rem;
}

.auth-btn-login {
	background: transparent;
	color: white;
	border: 2px solid white;
}

	.auth-btn-login:hover {
		background: white;
		color: #667eea;
	}

.auth-btn-signup {
	background: white;
	color: #667eea;
}

	.auth-btn-signup:hover {
		background: rgba(255, 255, 255, 0.9);
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	}

.logo {
	font-size: 1.5rem;
	font-family: Rockwell, Consolas, "Courier New", Courier, monospace;
	text-decoration: none;
	color: white;
	transition: opacity 0.3s;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

	.logo:hover {
		opacity: 0.8;
	}

	.logo span {
		display: flex;
		align-items: center;
	}

	.logo img {
		width: auto;
		object-fit: contain;
		display: block;
	}

nav ul {
	list-style: none;
	display: flex;
	gap: 2rem;
	align-items: center;
}

nav a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s;
	position: relative;
}

	nav a:hover {
		opacity: 0.8;
	}

	nav a::after {
		content: '';
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 0;
		height: 2px;
		background: white;
		transition: width 0.3s;
	}

	nav a:hover::after {
		width: 100%;
	}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
}

@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	nav ul {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		flex-direction: column;
		padding: 1rem;
		gap: 1rem;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	}

		nav ul.active {
			display: flex;
		}

	.auth-buttons {
		gap: 0.5rem;
	}

	.auth-btn {
		padding: 0.4rem 1rem;
		font-size: 0.85rem;
	}
}

@media (max-width: 768px) {
	.header-right {
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.header-right {
		flex-direction: column;
		gap: 1rem;
	}

	.auth-buttons {
		flex-direction: row;
		gap: 0.5rem;
	}

	.auth-btn {
		flex: 1;
		text-align: center;
	}
}

main {
	overflow-x: hidden;
	background: white;
}

/* Hero Section */
.hero {
	background: white;
	color: #333;
	padding: 6rem 2rem;
	text-align: center;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

	.hero-content img {
		max-width: 100%;
		height: auto;
		border-radius: 15px;
		margin-bottom: 2rem;
		display: block;
	}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: #666;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 1rem 2rem;
	font-size: 1.1rem;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
	font-weight: 600;
}

.btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

	.btn-primary:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
	}

.btn-secondary {
	background: transparent;
	color: #667eea;
	border: 2px solid #667eea;
}

	.btn-secondary:hover {
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: white;
	}

/* Features Section */
.features {
	padding: 6rem 2rem;
	background: #f8f9fa;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	font-size: 2.8rem;
	margin-bottom: 1rem;
	color: #333;
	font-weight: 700;
}

.section-subtitle {
	text-align: center;
	font-size: 1.25rem;
	color: #666;
	margin-bottom: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background: white;
	padding: 3rem 2.5rem;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	text-align: center;
	position: relative;
	overflow: hidden;
}

	.feature-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 4px;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		transform: scaleX(0);
		transition: transform 0.3s ease;
	}

	.feature-card:hover::before {
		transform: scaleX(1);
	}

	.feature-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
	}

.feature-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	display: inline-block;
	transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1);
}

.feature-card h3 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	color: #333;
	font-weight: 600;
}

.feature-card p {
	color: #666;
	line-height: 1.8;
	font-size: 1rem;
}

/* About Section */
.about {
	padding: 5rem 2rem;
	background: white;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-top: 3rem;
}

.about-text {
	font-size: 1.1rem;
	color: #666;
	line-height: 1.8;
}

	.about-text p {
		margin-bottom: 1.5rem;
	}

.about-image {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 15px;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
}

/* Services Preview */
.services-preview {
	padding: 5rem 2rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

	.services-preview .section-title,
	.services-preview .section-subtitle {
		color: white;
	}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.3s;
}

	.service-card:hover {
		transform: translateY(-5px);
		background: rgba(255, 255, 255, 0.15);
	}

	.service-card h3 {
		font-size: 1.3rem;
		margin-bottom: 1rem;
	}

	.service-card p {
		opacity: 0.9;
		line-height: 1.8;
	}

/* Footer */
footer {
	background: #2d3748;
	color: white;
	padding: 1.5rem 2rem;
	text-align: center;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

	.footer-links a {
		color: white;
		text-decoration: none;
		transition: opacity 0.3s;
	}

		.footer-links a:hover {
			opacity: 0.7;
		}

.footer-bottom {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
	opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.hero-content img {
		margin-bottom: 1.5rem;
		border-radius: 10px;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 2rem;
	}
}

.site-title {
	color: white;
	line-height: 48px;
	padding-left: 10px;
	font-family: Rockwell, Consolas, "Courier New", Courier, monospace;
	font-size: 24px;
	margin: 0;
	float: left;
}

	.site-title a, .site-title a:hover, .site-title a:active {
		background: none;
		color: white;
		outline: none;
		display: inline;
		text-decoration: none;
		white-space: nowrap;
	}

	.site-title * {
		vertical-align: middle;
	}
