/* Reset & Base Styles */
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--slate-950: #020617;
	--slate-900: #0f172a;
	--slate-800: #1e293b;
	--slate-700: #334155;
	--slate-400: #94a3b8;
	--slate-300: #cbd5e1;
	--purple-500: #a855f7;
	--purple-400: #c084fc;
	--purple-300: #d8b4fe;
	--purple-600: #9333ea;
	--pink-500: #ec4899;
	--pink-600: #db2777;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
	line-height: 1.6;
	color: var(--slate-300);
	background: linear-gradient(to bottom right, var(--slate-950), var(--slate-900), var(--slate-950));
	min-height: 100vh;
}

h1 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: white;
	margin-bottom: 1.5rem;
}

h2 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.3;
	color: white;
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
	color: white;
	margin-bottom: 0.75rem;
}

p {
	margin-bottom: 1rem;
}

a {
	text-decoration: none;
	color: inherit;
}


.nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

	.nav a {
		color: var(--slate-300);
		transition: color 0.3s;
		font-weight: 500;
	}

		.nav a:hover,
		.nav a.active {
			color: var(--purple-400);
		}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
}

.mobile-nav {
	display: none;
	border-top: 1px solid var(--slate-800);
	padding: 1rem 0;
}

	.mobile-nav a {
		display: block;
		padding: 0.75rem 1rem;
		color: var(--slate-300);
		transition: all 0.3s;
	}

		.mobile-nav a:hover,
		.mobile-nav a.active {
			background: var(--slate-900);
			color: var(--purple-400);
		}

	.mobile-nav.open {
		display: block;
	}

/* Main Content */
main {
	min-height: 100vh;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-top: 80px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

	.hero-bg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		opacity: 0.3;
	}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(2, 6, 23, 0.5), rgba(2, 6, 23, 0.7), var(--slate-950));
}

.hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 2rem 1rem;
}

.hero-icon {
	width: 2rem;
	height: 2rem;
	color: var(--purple-400);
	margin: 0 auto 1.5rem;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.hero-title {
	max-width: 800px;
	margin: 0 auto 1.5rem;
}

.hero-description {
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto 2rem;
	color: var(--slate-300);
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 5rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 2rem;
	border-radius: 0.5rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
	font-size: 1rem;
}

.btn-primary {
	background: linear-gradient(to right, var(--purple-500), var(--pink-500));
	color: white;
}

	.btn-primary:hover {
		background: linear-gradient(to right, var(--purple-600), var(--pink-600));
		transform: translateY(-2px);
	}

.btn-outline {
	background: transparent;
	border: 2px solid var(--purple-500);
	color: var(--purple-400);
}

	.btn-outline:hover {
		background: rgba(168, 85, 247, 0.1);
	}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 1000px;
	margin: 5rem auto 0;
}

@media (min-width: 768px) {
	.hero-stats {
		grid-template-columns: repeat(4, 1fr);
	}
}

.stat {
	text-align: center;
}

.stat-number {
	font-size: 1.875rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--slate-400);
	font-size: 0.875rem;
}

/* Section */
.section {
	padding: 5rem 1rem;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title {
	margin-bottom: 1rem;
}

.section-description {
	color: var(--slate-400);
	max-width: 600px;
	margin: 0 auto;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid var(--slate-800);
	border-radius: 0.75rem;
	padding: 2rem;
	transition: all 0.3s;
}

	.service-card:hover {
		transform: translateY(-4px);
		border-color: var(--purple-500);
		box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.2);
	}

.service-icon {
	width: 3rem;
	height: 3rem;
	background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--purple-400);
}

.service-card h3 {
	margin-bottom: 1rem;
}

.service-card p {
	color: var(--slate-400);
	line-height: 1.6;
}

/* Work in Progress */
.wip-container {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid var(--slate-800);
	border-radius: 0.75rem;
	padding: 4rem 2rem;
}

.wip-icon {
	width: 5rem;
	height: 5rem;
	background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: var(--purple-400);
	font-size: 2.5rem;
}

