/* CSS Reset und Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Particle Canvas */
        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 20px 0;
            position: relative;
            z-index: 100;
            transition: all 0.3s ease;
        }
		
		header a {
			text-decoration: none;
			color: inherit;
			cursor: pointer;
		}

        header.scrolled {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
            transition: all 0.3s ease;
        }

        .logo:hover .logo-icon {
            box-shadow: 0 6px 25px rgba(52, 152, 219, 0.5);
            transform: rotate(5deg);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo-main {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            line-height: 1;
        }

        .logo-sub {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
            margin-top: 2px;
        }

        .status-badge {
            background: rgba(255, 193, 7, 0.9);
            color: #212529;
            padding: 8px 16px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            animation: pulse 2s infinite;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .status-badge:hover {
            transform: scale(1.1);
            background: rgba(255, 193, 7, 1);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 80px 0;
            color: white;
            position: relative;
            z-index: 10;
        }
		
		.hero a {
			color: #fff;
			text-decoration: none;
		}

		.hero a:hover {
			color: #ddd;
			text-decoration: underline;
		}

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            opacity: 0;
            transform: translateY(50px);
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(50px);
        }

        .hero .description {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 50px;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(50px);
        }
		
		/* Abstand zwischen Absätzen */
		.hero .description p,
		.hero .description h2 {
			margin-bottom: 1em;         /* sorgt für „Leerzeilen“ */
		}
		
        .hero.animated h1 {
            animation: fadeInUp 1s ease-out forwards;
        }

        .hero.animated .subtitle {
            animation: fadeInUp 1s ease-out 0.2s forwards;
        }

        .hero.animated .description {
            animation: fadeInUp 1s ease-out 0.4s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Services */
        .services {
            display: inline-grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
            position: relative;
            z-index: 10;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            opacity: 0;
            transform: translateY(50px);
        }

        .service-card.visible {
            animation: slideInUp 0.6s ease-out forwards;
        }

        .service-card:nth-child(2) { animation-delay: 0.1s; }
        .service-card:nth-child(3) { animation-delay: 0.2s; }
        .service-card:nth-child(4) { animation-delay: 0.3s; }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-card p {
            line-height: 1.5;
            opacity: 0.9;
        }

        /* Coming Soon Section */
        .coming-soon {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            margin: 80px auto 0;
            max-width: 600px;
            color: white;
            position: relative;
            z-index: 10;
            opacity: 0;
            transform: translateY(50px);
        }

        .coming-soon.visible {
            animation: slideInUp 0.8s ease-out forwards;
        }

        .coming-soon h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #ffc107;
        }

        .coming-soon p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .progress-bar {
            background: rgba(255, 255, 255, 0.2);
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
            margin: 30px 0;
            cursor: pointer;
        }

        .progress-fill {
            background: linear-gradient(90deg, #ffc107, #ff8c42);
            height: 100%;
            width: 0%;
            border-radius: 4px;
            transition: width 2s ease-out;
        }

        .progress-fill.animated {
            width: 65%;
        }

        /* Contact Info */
        .contact-info {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 30px;
            margin: 40px auto 0;
            max-width: 500px;
            color: white;
            position: relative;
            z-index: 10;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.3s ease;
        }

        .contact-info.visible {
            animation: slideInUp 0.8s ease-out forwards;
        }

        .contact-info:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .contact-info h3 {
            margin-bottom: 20px;
            color: #ffc107;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px 0;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 80px;
            position: relative;
            z-index: 10;
        }
				
		footer a {
			color: rgba(255, 255, 255, 0.8);  /* gleiche Farbe wie der Text */
			text-decoration: none;            /* Unterstreichung entfernen */
			margin: 0 8px;
		}

		footer a:hover {
			color: #ffffff;                   /* beim Hover heller */
			text-decoration: underline;       /* leichte Unterstreichung */
		}

        /* Floating Action Button */
        .fab {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            transform: scale(0);
        }

        .fab.visible {
            opacity: 1;
            transform: scale(1);
        }

        .fab:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(52, 152, 219, 0.6);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .services {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .logo {
                flex-direction: row;
                align-items: center;
            }
            
            .logo-text {
                align-items: flex-start;
            }
            
            .hero {
                padding: 60px 0;
            }

            .fab {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }