/* ============================================
   Simo Schlaftechnik - Modern CSS
   Komplett eigenes CSS ohne externe Bibliotheken
   ============================================ */

/* ============= CSS Variables ============= */
:root {
	--primary-color: #0A4A52;
	--secondary-color: #00D4FF;
	--accent-color: #FF6B9D;
	--accent-gradient: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
	--dark-color: #0F1419;
	--dark-bg: #1A1F2E;
	--dark-card: #252B3A;
	--light-color: #1E2532;
	--text-color: #E8EAED;
	--text-light: #9AA0A6;
	--white: #FFFFFF;
	--card-bg: rgba(37, 43, 58, 0.8);
	--glass-bg: rgba(255, 255, 255, 0.1);
	--glass-border: rgba(255, 255, 255, 0.2);
	--gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--gradient-hero: linear-gradient(135deg, rgba(10, 74, 82, 0.95) 0%, rgba(0, 212, 255, 0.85) 100%);
	--gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	--shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.2);
	--shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
	--shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
	--shadow-glow-accent: 0 0 30px rgba(255, 107, 157, 0.3);
	--transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
	color: var(--text-color);
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: var(--dark-bg);
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
		linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-color) 100%);
	pointer-events: none;
	z-index: 0;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

ul {
	list-style: none;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

/* ============= Container ============= */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

/* ============= Navigation ============= */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(26, 31, 46, 0.8);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid rgba(0, 212, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	transition: var(--transition);
}

.navbar.scrolled {
	background: rgba(26, 31, 46, 0.95);
	backdrop-filter: blur(25px) saturate(180%);
	-webkit-backdrop-filter: blur(25px) saturate(180%);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 1rem 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	display: flex;
	align-items: center;
	z-index: 1001;
}

.logo-img {
	height: 50px;
	width: auto;
	transition: var(--transition);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-logo:hover .logo-img {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(0, 212, 255, 0.3);
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.nav-menu {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-menu.active {
	background: rgba(26, 31, 46, 0.98);
}

.nav-link {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	padding: 0.5rem 0;
	transition: var(--transition);
}

.nav-link:hover {
	color: var(--secondary-color);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--secondary-color);
	transition: var(--transition);
}

.nav-link:hover {
	color: var(--secondary-color);
}

.nav-link:hover::after {
	width: 100%;
}

.shop-link {
	background: var(--accent-gradient);
	color: var(--white);
	padding: 0.6rem 1.8rem;
	border-radius: 50px;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.shop-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.shop-link:hover::before {
	left: 100%;
}

.shop-link::after {
	display: none;
}

.shop-link:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

/* Shop vorübergehend ausgeblendet – später wieder aktivieren */
.shop-temporarily-hidden {
	display: none !important;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	z-index: 1001;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: var(--text-color);
	border-radius: 3px;
	transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

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

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	transform: scale(1.05);
}

.hero-slide.active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

.hero-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(10, 74, 82, 0.95) 0%, rgba(0, 212, 255, 0.85) 100%);
	animation: gradientShift 30s ease infinite;
}

@keyframes gradientShift {
	0%, 100% {
		background: linear-gradient(135deg, rgba(10, 74, 82, 0.95) 0%, rgba(0, 212, 255, 0.85) 100%);
	}
	50% {
		background: linear-gradient(135deg, rgba(10, 74, 82, 0.92) 0%, rgba(0, 180, 220, 0.88) 100%);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--white);
	max-width: 800px;
	padding: 0 20px;
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 5rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 20px rgba(0,0,0,0.3);
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #FFFFFF 0%, #E0F7FA 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: textShine 6s ease-in-out infinite;
}

@keyframes textShine {
	0%, 100% {
		filter: brightness(1);
	}
	50% {
		filter: brightness(1.05);
	}
}

.highlight {
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
	animation: pulse 2s ease-in-out infinite;
	position: relative;
	filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5));
}