/* Calendar */
.calendar-container {
	max-width: 900px;
	margin: 0 auto;
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid var(--slate-800);
	border-radius: 0.75rem;
	overflow: hidden;
}

	.calendar-container iframe {
		width: 100%;
		min-height: 600px;
		border: none;
	}

.calendar-placeholder {
	padding: 4rem 2rem;
	text-align: center;
}

/* Gallery */
.gallery-accordion {
	max-width: 900px;
	margin: 0 auto;
}

.accordion-item {
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid var(--slate-800);
	border-radius: 0.75rem;
	margin-bottom: 1rem;
	overflow: hidden;
}

.accordion-header {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	color: white;
	font-size: 1.25rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s;
}

	.accordion-header:hover {
		background: rgba(168, 85, 247, 0.1);
	}

	.accordion-header > span:first-child {
		flex: 1;
	}

.accordion-icon {
	transition: transform 0.3s;
	color: var(--purple-400);
	margin-left: auto;
}

.count-badge {
	background: linear-gradient(to right, var(--purple-500), var(--pink-500));
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
	white-space: nowrap;
}

.accordion-item.open .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.accordion-item.open .accordion-content {
	max-height: 2000px;
}

.accordion-body {
	padding: 0 1.5rem 1.5rem;
}

.sub-accordion-item {
	background: rgba(30, 41, 59, 0.5);
	border: 1px solid var(--slate-700);
	border-radius: 0.5rem;
	margin-bottom: 0.75rem;
}

.sub-accordion-header {
	width: 100%;
	padding: 1rem;
	background: none;
	border: none;
	color: white;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s;
}

	.sub-accordion-header:hover {
		background: rgba(168, 85, 247, 0.05);
	}

	.sub-accordion-header > span:first-child {
		flex: 1;
	}

.sub-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.sub-accordion-item.open .sub-accordion-content {
	max-height: 1000px;
}

.sub-accordion-item.open .sub-accordion-header .accordion-icon {
	transform: rotate(180deg);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
	padding: 1rem;
}

.gallery-image {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 0.5rem;
	transition: transform 0.3s;
	cursor: pointer;
}

	.gallery-image:hover {
		transform: scale(1.05);
	}

/* Contact */
.contact-content {
	max-width: 900px;
	margin: 0 auto;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.contact-card {
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid var(--slate-800);
	border-radius: 0.75rem;
	padding: 2rem;
}

.contact-card-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.contact-card-icon {
	width: 3rem;
	height: 3rem;
	background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--purple-400);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-item {
	display: flex;
	align-items: start;
	gap: 1rem;
}

.contact-item-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--purple-400);
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.contact-item a {
	color: var(--purple-400);
	transition: color 0.3s;
}

	.contact-item a:hover {
		color: var(--purple-300);
	}

/* Impressum */
.impressum-content {
	max-width: 800px;
	margin: 0 auto;
}

.impressum-card {
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid var(--slate-800);
	border-radius: 0.75rem;
	padding: 2rem;
}

.impressum-section {
	padding: 1.5rem 0;
}

	.impressum-section:not(:last-child) {
		border-bottom: 1px solid var(--slate-800);
	}

.impressum-section-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.impressum-section-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--purple-400);
}

.impressum-section h2 {
	font-size: 1.5rem;
	margin: 0;
}

.impressum-info {
	color: var(--slate-300);
	line-height: 1.8;
}

	.impressum-info p {
		margin-bottom: 0.5rem;
	}

/* Footer */
.footer {
	background: var(--slate-950);
	border-top: 1px solid var(--slate-800);
	padding: 2rem 1rem;
}

.footer-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.footer-copyright {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--slate-400);
	font-size: 0.875rem;
}

/*.footer-made {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--slate-400);
	font-size: 0.875rem;
}*/

.footer-heart {
	color: var(--purple-400);
	width: 1rem;
	height: 1rem;
}

.footer-links {
	padding-top: 1.5rem;
	border-top: 1px solid var(--slate-800);
	text-align: center;
}

.footer-links-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	list-style: none;
}

.footer-links a {
	color: var(--slate-400);
	font-size: 0.875rem;
	transition: color 0.3s;
}

	.footer-links a:hover {
		color: var(--purple-400);
	}

