/* Variables */
:root {
	--primary-color: #8bd219;
	--secondary-color: #72af14;
	--accent-color: #9de42e;
	--text-dark: #333333;
	--text-light: #666666;
	--background-light: #ffffff;
	--background-gray: #f8f9fa;
	--shadow-color: rgba(0, 0, 0, 0.1);
}

/* Global Styles */
body {
	font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

.landing-container {
	max-width: 100%;
	overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 2.8rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

h3 {
	font-size: 1.5rem;
	margin-bottom: 0.8rem;
}

p {
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	border-radius: 30px;
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	outline: none;
	box-shadow: 0 4px 6px var(--shadow-color);
	text-decoration: none;
}

.btn.primary-btn {
	background-color: var(--primary-color);
	color: white;
}

.btn.primary-btn:hover {
	background-color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 8px var(--shadow-color);
}

.btn.primary-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px var(--shadow-color);
	background-color: #669e10; /* Dunklere Farbe beim Klicken */
	transition: all 0.1s ease;
}

.btn.secondary-btn {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn.secondary-btn:hover {
	background-color: rgba(139, 210, 25, 0.1);
	transform: translateY(-2px);
}

.btn.secondary-btn:active {
	transform: translateY(0);
	background-color: rgba(139, 210, 25, 0.2);
	transition: all 0.1s ease;
}

.btn.large {
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
}

/* Sections */
section {
	padding: 5rem 0;
}

section:nth-child(even) {
	background-color: var(--background-gray);
}

/* Pilot User Section */
.pilot-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 6rem 10%;
	min-height: 80vh;
	background: linear-gradient(135deg, #e8f5d3, #f2f9e8);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.pilot-section:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAwIEwxMDAgMTAwIEwxMDAgMCBMMCAwIFoiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
	opacity: 0.5;
	z-index: 0;
}

.pilot-content {
	max-width: 800px;
	z-index: 1;
	animation: fadeInUp 1s ease-out;
}

.pilot-content .pilot-description {
	font-size: 1.2rem;
}

.pilot-benefits {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin: 3rem 0;
}

.benefit-card {
	background-color: white;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px var(--shadow-color);
	flex: 1;
	min-width: 250px;
	max-width: 350px;
	transition: transform 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-5px);
}

.benefit-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.benefit-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.benefit-description {
	color: var(--text-light);
	font-size: 0.95rem;
}

/* Email Signup Form */
.cta-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2rem;
}

.email-signup-form {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin: 2rem auto;
	max-width: 650px;
}

#pilot-email, #pilot-email-bottom {
	flex: 1;
	min-width: 250px;
	padding: 0.8rem 1.5rem;
	border-radius: 30px;
	border: 1px solid #ddd;
	font-size: 1rem;
	box-shadow: 0 2px 5px var(--shadow-color);
	transition: all 0.3s ease;
}

#pilot-email:focus, #pilot-email-bottom:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 4px 8px var(--shadow-color);
}

#pilot-signup-btn, #pilot-signup-btn-bottom {
	min-width: 200px;
}

#signup-message, #signup-message-bottom {
	text-align: center;
	margin: 1rem 0;
	font-weight: bold;
	display: none;
}

/* Logo Container */
.logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.5rem;
}

.logo {
	width: 60px;
	height: 60px;
	margin-right: 1rem;
}

.logo-text {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
}

/* Success Message */
.success-message {
	display: none;
	background-color: #e8f5d3;
	border-left: 4px solid var(--primary-color);
	padding: 1rem 1.5rem;
	margin-top: 1.5rem;
	border-radius: 5px;
	animation: fadeInUp 0.5s ease-out;
}

.success-message.show {
	display: block;
}

/* Footer */
.footer {
	background-color: #333;
	color: white;
	padding: 4rem 10% 2rem;
	text-align: center;
}

.footer a {
	color: var(--primary-color);
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Styles */
@media (max-width: 992px) {
	.pilot-section {
		padding: 4rem 5%;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.2rem;
	}
	
	h2 {
		font-size: 1.8rem;
	}
	
	.pilot-benefits {
		flex-direction: column;
		align-items: center;
	}
	
	.benefit-card {
		width: 100%;
		max-width: 100%;
	}
	
	.cta-container {
		flex-direction: column;
		align-items: center;
	}
	
	.btn {
		width: 100%;
		margin-bottom: 1rem;
	}
}