.hero-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	margin-bottom: 2.5rem;
	opacity: 0.95;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-scroll {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.scroll-indicator {
	width: 30px;
	height: 50px;
	border: 2px solid var(--white);
	border-radius: 25px;
	position: relative;
	opacity: 0.8;
	animation: scrollDown 2s ease-in-out infinite;
}

.scroll-indicator::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	background: var(--white);
	border-radius: 50%;
	animation: scrollDot 2s ease-in-out infinite;
}


/* ============= Buttons ============= */
.btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: var(--accent-gradient);
	color: var(--white);
	box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
	position: relative;
	overflow: hidden;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn-primary::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.btn-primary:hover::before {
	width: 400px;
	height: 400px;
}

.btn-primary:hover::after {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.btn-secondary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: left 0.4s;
}

.btn-secondary:hover::before {
	left: 100%;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.95);
	color: var(--primary-color);
	transform: translateY(-4px) scale(1.02);
	border-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* ============= Section Styles ============= */
section {
	padding: 100px 0;
	position: relative;
	z-index: 1;
}

section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 90% 80%, rgba(255, 107, 157, 0.08) 0%, transparent 50%);
	pointer-events: none;
	z-index: -1;
}

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

.section-title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
	letter-spacing: -0.02em;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 5px;
	background: var(--accent-gradient);
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.section-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	color: var(--text-light);
	margin-top: 1.5rem;
	opacity: 0.9;
}

/* ============= Services Section ============= */
.services {
	background: var(--dark-bg);
	position: relative;
	overflow: hidden;
}

.services::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
	pointer-events: none;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.service-card {
	background: var(--card-bg);
	backdrop-filter: blur(20px);
	padding: 3rem 2rem;
	border-radius: 25px;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(0, 212, 255, 0.2);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 145, 162, 0.1), transparent);
	transition: left 0.5s;
}

.service-card:hover::before {
	left: 100%;
}

.service-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
	border-color: rgba(0, 212, 255, 0.5);
	background: rgba(37, 43, 58, 0.95);
}

.service-icon {
	width: 120px;
	height: 120px;
	margin: 0 auto 1.5rem;
	color: var(--secondary-color);
	position: relative;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	transition: var(--transition);
}

.service-card:hover .service-icon {
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(255, 107, 157, 0.2) 100%);
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.icon-svg {
	width: 100%;
	height: 100%;
	animation: float 3s ease-in-out infinite;
}

.service-card:nth-child(2) .icon-svg {
	animation-delay: 0.5s;
}

.service-card:nth-child(3) .icon-svg {
	animation-delay: 1s;
}

.service-card h3 {
	font-size: 1.5rem;
	color: var(--text-color);
	margin-bottom: 1rem;
	font-weight: 700;
}

.service-card p {
	color: var(--text-light);
	line-height: 1.6;
	opacity: 0.9;
}

/* ============= About Section ============= */
.about {
	background: var(--dark-bg);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-image {
	position: relative;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	transform: perspective(1000px) rotateY(-5deg);
	transition: var(--transition);
}

.about-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
	opacity: 0;
	transition: var(--transition);
	z-index: 1;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: var(--transition-slow);
}

.about-image:hover {
	transform: perspective(1000px) rotateY(0deg) scale(1.02);
	box-shadow: 0 25px 70px rgba(0, 212, 255, 0.3);
}

.about-image:hover img {
	transform: scale(1.08);
}

.about-image:hover::before {
	opacity: 1;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(20, 78, 86, 0.3) 0%, rgba(0, 145, 162, 0.2) 100%);
	opacity: 0;
	transition: var(--transition);
}

.about-image:hover .image-overlay {
	opacity: 1;
}

.about-text h2 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	color: var(--text-color);
	margin-bottom: 1rem;
	font-weight: 800;
}

.about-text h3 {
	color: var(--text-color);
}

.about-text p {
	color: var(--text-light);
	opacity: 0.9;
}

.highlight-new {
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-style: italic;
	display: inline-block;
	animation: shake 0.5s ease-in-out;
	font-weight: 900;
	filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5));
}

.about-text h3 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.about-text p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.facts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin: 2rem 0;
}