/* Responsive */
@media (max-width: 768px) {
	.nav {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.hero-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		align-items: center;
		text-align: center;
	}
}

@media (min-width: 769px) {
	.footer-content {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

/* Utility Classes */
.text-center {
	text-align: center;
}

.mt-2 {
	margin-top: 0.5rem;
}

.mt-4 {
	margin-top: 1rem;
}

.mb-2 {
	margin-bottom: 0.5rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

/* ========================================
   PARTNER BUTTON & PANEL
   ======================================== */

/* Partner Button (schwebend rechts) */
.partner-btn {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 40;
	background: linear-gradient(to bottom right, var(--purple-500), var(--pink-500));
	color: white;
	padding: 1.5rem 1rem;
	border: none;
	border-radius: 0.75rem 0 0 0.75rem;
	box-shadow: 0 10px 25px rgba(168, 85, 247, 0.5);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

	.partner-btn:hover {
		padding-left: 1.25rem;
		box-shadow: 0 10px 30px rgba(168, 85, 247, 0.7);
	}

	.partner-btn svg {
		width: 24px;
		height: 24px;
	}

.partner-btn-text {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
}

/* Overlay */
.partner-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	z-index: 50;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

	.partner-overlay.active {
		opacity: 1;
		visibility: visible;
	}

/* Slide-In Panel */
.partner-panel {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	max-width: 400px;
	background: var(--slate-900);
	z-index: 50;
	box-shadow: -10px 0 25px rgba(0, 0, 0, 0.5);
	border-left: 1px solid var(--slate-800);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

	.partner-panel.active {
		transform: translateX(0);
	}

/* Panel Header */
.partner-panel-header {
	background: linear-gradient(to right, var(--purple-500), var(--pink-500));
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.partner-panel-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

	.partner-panel-title svg {
		width: 32px;
		height: 32px;
		color: white;
	}

	.partner-panel-title h2 {
		color: white;
		font-size: 1.25rem;
		margin: 0;
	}

	.partner-panel-title p {
		color: rgba(255, 255, 255, 0.8);
		font-size: 0.875rem;
		margin: 0;
	}

.partner-close-btn {
	background: transparent;
	border: none;
	color: white;
	font-size: 1.5rem;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.5rem;
	cursor: pointer;
	transition: background 0.3s;
}

	.partner-close-btn:hover {
		background: rgba(255, 255, 255, 0.2);
	}

/* Panel Content */
.partner-panel-content {
	padding: 1.5rem;
	overflow-y: auto;
	flex: 1;
}

/* Partner Card */
.partner-card {
	background: linear-gradient(to bottom right, var(--slate-800), var(--slate-900));
	border: 1px solid var(--slate-700);
	border-radius: 0.75rem;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.partner-card-icon {
	width: 3rem;
	height: 3rem;
	background: linear-gradient(to bottom right, var(--purple-500), var(--pink-500));
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

	.partner-card-icon svg {
		width: 24px;
		height: 24px;
		color: white;
	}

.partner-card h3 {
	color: white;
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.partner-badge {
	display: inline-block;
	background: rgba(168, 85, 247, 0.2);
	color: var(--purple-300);
	padding: 0.375rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.partner-description {
	color: var(--slate-300);
	font-size: 0.875rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.partner-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(to right, var(--purple-500), var(--pink-500));
	color: white;
	padding: 0.625rem 1rem;
	border-radius: 0.5rem;
	text-decoration: none;
	font-size: 0.875rem;
	transition: all 0.3s;
}

	.partner-link:hover {
		box-shadow: 0 10px 25px rgba(168, 85, 247, 0.5);
		transform: translateY(-2px);
	}

	.partner-link svg {
		width: 16px;
		height: 16px;
	}

.partner-note {
	background: rgba(30, 41, 59, 0.5);
	border: 1px solid var(--slate-700);
	border-radius: 0.5rem;
	padding: 1rem;
	text-align: center;
	color: var(--slate-400);
	font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 640px) {
	.partner-panel {
		max-width: 100%;
	}

	.partner-btn-text {
		font-size: 0.65rem;
	}
}
