@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;500;700&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}


/* Header */
header {
	background: linear-gradient(121deg, #38bcb1 0%, #27676f 100%);
	color: white;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Desktop & Tablet Navigation */
.header-desktop {
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.logo-container {
	flex-shrink: 0;
}

.logo-placeholder {
	width: 230px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #002a47;
	font-size: 0.9rem;
	padding: 10px;
}


.logo-placeholder img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Navigation Links - Middle Section */
.nav-links-desktop {
	display: flex;
	gap: 30px;
	list-style: none;
	flex-grow: 1;
	justify-content: center;
}

.nav-links-desktop a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	padding: 8px 12px;
	border-radius: 20px;
	position: relative;
}

.nav-links-desktop a:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

/* Action Buttons - Right Section */
.nav-actions {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
}

.btn-phone, .btn-request {
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s;
	white-space: nowrap;
	border: 2px solid transparent;
}

.btn-phone {
	background: white;
	color: #00032e;
	border-color: white;
}

.btn-phone:hover {
	background: transparent;
	color: white;
	transform: translateY(-2px);
}

.btn-request {
	background: #f5ce01;
	color: #00032e;
	border-color: #f5ce01;
}

.btn-request:hover {
	background: #002a47;
	border-color: #002a47;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Mobile Navigation Container */
.header-mobile {
	display: none;
	flex-direction: column;
}

.mobile-top-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.mobile-menu-btn {
	background: none;
	border: 2px solid white;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 8px;
	transition: all 0.3s;
}

.mobile-menu-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

.mobile-buttons-row {
	display: flex;
	gap: 10px;
	padding-bottom: 15px;
}

.mobile-buttons-row .btn-phone,
.mobile-buttons-row .btn-request {
	flex: 1;
	text-align: center;
	padding: 10px 15px;
	font-size: 0.9rem;
}

/* Mobile Menu Dropdown */
.mobile-nav-dropdown {
	display: none;
	background: rgba(0, 0, 0, 0.1);
	padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-dropdown.active {
	display: block;
}

.mobile-nav-dropdown ul {
	list-style: none;
}

.mobile-nav-dropdown a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 12px 20px;
	font-weight: 500;
	transition: background 0.3s;
}

.mobile-nav-dropdown a:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
	/* Tablet adjustments */
	/* Hide desktop navigation */
	.header-desktop {
		display: none;
	}

	/* Show mobile navigation */
	.header-mobile {
		display: flex;
	}
	
	.btn-phone, .btn-request {
		padding: 10px 20px;
		font-size: 0.95rem;
	}
	
	.bistro-content {
		grid-template-columns: 1fr !important;
		text-align: center;
	}
}

@media (max-width: 768px) {
	/* Hide desktop navigation */
	.header-desktop {
		display: none;
	}

	/* Show mobile navigation */
	.header-mobile {
		display: flex;
	}

	.logo-placeholder {
		width: 120px;
		height: 50px;
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	.mobile-buttons-row {
		flex-direction: column;
	}

	.mobile-buttons-row .btn-phone,
	.mobile-buttons-row .btn-request {
		width: 100%;
	}
}

/* Hero Section */
.hero {
	background: linear-gradient(82deg, #38bcb1 0%, #27676f 100%);
	color: white;
	padding: 80px 0;
	text-align: center;
	background-size: cover;
	background-position: center;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	animation: fadeInUp 0.8s ease;
}

.hero p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto 30px;
	animation: fadeInUp 0.8s ease 0.2s both;
}

.highlight {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 15%, #002a47 15%);
	padding: 0 0.25rem;
}


.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary, .btn-secondary {
	padding: 15px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s;
	display: inline-block;
}

.btn-primary {
	background: #f5ce01;
	color: #00032e;
}

.div-margin-top-big {
	margin-top: 25px;
}

.div-margin-top-small {
	margin-top: 10px;
}

.btn-primary:hover {
	background: #fff;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
	color: #00032e;
}

.btn-secondary {
	background: white;
	color: #002a47;
}

.btn-secondary:hover {
	background: #f0f0f0;
	transform: translateY(-3px);
}

/* Trust Badges */
.trust-badges {
	background: #f8f9fa;
	padding: 30px 0;
	border-bottom: 3px solid #002a47;
}

.badges-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 30px;
	text-align: center;
}

.badge-item {
	flex: 1;
	min-width: 200px;
}

.badge-icon {
	width: 50px;
	height: 50px;
	background: #002a47;
	border-radius: 50%;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
}

/* Main Content */
.content-section {
	padding: 80px 0;
}

.content-section.bg-gray {
	background: #f8f9fa;
}

h2 {
	font-size: 2rem;
	color: #002a47;
	margin-bottom: 30px;
	text-align: center;
	position: relative;
}

h2:after {
	content: '';
	width: 60px;
	height: 3px;
	background: #38bcb1;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.intro-text {
	max-width: 800px;
	margin: 0 auto 50px;
	text-align: center;
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
}


/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.service-card {
	background: white;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #38bcb1, #27676f);
	transform: scaleX(0);
	transition: transform 0.3s;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 25px;
}

.service-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.service-card h3 {
	color: #002a47;
	font-size: 1.4rem;
	margin-bottom: 15px;
}

.service-card p {
	color: #666;
	line-height: 1.7;
	font-size: 1rem;
}


/* Bistro Section */
.bistro-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
	padding: 80px 0;
}

.bistro-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-top: 40px;
}