.fact-item {
	text-align: center;
	padding: 2rem 1.5rem;
	background: var(--card-bg);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	transition: var(--transition);
	border: 1px solid rgba(0, 212, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.fact-item:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
	border-color: rgba(0, 212, 255, 0.5);
	background: rgba(37, 43, 58, 0.95);
}

.fact-number {
	font-size: 3rem;
	font-weight: 900;
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
	letter-spacing: -0.03em;
}

.fact-label {
	font-size: 0.9rem;
	color: var(--text-light);
}

.fact-note {
	font-weight: 600;
	color: var(--text-color);
	margin-top: 1.5rem;
	padding: 1.5rem;
	background: var(--card-bg);
	backdrop-filter: blur(20px);
	border-left: 5px solid;
	border-image: var(--accent-gradient) 1;
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	border-left-color: transparent;
	border-image-slice: 1;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 212, 255, 0.2);
}

.fact-note::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 5px;
	height: 100%;
	background: var(--accent-gradient);
}

/* ============= Products Section ============= */
.products {
	background: var(--dark-bg);
	position: relative;
	overflow: hidden;
}

.products::before {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 107, 157, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite;
	pointer-events: none;
}

.product-category {
	margin-bottom: 5rem;
}

.category-title {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	color: var(--primary-color);
	margin-bottom: 2.5rem;
	font-weight: 800;
	text-align: center;
}

.kids-title {
	color: var(--accent-color);
}

.kids-section {
	background: linear-gradient(135deg, rgba(255, 107, 157, 0.08) 0%, rgba(196, 69, 105, 0.12) 100%);
	padding: 4rem 3rem;
	border-radius: 30px;
	border: 1px solid rgba(255, 107, 157, 0.2);
	box-shadow: 0 15px 50px rgba(255, 107, 157, 0.1);
	position: relative;
	overflow: hidden;
}

.kids-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
	animation: rotate 20s linear infinite;
	pointer-events: none;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
}

.product-card {
	background: var(--card-bg);
	backdrop-filter: blur(10px);
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(0, 212, 255, 0.2);
	transition: var(--transition);
	position: relative;
}

.product-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
	opacity: 0;
	transition: var(--transition);
	pointer-events: none;
}

.product-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
	border-color: rgba(0, 212, 255, 0.3);
}

.product-card:hover::after {
	opacity: 1;
}

.product-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
}

.product-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
	opacity: 0;
	transition: var(--transition);
	z-index: 1;
	pointer-events: none;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-slow);
	filter: brightness(0.95);
}

.product-card:hover .product-image img {
	transform: scale(1.15) rotate(2deg);
	filter: brightness(1.1);
}

.product-card:hover .product-image::before {
	opacity: 1;
}

.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(10, 74, 82, 0.95) 0%, rgba(0, 212, 255, 0.9) 100%);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
}

.product-card:hover .product-overlay {
	opacity: 1;
}

.btn-product {
	padding: 1rem 2.5rem;
	background: var(--accent-gradient);
	color: var(--white);
	border-radius: 50px;
	font-weight: 700;
	transform: translateY(30px) scale(0.9);
	transition: var(--transition);
	box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
	letter-spacing: 0.5px;
}

.btn-product:hover {
	transform: translateY(0) scale(1.05);
	box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.product-card:hover .btn-product {
	transform: translateY(0) scale(1);
}

.product-info {
	padding: 1.5rem;
}

.product-info h4 {
	font-size: 1.3rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-weight: 700;
}

.product-info h4 strong {
	color: var(--secondary-color);
}

.product-specs {
	margin: 1rem 0;
	padding-left: 0;
}

.product-specs li {
	color: var(--text-light);
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.product-specs li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--secondary-color);
	font-weight: bold;
}

.product-info p {
	color: var(--text-light);
	line-height: 1.6;
	margin-top: 1rem;
	opacity: 0.9;
}

.product-info h4 {
	color: var(--text-color);
}

.product-info h4 strong {
	color: var(--secondary-color);
}

