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

html {
	scroll-behavior: smooth;
	font-size: 14px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #e5e7eb;
	background-color: #0b0b0b;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
.header {
	background: #0b0b0b;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	cursor: pointer;
}

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

.nav-desktop {
	display: flex;
	gap: 2rem;
}

.nav-btn {
	background: none;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 0.375rem;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
	color: #e5e7eb;
	transition: all 0.2s;
	text-decoration: none;
}

.nav-btn:hover {
	background-color: #3a282c;
	color: #E70101;
}

.social-icons {
	display: flex;
	gap: 1rem;
}

.social-link {
	color: #9ca3af;
	font-size: 1.5rem;
	transition: color 0.2s;
	text-decoration: none;
}

.social-link:hover {
	color: #E70101;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #e5e7eb;
}

.mobile-menu {
	display: none;
	background: #111827;
	border-top: 1px solid #1f2937;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-nav {
	padding: 1rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.nav-btn-mobile {
	background: none;
	border: none;
	padding: 0.75rem 1rem;
	text-align: left;
	font-size: 1rem;
	font-weight: 500;
	color: #e5e7eb;
	cursor: pointer;
	transition: all 0.2s;
	border-radius: 0.375rem;
	text-decoration: none;
}

.nav-btn-mobile:hover {
	color: #E70101;
	background-color: #f3f4f6;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-social {
	display: flex;
	justify-content: center;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #1f2937;
}

/* Hero Section */
.hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
  
}



.hero-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	z-index: -1;
	transition: opacity 0.6s ease;
}




.hero-content {
	text-align: center;
	color: white;
	z-index: 1;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 1;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
	font-weight: 500;
}

.cta-button {
	background: #E70101;
	color: white;
	border: none;
	padding: 1rem 2rem;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: 0.5rem;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
	background: #dc2626;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Section Styles */
.about, .offers, .contact {
	padding: 5rem 0;
}

.about, .contact {
	background: #0b0b0b;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #f3f4f6;
}

.section-intro {
	font-size: 1.125rem;
	color: #9ca3af;
	max-width: 800px;
	margin: 0 auto;
}

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

.benefit-item {
	background: #111827;
	padding: 2rem;
	border-radius: 0.75rem;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0,0,0,0.07);
	transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.benefit-icon {
	font-size: 2.5rem;
	color: #E70101;
	margin-bottom: 1rem;
}

.benefit-item h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #f3f4f6;
}

.benefit-item p {
	color: #9ca3af;
}

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

.offers-note {
	margin-top: 1.5rem;
	background: #1a0b0b;
	border: 1px solid #7f1d1d;
	color: #fca5a5;
	padding: 1rem 1.25rem;
	border-radius: 0.5rem;
	font-size: 0.95rem;
	line-height: 1.5;
}

.offer-card {
	background: #111827;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0,0,0,0.07);
	transition: transform 0.2s, box-shadow 0.2s;
	position: relative;
	border: 2px solid transparent;
}

.offer-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.offer-card.featured {
	border-color: #E70101;
	transform: scale(1.05);
}

.offer-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: #E70101;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 1rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.offer-header {
	text-align: center;
	margin-bottom: 2rem;
}

.offer-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #f3f4f6;
}

.price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
	margin-bottom: 0.5rem;
}

.amount {
	font-size: 3rem;
	font-weight: 700;
	color: #E70101;
}

.currency {
	font-size: 1.125rem;
	color: #9ca3af;
}

.duration {
	color: #9ca3af;
	font-size: 0.875rem;
}

.offer-features {
	margin-bottom: 2rem;
}

.feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.feature i {
	color: #10b981;
	font-size: 1rem;
}

.offer-btn {
	width: 100%;
	padding: 0.75rem 1.5rem;
	border: 2px solid #E70101;
	background: white;
	color: #E70101;
	border-radius: 0.5rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.offer-btn:hover {
	background: #E70101;
	color: white;
}

.offer-btn.primary {
	background: #E70101;
	color: white;
}

.offer-btn.primary:hover {
	background: #dc2626;
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 3rem;
}

/* .contact-info removed (layout now uses .contact-card) */

/* Contact cards layout */
.contact-card, .map-card {
	background: #111827;
	border-radius: 0.75rem;
	box-shadow: 0 4px 6px rgba(0,0,0,0.07);
	border: 1px solid #1f2937;
	padding: 1.5rem;
}

.map-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #f3f4f6;
}

.contact-block h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #f3f4f6;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.contact-item a {
	color: #E70101;
	text-decoration: none;
	transition: color 0.2s;
}

.contact-item a:hover {
	color: #dc2626;
	text-decoration: underline;
}

.contact-item i {
	color: #E70101;
	font-size: 1.125rem;
	width: 20px;
}

.opening-hours {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* .hours-item removed (opening hours condensed to single line) */

.map-container {
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.map-container iframe {
	display: block;
}

/* Cookie banner */
.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(17, 24, 39, 0.98);
	border-top: 1px solid #374151;
	z-index: 2000;
	padding: 1rem 0;
}

.cookie-banner__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.cookie-banner__text {
	color: #d1d5db;
	font-size: 0.95rem;
}

.cookie-banner__text a {
	color: #E70101;
	text-decoration: none;
	transition: color 0.2s;
}

.cookie-banner__text a:hover {
	color: #dc2626;
	text-decoration: underline;
}

.cookie-banner__actions {
	display: flex;
	gap: 0.75rem;
}

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

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}


.footer-links {
	display: flex;
	gap: 2rem;
}

.footer-links a {
	color: #d1d5db;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: #E70101;
}

.footer-social {
	display: flex;
	gap: 1rem;
}

.footer-social .social-link {
	color: #d1d5db;
	font-size: 1.25rem;
}

.footer-social .social-link:hover {
	color: #E70101;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #374151;
	color: #9ca3af;
	font-size: 0.875rem;
}

/* Datenschutz-Seite: Linkfarben wie im Impressum */
.about .offer-card a:not(.offer-btn) {
	color: #E70101;
	text-decoration: none;
	transition: color 0.2s;
}

.about .offer-card a:not(.offer-btn):hover {
	color: #dc2626;
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-desktop, .social-icons {
		display: none;
	}
	
	.mobile-menu-btn {
		display: block;
	}
	
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.25rem;
	}
	
	.section-header h2 {
		font-size: 2rem;
	}
	
	.benefits-grid, .offers-grid {
		grid-template-columns: 1fr;
	}
	
	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.footer-content {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}
	
	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}
	
	.offer-card.featured {
		transform: none;
	}
	
	.offer-card.featured:hover {
		transform: translateY(-4px);
	}
	
	.cookie-banner__content {
		flex-direction: column;
		text-align: center;
	}
	
	.cookie-banner__actions {
		width: 100%;
		flex-direction: column;
	}
	
	.cookie-banner__actions .offer-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}
	
	.hero{
		max-height: 600px;		
	}
	
	
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
	
	.benefits-grid, .offers-grid {
		gap: 1rem;
	}
	
	.benefit-item, .offer-card {
		padding: 1.5rem;
	}
}