.bistro-text {
	padding: 20px;
}

.bistro-text ul {
	list-style-position: inside;
}


.bistro-text h3 {
	color: #002a47;
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.bistro-text p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 30px;
}

.bistro-image img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Use Cases Grid */
.use-cases {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin: 50px 0;
}

.use-case-card {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	transition: all 0.3s;
}

.use-case-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.use-case-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(121deg, #38bcb1 0%, #27676f 100%);
	border-radius: 50%;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 28px;
}

.use-case-card h3 {
	color: #002a47;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

/* Benefits Section */
.benefits {
	background: #f8f9fa;
	padding: 60px 0;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 40px;
}

.benefit-item {
	display: flex;
	align-items: start;
	gap: 15px;
}

.check-icon {
	width: 30px;
	height: 30px;
	background: #38bcb1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
	padding: 60px 0;
	background: white;
}

.faq-container {
	max-width: 900px;
	margin: 40px auto 0;
}

.faq-item {
	background: #f8f9fa;
	border-radius: 10px;
	margin-bottom: 15px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	overflow: hidden;
	transition: all 0.3s;
}

.faq-item:hover {
	box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.faq-question {
	width: 100%;
	padding: 20px 25px;
	background: #f8f9fa;
	border: none;
	text-align: left;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 600;
	color: #002a47;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s;
	font-family: inherit;
}

.faq-question:hover {
	background: #e9ecef;
}

.faq-item.active .faq-question {
	background: linear-gradient(121deg, #38bcb1 0%, #27676f 100%);
	color: white;
}

.faq-icon {
	font-size: 1.5rem;
	font-weight: 300;
	transition: transform 0.3s;
	flex-shrink: 0;
	margin-left: 20px;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background: white;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	transition: max-height 0.5s ease-in;
}

.faq-answer p {
	padding: 20px 25px;
	color: #555;
	line-height: 1.7;
}

/* Process Section */
.process-steps {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	margin: 50px 0;
}

.process-step {
	flex: 1;
	min-width: 200px;
	text-align: center;
	position: relative;
}

.step-number {
	width: 50px;
	height: 50px;
	background: #38bcb1;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.5rem;
	font-weight: bold;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #f5ce01, #c4a500);
	color: #00032e;
	padding: 60px 0;
	text-align: center;
}

.cta-section h2 {
	color: #00032e;
}

.cta-section h2:after {
	background: #00032e;
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin: 40px 0;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.1rem;
}

.contact-section-link {
	color: #00032e;
	text-decoration: none;
	transition: all 0.3s;
}

.contact-section-link:hover {
	color: #00032e;
	text-decoration: none;
	transform: translateY(-5px);
}

/* Footer */
footer {
	background: #1a1a1a;
	color: white;
	padding: 30px 0;
	text-align: center;
}

footer a {
	color: #fff;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
	h1 {
		font-size: 1.8rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.hero {
		padding: 50px 0;
	}

	.hero p {
		font-size: 1rem;
	}
	
	.services-grid {
		grid-template-columns: 1fr;
	}

	.use-cases {
		grid-template-columns: 1fr;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn-primary, .btn-secondary {
		width: 100%;
		max-width: 300px;
	}

	.faq-question {
		font-size: 1rem;
		padding: 15px 20px;
	}

	.faq-answer p {
		padding: 15px 20px;
		font-size: 0.95rem;
	}

	.faq-icon {
		margin-left: 10px;
	}
}

/* Target Group Section */
.target-groups {
	background: #f8f9fa;
	padding: 60px 0;
}

.groups-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 40px;
}

.group-card {
	text-align: center;
	padding: 30px;
	border-radius: 10px;
	background: linear-gradient(135deg, #fff, #f8f9fa);
	border: 2px solid #e0e0e0;
	transition: all 0.3s;
}

.group-card:hover {
	border-color: #38bcb1;
	transform: translateY(-5px);
}

.group-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

/*CONTACT FORM*/
.contact-section {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.contact-form form {
	width: 100%;
}

.contact-form {
	position: relative;
	max-width: 840px;
	width: 100%;
	padding: 30px 30px 20px;
}


.contact-form .input50,
.contact-form .input100 {
	width: 100%;
	margin: 0;
}

.contact-form .row input,
.contact-form .row textarea,
.contact-form .row select {
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	color: #111;
	background: transparent;
	width: 100%;
	padding: 10px;
	outline: none;
	font-size: 1rem;
	font-family: inherit;
	font-weight: 300;
	margin: 10px 0;
	resize: none;
}

.contact-form .row select {
	color: #686868;
}

.contact-form select option {
	color: #3d3d3d;
	font-weight: 300;
}

.contact-form .row textarea {
  height: 150px;
}

.contact-form button {
	background-color: #38bcb1;
	min-width: 15rem;
	padding: 15px 30px;
	border-radius: 30px;
	border: none;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 16px;
	display: block;
	margin: 10px auto 0;
}

/* --- Sticky Header --- */
header{
  position: sticky;   /* bleibt oben kleben */
  top: 0;
  z-index: 9999;      /* über dem Inhalt */
}

/* --- Anker-Offset, damit Sections nicht unter dem Header landen --- */
section[id]{
  scroll-margin-top: 110px; /* ggf. auf 90–130px feinjustieren */
}

/* Optional: stärkere Schattenwirkung, sobald gescrolled wird */
header.is-stuck{
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}