/* ============= Contact Section ============= */
.contact {
	background: var(--dark-bg);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	margin-top: 3rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.info-card {
	background: var(--card-bg);
	backdrop-filter: blur(20px);
	padding: 2.5rem;
	border-radius: 20px;
	transition: var(--transition);
	border: 1px solid rgba(0, 212, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.info-card:hover {
	transform: translateX(10px) translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
	border-color: rgba(0, 212, 255, 0.5);
	background: rgba(37, 43, 58, 0.95);
}

.info-card h3 {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-weight: 700;
}

.info-card p {
	color: var(--text-light);
	line-height: 1.8;
	opacity: 0.9;
}

.info-card h3 {
	color: var(--text-color);
}

.info-card a {
	color: var(--secondary-color);
	font-weight: 600;
}

.info-card a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	position: relative;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1.2rem 1.5rem;
	border: 2px solid rgba(0, 212, 255, 0.2);
	border-radius: 15px;
	font-size: 1rem;
	font-family: inherit;
	transition: var(--transition);
	background: var(--card-bg);
	backdrop-filter: blur(10px);
	color: var(--text-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--secondary-color);
	background: rgba(37, 43, 58, 1);
	box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2), 0 8px 25px rgba(0, 212, 255, 0.25);
	transform: translateY(-2px);
}

.form-group label {
	position: absolute;
	top: -10px;
	left: 15px;
	background: var(--dark-bg);
	padding: 0 5px;
	color: var(--secondary-color);
	font-size: 0.85rem;
	font-weight: 600;
	opacity: 0;
	transition: var(--transition);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
	opacity: 1;
}

.form-group input.error,
.form-group textarea.error {
	border-color: var(--accent-color);
	animation: shake 0.5s ease-in-out;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
	box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
}

.btn-submit {
	position: relative;
	overflow: hidden;
}

.btn-loader {
	display: none;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-top-color: var(--white);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.btn-submit.loading .btn-text {
	opacity: 0;
}

.btn-submit.loading .btn-loader {
	display: block;
}

#form-message {
	min-height: 50px;
	margin-top: 1rem;
}

.message-success {
	padding: 1rem;
	background: #d4edda;
	color: #155724;
	border-radius: 10px;
	border: 1px solid #c3e6cb;
}

.message-error {
	padding: 1rem;
	background: #f8d7da;
	color: #721c24;
	border-radius: 10px;
	border: 1px solid #f5c6cb;
}

/* ============= Footer ============= */
.footer {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
	color: var(--white);
	padding: 3rem 0;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.footer-info p {
	color: rgba(255, 255, 255, 0.8);
}

.footer-info a {
	color: var(--white);
	font-weight: 600;
}

.footer-info a:hover {
	color: var(--secondary-color);
}

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

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	transition: var(--transition);
}

.footer-links a {
	position: relative;
	padding: 0.5rem 0;
}

.footer-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-gradient);
	transition: width 0.3s;
}

.footer-links a:hover::after {
	width: 100%;
}

.footer-links a:hover {
	color: var(--white);
	transform: translateY(-2px);
}

/* ============= Umbau-Hinweis Modal ============= */
.umbau-modal {
	position: fixed;
	inset: 0;
	z-index: 10002;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.umbau-modal.is-visible {
	opacity: 1;
	visibility: visible;
}

.umbau-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 20, 25, 0.85);
	backdrop-filter: blur(6px);
}

.umbau-modal-box {
	position: relative;
	width: 100%;
	max-width: 480px;
	background: linear-gradient(145deg, var(--dark-card) 0%, var(--dark-bg) 100%);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
	padding: 2rem 2rem 2.25rem;
	animation: umbauModalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes umbauModalIn {
	from {
		opacity: 0;
		transform: scale(0.92) translateY(20px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.umbau-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border: none;
	border-radius: 50%;
	color: var(--text-color);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: var(--transition);
}

.umbau-modal-close:hover {
	background: rgba(255, 255, 255, 0.15);
	color: var(--white);
}

.umbau-modal-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1rem;
	padding-right: 2.5rem;
}

.umbau-modal-text {
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.6;
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.umbau-modal-text a {
	color: var(--secondary-color);
	text-decoration: none;
	font-weight: 600;
	border-bottom: 1px solid transparent;
	transition: var(--transition);
}

.umbau-modal-text a:hover {
	border-bottom-color: var(--secondary-color);
}

.umbau-modal-wa {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.umbau-modal-wa-icon {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
}

.umbau-modal-btn {
	display: block;
	width: 100%;
	padding: 0.9rem 1.5rem;
	background: var(--accent-gradient);
	color: var(--white);
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
}

.umbau-modal-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(255, 107, 157, 0.4);
}

/* ============= Scroll Progress Bar ============= */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 4px;
	background: var(--accent-gradient);
	z-index: 10000;
	box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
	transition: width 0.1s ease-out;
}

/* ============= Scroll to Top ============= */
.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: var(--accent-gradient);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 999;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.scroll-top.visible {
	opacity: 1;
	visibility: visible;
	animation: bounceIn 0.5s ease;
}

.scroll-top:hover {
	transform: translateY(-8px) scale(1.1);
	box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
	border-color: rgba(255, 255, 255, 0.6);
}

@keyframes bounceIn {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.scroll-top svg {
	width: 24px;
	height: 24px;
}

/* ============= Animations ============= */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes shake {
	0%, 100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-5px);
	}
	75% {
		transform: translateX(5px);
	}
}

@keyframes scrollDown {
	0% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(10px);
	}
	100% {
		transform: translateX(-50%) translateY(0);
	}
}

@keyframes scrollDot {
	0% {
		transform: translateX(-50%) translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(20px);
		opacity: 0;
	}
}

@keyframes spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* ============= Animation Classes ============= */
.animate-fade-up {
	animation: fadeInUp 1s ease-out;
}

.animate-fade-up-delay {
	animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-fade-up-delay-2 {
	animation: fadeInUp 1s ease-out 0.6s both;
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
	opacity: 1;
	transform: translateY(0);
}

/* ============= Responsive Design ============= */
@media (max-width: 968px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: rgba(26, 31, 46, 0.98);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 2rem;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
		border-top: 1px solid rgba(0, 212, 255, 0.2);
		transition: left 0.3s ease;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.contact-content {
		grid-template-columns: 1fr;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.products-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.facts-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 640px) {
	section {
		padding: 60px 0;
	}

	.hero {
		min-height: 500px;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.btn {
		width: 100%;
		text-align: center;
	}

	.products-grid {
		grid-template-columns: 1fr;
	}

	.scroll-top {
		bottom: 20px;
		right: 20px;
		width: 45px;
		height: 45px;
	}


	.facts-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		padding: 2rem 1.5rem;
	}

	.about-text h2,
	.about-text h3 {
		font-size: 1.5rem;
	}
}

/* ============= Loading Animation ============= */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

body.loaded {
	animation: fadeIn 0.5s ease-in;
}

/* ============= Additional Hover Effects ============= */
.product-card,
.service-card,
.info-card {
	position: relative;
	overflow: hidden;
}

.product-card::after,
.service-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(0, 145, 162, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
	pointer-events: none;
}

.product-card:hover::after,
.service-card:hover::after {
	width: 300px;
	height: 300px;
}

/* ============= Active Nav Link ============= */
.nav-link.active {
	color: var(--secondary-color);
}

.nav-link.active::after {
	width: 100%;
}

/* ============= AGB Styles ============= */
.agb-section {
	background: var(--dark-bg);
	min-height: calc(100vh - 70px);
}

.agb-content {
	max-width: 900px;
	margin: 0 auto;
	background: var(--card-bg);
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(0, 212, 255, 0.2);
}

.agb-item {
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e0e0e0;
}

.agb-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.agb-item h3 {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-weight: 700;
}

.agb-item p {
	color: var(--text-light);
	line-height: 1.8;
	text-align: justify;
	opacity: 0.9;
}

.agb-item h3 {
	color: var(--text-color);
}

@media (max-width: 768px) {
	.agb-content {
		padding: 2rem 1.5rem;
	}

	.agb-item h3 {
		font-size: 1.3rem;
	}
}

/* ============= Print Styles ============= */
@media print {
	.navbar,
	.scroll-top,
	.hero-scroll {
		display: none;
	}

	section {
		page-break-inside: avoid;
	}
}
